commit c8a1fa45196c25619a9be9e76fca4901361af40b Author: e2e Date: Sun Jun 21 18:23:51 2026 +0200 chore: kanban template diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a204959 --- /dev/null +++ b/.gitignore @@ -0,0 +1,49 @@ +node_modules +dist +.next +.vite +.tanstack +.deploy/ +.wrangler/ +.pikku-runtime/ + +# Local dev SQLite database (regenerated via `pikku db migrate`) +packages/functions/.pikku/dev.db +packages/functions/.pikku/dev.db-* + +# Locally instantiated apps. Real projects commit these; the template +# repo never ships an instantiated user app. +!apps/fabric-design/ + +# Generated by @pikku/cli — regenerated on `pikku all`. +# Ignore the contents (not the directory) so negation below can whitelist +# the `api.gen.ts` stub that keeps the skeleton compilable pre-`pikku all`. +packages/functions/src/pikku/* +packages/functions/.pikku/* +!packages/functions/.pikku/client +packages/functions/.pikku/client/* +!packages/functions/.pikku/client/api.gen.ts +packages/functions/.pikku-runtime/ +# Compiled .js siblings of the checked-in scaffold .gen.ts files. +packages/functions/src/scaffold/*.gen.js + +# Yarn — commit the root lockfile; ignore PnP/cache and generated per-unit lockfiles +.yarn/ +.pnp.* +yarn.lock +!/yarn.lock + +# pikku deploy plan output — regenerated by the deploy container +packages/functions/.deploy/ + +# OpenCode config, skills, tools + templates — all written by the Fabric dev +# machine at startup, never committed to the project repo. +.opencode/ + +# Vendored pikku tarballs — a temporary packaging hack. The stable-named +# tarballs (e.g. vendor/pikku-core.tgz) are committed: package.json resolves +# `file:./vendor/*.tgz` against them and project creation seeds new repos from +# them, so they must stay tracked. The dev machine's sync_vendor_packages also +# drops versioned copies (e.g. vendor/pikku-core-0.12.20.tgz) at boot — ignore +# only those so they don't dirty the tree and block fast-forward pulls. +vendor/*-[0-9]*.tgz diff --git a/.yarnrc.yml b/.yarnrc.yml new file mode 100644 index 0000000..2d9f6b2 --- /dev/null +++ b/.yarnrc.yml @@ -0,0 +1,4 @@ +# Force node_modules linker — some toolchain deps (uWebSockets.js native +# addon, pikku CLI bin, esbuild native) resolve cleanly only with a +# traditional tree. +nodeLinker: node-modules diff --git a/README.md b/README.md new file mode 100644 index 0000000..49a2506 --- /dev/null +++ b/README.md @@ -0,0 +1,40 @@ +# Kanban Board Template + +Production-style Fabric demo template that exercises all core surfaces in one project: + +- `http` - board APIs + workflow start routes +- `channel` - `/ws/kanban` connect/message handlers +- `queue` - `kanban-health-check` worker +- `schedule` - periodic health-check trigger +- `workflow` - demo orchestration workflow +- `mcp` - exposed command endpoint (`mcpKanbanCommand`) +- `agent` - `kanbanOpsAgent` with tool wiring + +## Quick Start + +1. `yarn install` +2. `yarn workspace @project/functions pikku db migrate` +3. `yarn prebuild` +4. `yarn dev` +5. Open `/kanban` + +## Demo RPCs + +- `listKanbanCards` +- `getKanbanMetric` +- `getKanbanWorkflowStatus` +- `createKanbanCard` +- `moveKanbanCard` +- `enqueueKanbanHealthCheck` +- `startKanbanDemoWorkflow` +- `mcpKanbanCommand` + +## Template Conventions + +- Same workspace and deploy layout as Fabric `starter-template` +- Root `pikku.config.json` and `packages/functions/pikku.config.json` preserved +- SQL migrations live in `db/migrations/` +- Optional `db/seed.sql` runs only via `pikku db seed` / `pikku db reset` +- DB types regenerate at `packages/functions/.pikku/db/schema.d.ts` on every `pikku db migrate` +- UI routes live in `apps/kanban/src/routes/` (TanStack Start, SSR on Cloudflare) +- Shared widgets/components live in `packages/components/` diff --git a/apps/kanban/.gitignore b/apps/kanban/.gitignore new file mode 100644 index 0000000..11b69e0 --- /dev/null +++ b/apps/kanban/.gitignore @@ -0,0 +1,10 @@ +node_modules +dist +.vite + +# Generated by @pikku/cli — regenerated on `pikku all`. +src/gen/ + +# Generated by @tanstack/router-plugin — the seed at src/routeTree.gen.ts +# is committed so tsc passes before the plugin has run; the plugin +# overwrites it as soon as dev starts. diff --git a/apps/kanban/.stylelintrc.json b/apps/kanban/.stylelintrc.json new file mode 100644 index 0000000..f4ce2ae --- /dev/null +++ b/apps/kanban/.stylelintrc.json @@ -0,0 +1,33 @@ +{ + "extends": ["stylelint-config-standard"], + "plugins": ["stylelint-use-logical"], + "rules": { + "csstools/use-logical": [ + "always", + { + "except": [ + "top", + "bottom", + "width", + "height", + "min-width", + "max-width", + "min-height", + "max-height" + ] + } + ], + "declaration-no-important": true, + "at-rule-no-unknown": [ + true, + { "ignoreAtRules": ["tailwind", "apply", "variants", "responsive", "screen", "layer"] } + ] + }, + "ignoreFiles": [ + "dist/**", + "node_modules/**", + "src/routeTree.gen.ts", + "**/*.gen.ts", + "**/*.gen.d.ts" + ] +} diff --git a/apps/kanban/package.json b/apps/kanban/package.json new file mode 100644 index 0000000..e4f20d5 --- /dev/null +++ b/apps/kanban/package.json @@ -0,0 +1,30 @@ +{ + "name": "@project/kanban", + "version": "0.0.1", + "private": true, + "type": "module", + "scripts": { + "dev": "vite dev --port 7104", + "build": "vite build", + "preview": "vite preview --port 7104", + "tsc": "tsc --noEmit" + }, + "dependencies": { + "@project/functions-sdk": "workspace:*", + "@tanstack/react-router": "^1.132.0", + "@tanstack/react-start": "^1.132.0", + "i18next": "^25.2.1", + "react": "^19.2.5", + "react-dom": "^19.2.5", + "react-i18next": "^15.5.2" + }, + "devDependencies": { + "@babel/core": "^7.26.0", + "@types/node": "^22", + "@types/react": "^19", + "@types/react-dom": "^19", + "@vitejs/plugin-react": "^4.5.2", + "typescript": "^5.9", + "vite": "^7.0.0" + } +} diff --git a/apps/kanban/src/i18n/config.ts b/apps/kanban/src/i18n/config.ts new file mode 100644 index 0000000..95bc2b7 --- /dev/null +++ b/apps/kanban/src/i18n/config.ts @@ -0,0 +1,90 @@ +import i18n from 'i18next' +import { initReactI18next } from 'react-i18next' +import en from './en.json' + +// Typed tokens: every `t('key')` is checked against en.json's shape (i18next +// flattens it into dot-path keys), so a typo or removed key is a compile error. +// Other locale files are loaded dynamically and are not key-checked against en; +// a missing key falls back to the default locale at runtime. +declare module 'i18next' { + interface CustomTypeOptions { + defaultNS: 'translation' + resources: { + translation: typeof en + } + } +} + +// Add a language: drop `i18n/.json` in this folder — Vite's +// import.meta.glob auto-registers it below into `resources`, and +// `supportedLocales` is derived from the files present, so no edits are needed +// here. Content is reachable via the `/` URL prefix (e.g. `/de`, `/es`); +// the default locale (`en`) needs no prefix. +const localeModules = import.meta.glob('./*.json', { eager: true }) as Record< + string, + { default: Record } +> + +const resources: Record }> = {} +for (const path in localeModules) { + const code = path.slice(path.lastIndexOf('/') + 1).replace(/\.json$/, '') + resources[code] = { translation: localeModules[path].default } +} + +export const supportedLocales = Object.keys(resources) +export type Locale = string +export const defaultLocale = 'en' + +const RTL_LOCALES = new Set(['ar', 'he', 'fa', 'ur']) +// Direction for a locale — RTL for Arabic/Hebrew/Farsi/Urdu, else LTR. Set this +// on at the root so the browser mirrors the layout; see the +// pikku-rtl skill. Returns 'ltr' while the app is English-only. +export function localeDir(locale: string = defaultLocale): 'rtl' | 'ltr' { + return RTL_LOCALES.has(locale.split('-')[0]) ? 'rtl' : 'ltr' +} + +export function detectLocale(pathname: string): Locale { + const segment = pathname.split('/')[1] + if (supportedLocales.includes(segment as Locale)) { + return segment as Locale + } + if (typeof navigator !== 'undefined') { + const browserLang = navigator.language?.split('-')[0] + if (supportedLocales.includes(browserLang as Locale)) { + return browserLang as Locale + } + } + return defaultLocale +} + +// i18n debug mode: when enabled, every *translated* string is masked to block +// glyphs (█), so any readable text left on screen is text that never went +// through a token — a hardcoded/inlined string. Surfaces missing i18n at a +// glance. Toggle with `?i18n-debug` in the URL or `localStorage['i18n-debug'] +// = '1'` (or `I18N_DEBUG=1` for server-rendered builds). Off by default. +export function isI18nDebug(): boolean { + if (typeof process !== 'undefined' && process.env?.I18N_DEBUG === '1') return true + if (typeof window === 'undefined') return false + const params = new URLSearchParams(window.location.search) + if (params.has('i18n-debug')) return params.get('i18n-debug') !== '0' + return window.localStorage?.getItem('i18n-debug') === '1' +} + +const i18nDebugPostProcessor = { + type: 'postProcessor' as const, + name: 'i18nDebug', + process: (value: string) => (isI18nDebug() ? value.replace(/\S/g, '█') : value), +} + +i18n + .use(initReactI18next) + .use(i18nDebugPostProcessor) + .init({ + resources, + lng: typeof window !== 'undefined' ? detectLocale(window.location.pathname) : defaultLocale, + fallbackLng: defaultLocale, + interpolation: { escapeValue: false }, + postProcess: ['i18nDebug'], + }) + +export default i18n diff --git a/apps/kanban/src/i18n/en.json b/apps/kanban/src/i18n/en.json new file mode 100644 index 0000000..b3cca87 --- /dev/null +++ b/apps/kanban/src/i18n/en.json @@ -0,0 +1,123 @@ +{ + "shell": { + "eyebrow": "Pikku Fabric template", + "title": "Kanban operations cockpit", + "subtitle": "A lightweight board for work intake, automation visibility, and deployable app surfaces. Built to grow into a real product, not stay a demo.", + "stats": { + "boardHealth": "Board health", + "cardsTracked": "Cards tracked", + "runtime": "Runtime" + }, + "runtimeConnected": "connected", + "runtimeDegraded": "degraded", + "nav": { + "overview": "Overview", + "board": "Board", + "automations": "Automations" + } + }, + "health": { + "idle": "idle", + "backlogged": "backlogged", + "flowing": "flowing" + }, + "status": { + "todo": "Backlog", + "doing": "In progress", + "done": "Done" + }, + "relativeTime": { + "seconds": "{{count}}s ago", + "minutes": "{{count}}m ago", + "hours": "{{count}}h ago", + "days": "{{count}}d ago" + }, + "overview": { + "heading": "Overview", + "sub": "Snapshot of current delivery flow and template wiring.", + "loadFailed": "Failed to load cards: {{error}}", + "loading": "Loading current board state…", + "kpi": { + "boardHealth": "Board health", + "boardHealthDetail": "Live signal from current card distribution", + "backlog": "Backlog", + "backlogDetail": "Items waiting for pickup", + "inProgress": "In progress", + "inProgressDetail": "Cards currently moving", + "done": "Done", + "doneDetail": "Completed work ready to review", + "latest": "Latest card", + "latestNone": "None yet", + "latestDetail": "{{status}} · {{time}}", + "latestEmptyDetail": "Create the first card to get started" + }, + "executionModel": { + "heading": "Execution model", + "sub": "What this template already includes out of the box.", + "bullets": [ + "Board CRUD over Pikku RPC and HTTP wires.", + "Workflow hooks for card onboarding and notifications.", + "Queue processing for async card events.", + "MCP and CLI entrypoints for ops-driven control." + ] + }, + "nextScreens": { + "heading": "Suggested next screens", + "sub": "Natural expansion points once the app goes beyond the starter board.", + "bullets": [ + "Card detail with history, notes, and workflow runs.", + "Release view for branch deploys and environment promotions.", + "Team inbox for triage, alerts, and assignment queues." + ] + } + }, + "board": { + "heading": "Board", + "sub": "Track work across the three canonical lanes.", + "loadFailed": "Failed to load cards: {{error}}", + "loading": "Loading board…", + "columnEmpty": "No cards yet.", + "createHeading": "Create card", + "createSub": "Use the generated mutation, not ad hoc fetches.", + "titleLabel": "Title", + "titlePlaceholder": "Audit workspace webhooks", + "columnLabel": "Column", + "creating": "Creating…", + "createCta": "Create card", + "createFailed": "Failed to create card: {{error}}" + }, + "automations": { + "heading": "Automations", + "sub": "Operational surfaces already included in the template.", + "rails": { + "onboarding": { + "name": "Card onboarding workflow", + "detail": "Handles enrich → create → notify when new work enters the system." + }, + "queue": { + "name": "Process card event queue", + "detail": "Queues side effects away from the request path for safer scaling." + }, + "surface": { + "name": "Kanban MCP + CLI surface", + "detail": "Lets operators inspect or create board state from tools outside the UI." + } + }, + "states": { + "active": "active", + "idle": "idle", + "warming": "warming", + "standby": "standby", + "ready": "ready" + }, + "why": { + "heading": "Why routing now", + "sub": "TanStack Router gives this app room to grow past a demo board.", + "bullets": [ + "Separate product surfaces without a one-file SPA.", + "Clear paths for card details, releases, and diagnostics.", + "Navigation semantics that match future expansion." + ] + } + } +} diff --git a/apps/kanban/src/index.css b/apps/kanban/src/index.css new file mode 100644 index 0000000..c4ae4c0 --- /dev/null +++ b/apps/kanban/src/index.css @@ -0,0 +1,422 @@ +:root { + --bg: #081018; + --bg-accent: #101d2a; + --surface: rgba(17, 27, 39, 0.9); + --surface-strong: rgba(22, 35, 50, 0.96); + --surface-soft: rgba(255, 255, 255, 0.04); + --border: rgba(160, 196, 255, 0.16); + --border-strong: rgba(160, 196, 255, 0.28); + --text: #edf4ff; + --muted: #8ba0bb; + --primary: #82aaff; + --secondary: #5eead4; + --warning: #fbbf24; + --danger: #fb7185; + --shadow: 0 24px 60px rgba(0, 0, 0, 0.34); + font-family: 'IBM Plex Sans', 'Segoe UI', sans-serif; + color-scheme: dark; +} + +* { + box-sizing: border-box; +} + +html, +body, +#root { + min-height: 100%; +} + +body { + margin: 0; + color: var(--text); + background: + radial-gradient(circle at top left, rgba(94, 234, 212, 0.08), transparent 28%), + radial-gradient(circle at top right, rgba(130, 170, 255, 0.12), transparent 30%), + linear-gradient(180deg, var(--bg-accent) 0%, var(--bg) 52%, #060b11 100%); +} + +a { + color: inherit; + text-decoration: none; +} + +button, +input, +select, +textarea { + font: inherit; +} + +.app-shell { + max-width: 1240px; + margin: 0 auto; + padding: 40px 28px 56px; +} + +.hero { + display: grid; + grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr); + gap: 24px; + align-items: end; + margin-bottom: 24px; +} + +.eyebrow { + margin-bottom: 10px; + color: var(--secondary); + text-transform: uppercase; + letter-spacing: 0.18em; + font-size: 12px; + font-weight: 700; +} + +.hero h1 { + margin: 0; + font-size: clamp(2.2rem, 5vw, 4.25rem); + line-height: 0.94; + letter-spacing: -0.05em; +} + +.hero p { + max-width: 56ch; + margin: 14px 0 0; + color: var(--muted); + font-size: 16px; + line-height: 1.6; +} + +.hero-status { + display: grid; + gap: 12px; +} + +.hero-stat, +.panel, +.task-card, +.automation-card, +.kpi-card, +.column { + border: 1px solid var(--border); + background: var(--surface); + box-shadow: var(--shadow); +} + +.hero-stat { + padding: 16px 18px; + border-radius: 18px; + backdrop-filter: blur(10px); +} + +.hero-stat span, +.kpi-card span, +.task-card-meta, +.column-empty, +.automation-card p, +.section-heading p, +.bullet-list, +.field span, +.inline-error, +.empty-state { + color: var(--muted); +} + +.hero-stat strong { + display: block; + margin-top: 4px; + font-size: 22px; + text-transform: capitalize; +} + +.hero-stat strong[data-tone='flowing'] { + color: var(--secondary); +} + +.hero-stat strong[data-tone='backlogged'] { + color: var(--warning); +} + +.hero-stat strong[data-tone='idle'] { + color: var(--primary); +} + +.top-nav { + display: flex; + gap: 10px; + margin-bottom: 28px; + padding: 10px; + border: 1px solid var(--border); + border-radius: 16px; + background: rgba(9, 15, 24, 0.72); + backdrop-filter: blur(12px); +} + +.nav-link { + padding: 10px 14px; + border-radius: 12px; + color: var(--muted); + transition: + background-color 150ms ease, + color 150ms ease; +} + +.nav-link:hover, +.nav-link.is-active { + color: var(--text); + background: rgba(130, 170, 255, 0.12); +} + +.page-content { + min-height: 50vh; +} + +.page-grid { + display: grid; + grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr); + gap: 20px; +} + +.panel { + padding: 22px; + border-radius: 22px; + backdrop-filter: blur(12px); +} + +.panel.wide { + grid-column: span 2; +} + +.section-heading { + margin-bottom: 18px; +} + +.section-heading h2 { + margin: 0; + font-size: 24px; + letter-spacing: -0.03em; +} + +.section-heading p { + margin: 6px 0 0; + line-height: 1.5; +} + +.kpi-grid { + display: grid; + grid-template-columns: repeat(4, minmax(0, 1fr)); + gap: 14px; +} + +.kpi-card { + padding: 16px; + border-radius: 16px; + background: var(--surface-strong); +} + +.kpi-card strong { + display: block; + margin-top: 10px; + font-size: 22px; + line-height: 1.2; +} + +.kpi-card small { + display: block; + margin-top: 8px; + color: var(--muted); + line-height: 1.45; +} + +.bullet-list { + margin: 0; + padding-left: 18px; + line-height: 1.7; +} + +.board-grid { + display: grid; + grid-template-columns: repeat(3, minmax(0, 1fr)); + gap: 16px; +} + +.column { + padding: 14px; + border-radius: 18px; + background: var(--surface-strong); +} + +.column-header { + display: flex; + align-items: center; + justify-content: space-between; + margin-bottom: 12px; +} + +.column-header h3 { + margin: 0; + font-size: 15px; +} + +.column-header span { + min-width: 28px; + padding: 4px 8px; + border-radius: 999px; + background: rgba(130, 170, 255, 0.12); + text-align: center; + font-size: 12px; + color: var(--primary); +} + +.column-cards { + display: grid; + gap: 10px; +} + +.task-card { + padding: 14px; + border-radius: 14px; + background: rgba(255, 255, 255, 0.025); +} + +.task-card-title { + font-weight: 600; + line-height: 1.35; +} + +.task-card-meta { + display: flex; + justify-content: space-between; + gap: 12px; + margin-top: 10px; + font-size: 12px; +} + +.column-empty, +.empty-state { + padding: 18px; + border-radius: 14px; + background: rgba(255, 255, 255, 0.025); + line-height: 1.5; +} + +.error-state, +.inline-error { + color: var(--danger); +} + +.card-form { + display: grid; + gap: 16px; +} + +.field { + display: grid; + gap: 8px; +} + +.field span { + font-size: 12px; + text-transform: uppercase; + letter-spacing: 0.12em; + font-weight: 700; +} + +.field input, +.field select { + width: 100%; + padding: 12px 14px; + border: 1px solid var(--border); + border-radius: 14px; + background: rgba(255, 255, 255, 0.03); + color: var(--text); + outline: none; +} + +.field input:focus, +.field select:focus { + border-color: var(--border-strong); +} + +.primary-button { + padding: 13px 16px; + border: 0; + border-radius: 14px; + background: linear-gradient(135deg, var(--primary), #6ee7f9); + color: #071018; + font-weight: 800; + cursor: pointer; +} + +.primary-button:disabled { + cursor: not-allowed; + opacity: 0.55; +} + +.automation-list { + display: grid; + gap: 14px; +} + +.automation-card { + padding: 16px 18px; + border-radius: 16px; + background: var(--surface-strong); +} + +.automation-topline { + display: flex; + justify-content: space-between; + gap: 12px; + align-items: center; +} + +.automation-topline h3 { + margin: 0; + font-size: 16px; +} + +.automation-topline span { + padding: 5px 10px; + border-radius: 999px; + background: rgba(130, 170, 255, 0.12); + color: var(--primary); + text-transform: capitalize; + font-size: 12px; + font-weight: 700; +} + +.automation-topline span[data-state='active'] { + background: rgba(94, 234, 212, 0.12); + color: var(--secondary); +} + +.automation-topline span[data-state='warming'] { + background: rgba(251, 191, 36, 0.14); + color: var(--warning); +} + +@media (max-width: 980px) { + .hero, + .page-grid, + .kpi-grid { + grid-template-columns: 1fr; + } + + .panel.wide { + grid-column: auto; + } + + .board-grid { + grid-template-columns: 1fr; + } +} + +@media (max-width: 640px) { + .app-shell { + padding: 24px 16px 40px; + } + + .top-nav { + overflow-x: auto; + } +} diff --git a/apps/kanban/src/lib/api.ts b/apps/kanban/src/lib/api.ts new file mode 100644 index 0000000..1898b28 --- /dev/null +++ b/apps/kanban/src/lib/api.ts @@ -0,0 +1,46 @@ +import { PikkuRPC } from '@project/functions-sdk/pikku/pikku-rpc.gen' +import { apiUrl } from './env' + +// The Pikku-RPC shim. `rpc.invoke` is typed by the generated FlattenedRPCMap, so +// `makeApi().invoke('listCards', input)` checks the name and payload at compile +// time. Pikku emits unversioned latest-aliases (`listCards` → `listCards@v2`), +// so you call clean names. Used from TanStack Start loaders (SSR + client) and +// from event handlers for mutations. +export function makeApi(): PikkuRPC { + const rpc = new PikkuRPC() + rpc.setServerUrl(apiUrl()) + return rpc +} + +export async function formatApiError(error: unknown): Promise { + if (error instanceof Response) { + const status = [error.status, error.statusText].filter(Boolean).join(' ') + + try { + const payload = (await error.clone().json()) as { + message?: unknown + errorId?: unknown + } + if (typeof payload?.message === 'string') { + const detail = + typeof payload.errorId === 'string' + ? `${payload.message} (${payload.errorId})` + : payload.message + return status ? `${status}: ${detail}` : detail + } + } catch { + // Fall through to plain text/body-less formatting. + } + + try { + const text = (await error.clone().text()).trim() + if (text) return status ? `${status}: ${text}` : text + } catch { + // Ignore body-read failures and fall through. + } + + return status || 'Request failed' + } + + return error instanceof Error ? error.message : String(error) +} diff --git a/apps/kanban/src/lib/env.ts b/apps/kanban/src/lib/env.ts new file mode 100644 index 0000000..5d1b25e --- /dev/null +++ b/apps/kanban/src/lib/env.ts @@ -0,0 +1,17 @@ +// Endpoints come from env, never hardcoded. Throws on a missing var rather than +// falling back to a localhost default, so a misconfigured deploy fails loudly. +// +// SSR (workerd inside the sandbox container) can't reach the external host port +// that VITE_API_URL points to. VITE_SERVER_API_URL holds the internal Caddy +// address (http://127.0.0.1:8080/api) and is set by generate-frontend-runtime.mjs +// for local sandbox mode. In deployed/hosted contexts VITE_SERVER_API_URL is +// unset and we fall back to VITE_API_URL, which is correct there. +export function apiUrl(): string { + const url = import.meta.env.SSR + ? (import.meta.env.VITE_SERVER_API_URL ?? import.meta.env.VITE_API_URL) + : import.meta.env.VITE_API_URL + if (!url) { + throw new Error('VITE_API_URL is not set — point it at the Pikku API base URL') + } + return url +} diff --git a/apps/kanban/src/lib/kanban.ts b/apps/kanban/src/lib/kanban.ts new file mode 100644 index 0000000..08bf25a --- /dev/null +++ b/apps/kanban/src/lib/kanban.ts @@ -0,0 +1,49 @@ +import i18n from '../i18n/config' + +export type CardStatus = 'todo' | 'doing' | 'done' + +export interface Card { + cardId: string + title: string + status: CardStatus | string + position: number + createdAt: string +} + +export const STATUSES: CardStatus[] = ['todo', 'doing', 'done'] + +export function sortCards(cards: Card[]) { + return [...cards].sort((a, b) => { + if (a.status !== b.status) return a.status.localeCompare(b.status) + return a.position - b.position + }) +} + +export function classifyHealth(cards: Card[]) { + const todo = cards.filter((card) => card.status === 'todo').length + const doing = cards.filter((card) => card.status === 'doing').length + if (doing === 0) return 'idle' + if (todo > doing * 2) return 'backlogged' + return 'flowing' +} + +export function prettyStatus(status: string) { + switch (status) { + case 'todo': + return i18n.t('status.todo') + case 'doing': + return i18n.t('status.doing') + case 'done': + return i18n.t('status.done') + default: + return status + } +} + +export function relativeTime(timestamp: string) { + const delta = Math.max(0, Math.floor((Date.now() - new Date(timestamp).getTime()) / 1000)) + if (delta < 60) return i18n.t('relativeTime.seconds', { count: delta }) + if (delta < 3600) return i18n.t('relativeTime.minutes', { count: Math.floor(delta / 60) }) + if (delta < 86400) return i18n.t('relativeTime.hours', { count: Math.floor(delta / 3600) }) + return i18n.t('relativeTime.days', { count: Math.floor(delta / 86400) }) +} diff --git a/apps/kanban/src/routeTree.gen.ts b/apps/kanban/src/routeTree.gen.ts new file mode 100644 index 0000000..68d76ab --- /dev/null +++ b/apps/kanban/src/routeTree.gen.ts @@ -0,0 +1,104 @@ +/* eslint-disable */ + +// @ts-nocheck + +// noinspection JSUnusedGlobalSymbols + +// This file was automatically generated by TanStack Router. +// You should NOT make any changes in this file as it will be overwritten. +// Additionally, you should also exclude this file from your linter and/or formatter to prevent it from being checked or modified. + +import { Route as rootRouteImport } from './routes/__root' +import { Route as BoardRouteImport } from './routes/board' +import { Route as AutomationsRouteImport } from './routes/automations' +import { Route as IndexRouteImport } from './routes/index' + +const BoardRoute = BoardRouteImport.update({ + id: '/board', + path: '/board', + getParentRoute: () => rootRouteImport, +} as any) +const AutomationsRoute = AutomationsRouteImport.update({ + id: '/automations', + path: '/automations', + getParentRoute: () => rootRouteImport, +} as any) +const IndexRoute = IndexRouteImport.update({ + id: '/', + path: '/', + getParentRoute: () => rootRouteImport, +} as any) + +export interface FileRoutesByFullPath { + '/': typeof IndexRoute + '/automations': typeof AutomationsRoute + '/board': typeof BoardRoute +} +export interface FileRoutesByTo { + '/': typeof IndexRoute + '/automations': typeof AutomationsRoute + '/board': typeof BoardRoute +} +export interface FileRoutesById { + __root__: typeof rootRouteImport + '/': typeof IndexRoute + '/automations': typeof AutomationsRoute + '/board': typeof BoardRoute +} +export interface FileRouteTypes { + fileRoutesByFullPath: FileRoutesByFullPath + fullPaths: '/' | '/automations' | '/board' + fileRoutesByTo: FileRoutesByTo + to: '/' | '/automations' | '/board' + id: '__root__' | '/' | '/automations' | '/board' + fileRoutesById: FileRoutesById +} +export interface RootRouteChildren { + IndexRoute: typeof IndexRoute + AutomationsRoute: typeof AutomationsRoute + BoardRoute: typeof BoardRoute +} + +declare module '@tanstack/react-router' { + interface FileRoutesByPath { + '/board': { + id: '/board' + path: '/board' + fullPath: '/board' + preLoaderRoute: typeof BoardRouteImport + parentRoute: typeof rootRouteImport + } + '/automations': { + id: '/automations' + path: '/automations' + fullPath: '/automations' + preLoaderRoute: typeof AutomationsRouteImport + parentRoute: typeof rootRouteImport + } + '/': { + id: '/' + path: '/' + fullPath: '/' + preLoaderRoute: typeof IndexRouteImport + parentRoute: typeof rootRouteImport + } + } +} + +const rootRouteChildren: RootRouteChildren = { + IndexRoute: IndexRoute, + AutomationsRoute: AutomationsRoute, + BoardRoute: BoardRoute, +} +export const routeTree = rootRouteImport + ._addFileChildren(rootRouteChildren) + ._addFileTypes() + +import type { getRouter } from './router.tsx' +import type { createStart } from '@tanstack/react-start' +declare module '@tanstack/react-start' { + interface Register { + ssr: true + router: Awaited> + } +} diff --git a/apps/kanban/src/router.tsx b/apps/kanban/src/router.tsx new file mode 100644 index 0000000..15e608a --- /dev/null +++ b/apps/kanban/src/router.tsx @@ -0,0 +1,20 @@ +import { createRouter } from '@tanstack/react-router' +import { routeTree } from './routeTree.gen' + +// TanStack Start discovers this `getRouter` factory to build a router per +// request (server) and once on the client (hydration). routeTree.gen.ts is +// generated by the tanstackStart() Vite plugin from src/routes/** — don't +// hand-edit it. +export function getRouter() { + return createRouter({ + routeTree, + scrollRestoration: true, + defaultPreload: 'intent', + }) +} + +declare module '@tanstack/react-router' { + interface Register { + router: ReturnType + } +} diff --git a/apps/kanban/src/routes/__root.tsx b/apps/kanban/src/routes/__root.tsx new file mode 100644 index 0000000..f2657f0 --- /dev/null +++ b/apps/kanban/src/routes/__root.tsx @@ -0,0 +1,111 @@ +import { createRootRoute, HeadContent, Link, Outlet, Scripts } from '@tanstack/react-router' +import { useTranslation } from 'react-i18next' +import { defaultLocale, localeDir } from '../i18n/config' +import { classifyHealth, sortCards, type Card } from '../lib/kanban' +import { formatApiError, makeApi } from '../lib/api' +import '../i18n/config' +import '../index.css' + +export interface BoardData { + cards: Card[] + error: string | null +} + +// Root route renders the full HTML document for SSR (owns so the +// tree mirrors for RTL locales) and the shared board chrome. Its loader fetches +// the cards once on the server; child routes read this same data via +// RootRoute.useLoaderData(), and mutations call router.invalidate() to re-run it. +export const Route = createRootRoute({ + head: () => ({ + meta: [ + { charSet: 'utf-8' }, + { name: 'viewport', content: 'width=device-width, initial-scale=1' }, + { title: 'Kanban Board' }, + ], + }), + loader: async (): Promise => { + try { + const { cards } = await makeApi().invoke('listCards', {}) + return { cards: sortCards(cards as Card[]), error: null } + } catch (thrown: unknown) { + let message: string + try { + message = await formatApiError(thrown) + } catch { + message = 'Request failed' + } + return { cards: [], error: message } + } + }, + component: RootDocument, +}) + +function RootDocument() { + const locale = defaultLocale + const { t } = useTranslation() + const { cards, error } = Route.useLoaderData() + const health = classifyHealth(cards) + + return ( + + + + + +
+
+
+
{t('shell.eyebrow')}
+

{t('shell.title')}

+

{t('shell.subtitle')}

+
+
+
+ {t('shell.stats.boardHealth')} + {t(`health.${health}`)} +
+
+ {t('shell.stats.cardsTracked')} + {cards.length} +
+
+ {t('shell.stats.runtime')} + {error ? t('shell.runtimeDegraded') : t('shell.runtimeConnected')} +
+
+
+ + + +
+ +
+
+ + + + ) +} diff --git a/apps/kanban/src/routes/automations.tsx b/apps/kanban/src/routes/automations.tsx new file mode 100644 index 0000000..96b3e24 --- /dev/null +++ b/apps/kanban/src/routes/automations.tsx @@ -0,0 +1,63 @@ +import { createFileRoute } from '@tanstack/react-router' +import { useTranslation } from 'react-i18next' +import { Route as RootRoute } from './__root' + +export const Route = createFileRoute('/automations')({ + component: AutomationsPage, +}) + +function AutomationsPage() { + const { t } = useTranslation() + const { cards } = RootRoute.useLoaderData() + const total = cards.length + const active = cards.filter((card) => card.status === 'doing').length + + const rails = [ + { + key: 'onboarding', + state: total > 0 ? 'active' : 'idle', + }, + { + key: 'queue', + state: active > 0 ? 'warming' : 'standby', + }, + { + key: 'surface', + state: 'ready', + }, + ] as const + + return ( +
+
+
+

{t('automations.heading')}

+

{t('automations.sub')}

+
+
+ {rails.map((rail) => ( +
+
+

{t(`automations.rails.${rail.key}.name`)}

+ {t(`automations.states.${rail.state}`)} +
+

{t(`automations.rails.${rail.key}.detail`)}

+
+ ))} +
+
+ +
+
+

{t('automations.why.heading')}

+

{t('automations.why.sub')}

+
+
    + {(t('automations.why.bullets', { returnObjects: true }) as string[]).map((bullet) => ( +
  • {bullet}
  • + ))} +
+
+
+ ) +} diff --git a/apps/kanban/src/routes/board.tsx b/apps/kanban/src/routes/board.tsx new file mode 100644 index 0000000..d7d114e --- /dev/null +++ b/apps/kanban/src/routes/board.tsx @@ -0,0 +1,121 @@ +import { useState } from 'react' +import { createFileRoute, useRouter } from '@tanstack/react-router' +import { useTranslation } from 'react-i18next' +import { Route as RootRoute } from './__root' +import { formatApiError, makeApi } from '../lib/api' +import { type CardStatus, STATUSES, prettyStatus, relativeTime } from '../lib/kanban' + +export const Route = createFileRoute('/board')({ + component: BoardPage, +}) + +function BoardPage() { + const { t } = useTranslation() + const router = useRouter() + const { cards, error } = RootRoute.useLoaderData() + const [title, setTitle] = useState('') + const [status, setStatus] = useState('todo') + const [pending, setPending] = useState(false) + const [createError, setCreateError] = useState(null) + + const columns = STATUSES.map((columnStatus) => ({ + key: columnStatus, + title: prettyStatus(columnStatus), + cards: cards.filter((card) => card.status === columnStatus), + })) + + const handleSubmit = async (event: React.FormEvent) => { + event.preventDefault() + if (!title.trim()) return + setPending(true) + setCreateError(null) + try { + await makeApi().invoke('createCard', { title: title.trim(), status }) + setTitle('') + await router.invalidate() + } catch (err) { + setCreateError(await formatApiError(err)) + } finally { + setPending(false) + } + } + + return ( +
+
+
+

{t('board.heading')}

+

{t('board.sub')}

+
+ {error ? ( +
{t('board.loadFailed', { error })}
+ ) : ( +
+ {columns.map((column) => ( +
+
+

{column.title}

+ {column.cards.length} +
+
+ {column.cards.length === 0 ? ( +
{t('board.columnEmpty')}
+ ) : ( + column.cards.map((card) => ( +
+
{card.title}
+
+ #{card.position} + {relativeTime(card.createdAt)} +
+
+ )) + )} +
+
+ ))} +
+ )} +
+ +
+
+

{t('board.createHeading')}

+

{t('board.createSub')}

+
+
+ + + + + + + {createError && ( +
{t('board.createFailed', { error: createError })}
+ )} +
+
+
+ ) +} diff --git a/apps/kanban/src/routes/index.tsx b/apps/kanban/src/routes/index.tsx new file mode 100644 index 0000000..2718b6c --- /dev/null +++ b/apps/kanban/src/routes/index.tsx @@ -0,0 +1,105 @@ +import { createFileRoute } from '@tanstack/react-router' +import { useTranslation } from 'react-i18next' +import { Route as RootRoute } from './__root' +import { classifyHealth, prettyStatus, relativeTime } from '../lib/kanban' + +export const Route = createFileRoute('/')({ + component: OverviewPage, +}) + +function KpiCard(props: { label: string; value: string; detail: string }) { + return ( +
+ {props.label} + {props.value} + {props.detail} +
+ ) +} + +function OverviewPage() { + const { t } = useTranslation() + const { cards, error } = RootRoute.useLoaderData() + const todo = cards.filter((card) => card.status === 'todo').length + const doing = cards.filter((card) => card.status === 'doing').length + const done = cards.filter((card) => card.status === 'done').length + const newest = cards.at(-1) ?? null + const health = classifyHealth(cards) + + return ( +
+
+
+

{t('overview.heading')}

+

{t('overview.sub')}

+
+ {error ? ( +
{t('overview.loadFailed', { error })}
+ ) : ( +
+ + + + + +
+ )} +
+ +
+
+

{t('overview.executionModel.heading')}

+

{t('overview.executionModel.sub')}

+
+
    + {(t('overview.executionModel.bullets', { returnObjects: true }) as string[]).map( + (bullet) => ( +
  • {bullet}
  • + ), + )} +
+
+ +
+
+

{t('overview.nextScreens.heading')}

+

{t('overview.nextScreens.sub')}

+
+
    + {(t('overview.nextScreens.bullets', { returnObjects: true }) as string[]).map( + (bullet) => ( +
  • {bullet}
  • + ), + )} +
+
+
+ ) +} diff --git a/apps/kanban/tsconfig.json b/apps/kanban/tsconfig.json new file mode 100644 index 0000000..d5c8b5a --- /dev/null +++ b/apps/kanban/tsconfig.json @@ -0,0 +1,22 @@ +{ + "compilerOptions": { + "target": "ES2022", + "lib": ["ES2022", "DOM", "DOM.Iterable"], + "module": "ESNext", + "moduleResolution": "Bundler", + "jsx": "react-jsx", + "strict": true, + "esModuleInterop": true, + "skipLibCheck": true, + "allowImportingTsExtensions": false, + "resolveJsonModule": true, + "isolatedModules": true, + "noEmit": true, + "types": ["vite/client", "node"], + "baseUrl": ".", + "paths": { + "@/*": ["src/*"] + } + }, + "include": ["src", "vite.config.ts", "wrangler.jsonc"] +} diff --git a/apps/kanban/vite.config.ts b/apps/kanban/vite.config.ts new file mode 100644 index 0000000..e1825e6 --- /dev/null +++ b/apps/kanban/vite.config.ts @@ -0,0 +1,22 @@ +import { defineConfig } from 'vite' +import react from '@vitejs/plugin-react' +import { tanstackStart } from '@tanstack/react-start/plugin/vite' + +// Plain TanStack Start config (Node target) — used for local sandbox dev. This +// template is deploy-provider agnostic: it ships NO @cloudflare/vite-plugin. At +// deploy, fabric CI injects the CF adapter (vite.config.cf.ts merges cloudflare() +// on top of this config) to emit the CF Workers SSR bundle. Do not add cloudflare +// here — that would double-apply it and couple the template to a provider. +export default defineConfig({ + plugins: [tanstackStart(), react()], + server: { + // Bind to 0.0.0.0 so the IPv4 loopback is reachable from Caddy's + // reverse_proxy. Without this, Vite binds to ::1 (IPv6 localhost) in the + // container because /etc/hosts lists ::1 before 127.0.0.1 in Node's + // resolver order, causing Caddy's 127.0.0.1:port probe to be refused. + host: '0.0.0.0', + // Allow requests from any hostname (including nip.io reverse-proxy URLs + // used in sandbox preview iframes). + allowedHosts: true, + }, +}) diff --git a/apps/kanban/wrangler.jsonc b/apps/kanban/wrangler.jsonc new file mode 100644 index 0000000..77c30a8 --- /dev/null +++ b/apps/kanban/wrangler.jsonc @@ -0,0 +1,9 @@ +{ + // Consumed by @cloudflare/vite-plugin. `main` is TanStack Start's built-in + // server entry (no hand-written worker file); the plugin wires client assets + // and the ssr environment automatically. + "name": "kanban", + "main": "@tanstack/react-start/server-entry", + "compatibility_date": "2024-12-01", + "compatibility_flags": ["nodejs_compat"], +} diff --git a/db/annotations.ts b/db/annotations.ts new file mode 100644 index 0000000..0921edc --- /dev/null +++ b/db/annotations.ts @@ -0,0 +1,6 @@ +import type { DbClassificationMap } from '../.pikku/db/classification-map.gen.d.ts' + +export const classifications = { + "kanban_card": { + }, +} satisfies DbClassificationMap diff --git a/db/sqlite-seed.sql b/db/sqlite-seed.sql new file mode 100644 index 0000000..278e5f6 --- /dev/null +++ b/db/sqlite-seed.sql @@ -0,0 +1,8 @@ +-- Demo seed data. Runs after migrations in local dev only (never in production). +-- All statements must be idempotent (INSERT OR IGNORE / ON CONFLICT DO NOTHING). + +INSERT INTO kanban_card (card_id, title, description, status, priority, position) +VALUES + ('card-seed-1', 'Wire up local sandbox', 'Boot the project and verify the preview stack.', 'doing', 'high', 1), + ('card-seed-2', 'Polish board interactions', 'Tighten drag/drop and empty-state behavior.', 'todo', 'medium', 1) +ON CONFLICT DO NOTHING; diff --git a/db/sqlite/0001-init.sql b/db/sqlite/0001-init.sql new file mode 100644 index 0000000..9b13bf5 --- /dev/null +++ b/db/sqlite/0001-init.sql @@ -0,0 +1,13 @@ +CREATE TABLE IF NOT EXISTS kanban_card ( + card_id TEXT PRIMARY KEY, + title TEXT NOT NULL, + description TEXT, + status TEXT NOT NULL DEFAULT 'todo', + priority TEXT NOT NULL DEFAULT 'medium', + position INTEGER NOT NULL DEFAULT 0, + due_at TEXT, + created_at TEXT NOT NULL DEFAULT CURRENT_TIMESTAMP, + updated_at TEXT NOT NULL DEFAULT CURRENT_TIMESTAMP +); + +CREATE INDEX IF NOT EXISTS kanban_card_status_idx ON kanban_card(status); diff --git a/db/sqlite/0002-better-auth.sql b/db/sqlite/0002-better-auth.sql new file mode 100644 index 0000000..b8faa8b --- /dev/null +++ b/db/sqlite/0002-better-auth.sql @@ -0,0 +1,16 @@ +-- Generated by `pikku db generate` from pikkuBetterAuth (Better Auth). +-- Re-run the command after changing the auth config. + +create table "user" ("id" text not null primary key, "name" text not null, "email" text not null unique, "email_verified" integer not null, "image" text, "created_at" date not null, "updated_at" date not null); + +create table "session" ("id" text not null primary key, "expires_at" date not null, "token" text not null unique, "created_at" date not null, "updated_at" date not null, "ip_address" text, "user_agent" text, "user_id" text not null references "user" ("id") on delete cascade); + +create table "account" ("id" text not null primary key, "account_id" text not null, "provider_id" text not null, "user_id" text not null references "user" ("id") on delete cascade, "access_token" text, "refresh_token" text, "id_token" text, "access_token_expires_at" date, "refresh_token_expires_at" date, "scope" text, "password" text, "created_at" date not null, "updated_at" date not null); + +create table "verification" ("id" text not null primary key, "identifier" text not null, "value" text not null, "expires_at" date not null, "created_at" date not null, "updated_at" date not null); + +create index "session_user_id_idx" on "session" ("user_id"); + +create index "account_user_id_idx" on "account" ("user_id"); + +create index "verification_identifier_idx" on "verification" ("identifier"); \ No newline at end of file diff --git a/design/scratchpads/empty-states.tsx b/design/scratchpads/empty-states.tsx new file mode 100644 index 0000000..c60be66 --- /dev/null +++ b/design/scratchpads/empty-states.tsx @@ -0,0 +1,86 @@ +// A scratchpad of the "non-happy" states for a list or page — loading, empty, +// error, and skeleton. Each option is a real @mantine/core composition so the one +// you pick drops straight into your app as a component variation. Open the Design +// tab → Scratchpad to compare them on the canvas. +import { Alert, Button, Center, Group, Loader, Paper, Skeleton, Stack, Text, ThemeIcon } from '@mantine/core' + +export const title = 'Empty & loading states' + +export const objects = [ + { + name: 'Loading', + mantine: ['Loader', 'Stack'], + render: () => ( + + + + Loading your items… + + + ), + }, + { + name: 'Empty', + mantine: ['ThemeIcon', 'Stack', 'Button'], + render: () => ( + + + + + + No items yet + + + Create your first item to get started. + + + + ), + }, + { + name: 'Error', + mantine: ['Alert', 'Button'], + render: () => ( + + + Something went wrong fetching your items. + + + + ), + }, + { + name: 'Skeleton list', + mantine: ['Skeleton', 'Group'], + render: () => ( + + {[0, 1, 2].map((i) => ( + + + + + + + + ))} + + ), + }, + { + name: 'Inline empty', + mantine: ['Paper', 'Center'], + render: () => ( + +
+ + Nothing here yet — drop something in. + +
+
+ ), + }, +] diff --git a/design/scratchpads/entity-card.tsx b/design/scratchpads/entity-card.tsx new file mode 100644 index 0000000..5c610af --- /dev/null +++ b/design/scratchpads/entity-card.tsx @@ -0,0 +1,154 @@ +// A richer scratchpad: several ways to display the SAME entity (a team member) +// in a list or grid. Every option is a real @mantine/core composition — picking +// one gives you an adoptable component variation, not a pile of CSS. Open the +// Design tab → Scratchpad to compare them on the canvas. +import { + Anchor, + Avatar, + Badge, + Button, + Card, + Divider, + Group, + Paper, + Progress, + Stack, + Text, +} from '@mantine/core' + +export const title = 'Member card' + +export const objects = [ + { + name: 'List row', + mantine: ['Group', 'Avatar', 'Badge'], + render: () => ( + + + AL + +
+ + Ada Lovelace + + + ada@example.com + +
+ + Active + +
+ ), + }, + { + name: 'Detail card', + mantine: ['Card', 'Avatar', 'Badge', 'Divider'], + render: () => ( + + + + + AL + +
+ + Ada Lovelace + + + Engineering + +
+
+ + Online + +
+ + + + + Commits + + + 1,204 + + + + + Reviews + + + 318 + + + + View + + +
+ ), + }, + { + name: 'Grid tile', + mantine: ['Card', 'Avatar', 'Button'], + render: () => ( + + + + AL + + + Ada Lovelace + + + Maintainer + + + + + ), + }, + { + name: 'Compact chip', + mantine: ['Badge', 'Avatar'], + render: () => ( + + AL + + } + > + Ada Lovelace + + ), + }, + { + name: 'Stat card', + mantine: ['Paper', 'Progress', 'Badge'], + render: () => ( + + + + Contribution + + + +12% + + + + 84% + + + + ), + }, +] diff --git a/design/scratchpads/status-display.tsx b/design/scratchpads/status-display.tsx new file mode 100644 index 0000000..0cec6d2 --- /dev/null +++ b/design/scratchpads/status-display.tsx @@ -0,0 +1,95 @@ +// A scratchpad: several real, themed ways to show one thing — here, a deploy's +// status. Each option is built from @mantine/core, so it carries your theme. The +// design agent writes files like this; open the Design tab → Scratchpad to compare +// them on the canvas and pick the one you like. +import { + Alert, + Badge, + Group, + Indicator, + Paper, + Progress, + RingProgress, + Stack, + Text, +} from '@mantine/core' + +export const title = 'Status display' + +export const objects = [ + { + name: 'Status pill', + mantine: ['Badge'], + render: () => ( + + Live + + ), + }, + { + name: 'Progress card', + mantine: ['Paper', 'Progress'], + render: () => ( + + + + + Deploying + + + 72% + + + + + + ), + }, + { + name: 'Solid badge', + mantine: ['Badge'], + render: () => ( + + Deployed + + ), + }, + { + name: 'Progress ring', + mantine: ['RingProgress'], + render: () => ( + + 72% + + } + /> + ), + }, + { + name: 'Inline dot', + mantine: ['Indicator'], + render: () => ( + + + + Running + + + ), + }, + { + name: 'Tinted banner', + mantine: ['Alert'], + render: () => ( + + Your changes are live in production. + + ), + }, +] diff --git a/e2e/README.md b/e2e/README.md new file mode 100644 index 0000000..79a2b96 --- /dev/null +++ b/e2e/README.md @@ -0,0 +1,122 @@ +# E2E Test Harness + +Cucumber + Playwright end-to-end tests for the project. The intent is that +**every locked workflow has a `.feature` file before it gets a line of +implementation code** (see "Phase 7.5 — Acceptance scenarios" in the +discovery playbook). + +## Layout + +``` +e2e/ + package.json — cucumber, @playwright/test, tsx + cucumber.mjs — runner config + tests/ + features/*.feature — Gherkin scenarios (one feature per locked workflow) + steps/*.steps.ts — step definitions; common.steps.ts is generic + support/ + world.ts — AppWorld (browser, page, login, gotoApp, expectText) + hooks.ts — spawns servers (optional), DB reset hook, browser lifecycle + types.ts — config (URLs, timeouts) read from env + reports/ — generated HTML reports +``` + +## Running + +The harness assumes the app is reachable. Either: + +**A. Start servers yourself** (recommended during dev): + +```sh +yarn dev # in repo root — starts frontend + backend +yarn workspace @project/e2e test +``` + +**B. Let the harness manage the servers**: + +```sh +E2E_MANAGE_SERVERS=1 \ +E2E_BACKEND_CMD="yarn dev:backend" \ +E2E_FRONTEND_CMD="yarn dev" \ +yarn workspace @project/e2e test +``` + +## Configuration + +All env vars optional; defaults match the kanban-board-template's ports. + +| Var | Default | Purpose | +|----------------------|----------------------------|-----------------------------------------------| +| `APP_URL` | `http://localhost:7104` | Vite frontend URL | +| `API_URL` | `http://localhost:4003` | Pikku backend URL | +| `E2E_TIMEOUT` | `30000` | Per-step Playwright timeout (ms) | +| `E2E_MANAGE_SERVERS` | unset | Set to `1` to have hooks spawn dev servers | +| `E2E_BACKEND_CMD` | `yarn dev:backend` | Used when `E2E_MANAGE_SERVERS=1` | +| `E2E_FRONTEND_CMD` | `yarn dev` | Used when `E2E_MANAGE_SERVERS=1` | +| `E2E_RESET_URL` | unset | POST URL that resets DB to seed between tests | +| `HEADED` | unset | Set to `1` to run with a visible browser | + +## DB reset between scenarios + +Scenarios pollute each other. To get a deterministic DB state per scenario, +implement a `__test_reset` Pikku function gated behind a test-only flag, and +point `E2E_RESET_URL` at it. The harness will POST to it in the `Before` +hook. If the URL is unset or unreachable the harness logs a warning and +continues. + +Example shape: + +```ts +export const testReset = pikkuSessionlessFunc({ + expose: true, + description: 'Reset DB to seed state. Test-only — gated by NODE_ENV.', + func: async ({ kysely, config }) => { + if (config.env !== 'test') throw new Error('forbidden') + await kysely.deleteFrom('booking').execute() + // ... drop + reseed all mutable tables + return { ok: true as const } + }, +}) +``` + +## Writing a feature + +```gherkin +Feature: + + Scenario: + Given I am logged in as "demo@yoga-retreat.example" with password "demo1234" + When I visit "/bookings" + Then I see "Summer Yoga Retreat" +``` + +Generic steps live in `tests/steps/common.steps.ts`: + +- `Given I visit ""` +- `Given I am logged in as "" with password ""` +- `When I log in as "..." with password "..."` +- `When I log out` +- `When I fill "" with ""` +- `When I click " + ) : null} + {action && onAction ? ( + + ) : null} + + ) : null} + {secondaryText ? ( + + {secondaryText} + + ) : null} + + + ) +} diff --git a/packages/components/src/NotFoundState.stories.tsx b/packages/components/src/NotFoundState.stories.tsx new file mode 100644 index 0000000..1222ea3 --- /dev/null +++ b/packages/components/src/NotFoundState.stories.tsx @@ -0,0 +1,25 @@ +import type { Story, StoryMeta } from './csf.types' +import { NotFoundState } from './NotFoundState' + +const meta: StoryMeta = { + title: 'NotFoundState', + component: NotFoundState, + tags: ['feedback'], + argTypes: { + title: { description: 'Override the "Page not found" heading', control: 'text' }, + description: { description: 'Override the default description text', control: 'text' }, + }, +} +export default meta + +export const Default: Story = {} + +function CustomStory() { + return ( + + ) +} +export const Custom: Story = { render: CustomStory } diff --git a/packages/components/src/NotFoundState.tsx b/packages/components/src/NotFoundState.tsx new file mode 100644 index 0000000..28c0970 --- /dev/null +++ b/packages/components/src/NotFoundState.tsx @@ -0,0 +1,40 @@ +import { Center, Stack, Text } from '@mantine/core' + +interface NotFoundStateProps { + title?: string + description?: string +} + +export function NotFoundState({ + title = 'Page not found', + description = "The resource you're looking for doesn't exist or has been removed.", +}: NotFoundStateProps) { + return ( +
+ + + 404 + + + {title} + + + {description} + + +
+ ) +} diff --git a/packages/components/src/PageLoader.stories.tsx b/packages/components/src/PageLoader.stories.tsx new file mode 100644 index 0000000..91f0100 --- /dev/null +++ b/packages/components/src/PageLoader.stories.tsx @@ -0,0 +1,11 @@ +import type { Story, StoryMeta } from './csf.types' +import { PageLoader } from './PageLoader' + +const meta: StoryMeta = { + title: 'PageLoader', + component: PageLoader, + tags: ['loading'], +} +export default meta + +export const Default: Story = {} diff --git a/packages/components/src/PageLoader.tsx b/packages/components/src/PageLoader.tsx new file mode 100644 index 0000000..e6b927b --- /dev/null +++ b/packages/components/src/PageLoader.tsx @@ -0,0 +1,16 @@ +import { Center, Loader } from '@mantine/core' + +export function PageLoader() { + return ( +
+ +
+ ) +} diff --git a/packages/components/src/ServerErrorState.stories.tsx b/packages/components/src/ServerErrorState.stories.tsx new file mode 100644 index 0000000..ab12cb4 --- /dev/null +++ b/packages/components/src/ServerErrorState.stories.tsx @@ -0,0 +1,47 @@ +import { useState } from 'react' +import type { Story, StoryMeta } from './csf.types' +import { ServerErrorState } from './ServerErrorState' + +const meta: StoryMeta = { + title: 'ServerErrorState', + component: ServerErrorState, + tags: ['feedback'], + argTypes: { + title: { description: 'Override the "Something went wrong" heading', control: 'text' }, + description: { description: 'Override the default error description', control: 'text' }, + onRetry: { description: 'Callback fired when the retry button is clicked', control: false }, + retrying: { + description: 'Shows a loading spinner on the retry button', + control: 'boolean', + }, + retryLabel: { description: 'Label for the retry button', control: 'text' }, + glyph: { + description: 'Custom element displayed above the title instead of "500"', + control: false, + }, + }, +} +export default meta + +export const Default: Story = {} + +function WithRetryStory() { + const [retrying, setRetrying] = useState(false) + const handleRetry = () => { + setRetrying(true) + setTimeout(() => setRetrying(false), 1500) + } + return +} +export const WithRetry: Story = { render: WithRetryStory } + +function CustomGlyphStory() { + return ( + ⚠️} + title="Unexpected error" + description="Please try again or contact support if the problem persists." + /> + ) +} +export const CustomGlyph: Story = { render: CustomGlyphStory } diff --git a/packages/components/src/ServerErrorState.tsx b/packages/components/src/ServerErrorState.tsx new file mode 100644 index 0000000..dabcdf6 --- /dev/null +++ b/packages/components/src/ServerErrorState.tsx @@ -0,0 +1,70 @@ +import type { ReactNode } from 'react' +import { Button, Center, Stack, Text } from '@mantine/core' +import { RefreshCw } from 'lucide-react' + +interface ServerErrorStateProps { + title?: string + description?: string + onRetry?: () => void + retrying?: boolean + retryLabel?: string + glyph?: ReactNode +} + +export function ServerErrorState({ + title = 'Something went wrong', + description = 'The server returned an error while loading this page.', + onRetry, + retrying = false, + retryLabel = 'Retry', + glyph, +}: ServerErrorStateProps) { + const normalizedDescription = typeof description === 'string' ? description.trim() : '' + const showDescription = + normalizedDescription.length > 0 && + normalizedDescription !== 'HTTP 500' && + normalizedDescription !== 'HTTP 500.' + + return ( +
+ + {glyph ?? ( + + 500 + + )} + + {title} + + {showDescription ? ( + + {normalizedDescription} + + ) : null} + {onRetry ? ( + + ) : null} + +
+ ) +} diff --git a/packages/components/src/UserCard.app.stories.tsx b/packages/components/src/UserCard.app.stories.tsx new file mode 100644 index 0000000..72accd7 --- /dev/null +++ b/packages/components/src/UserCard.app.stories.tsx @@ -0,0 +1,54 @@ +import type { AppStory, AppStoryMeta } from './csf.types' +import { UserCard, type User } from './UserCard' +import { stubQuery } from './fixtures/stubQuery' + +// App-level widget: composed from library primitives (Avatar + Badge + Card) and +// driven by a query, so it's previewed across its named data-state scenarios in +// the Design tab's App lens — not as simple variants. +const meta: AppStoryMeta = { + title: 'UserCard', + component: UserCard, + group: 'Account', + description: 'Shows the current user, composed from the library Avatar + Badge.', + tags: ['app'], + inputs: [ + { + name: 'query', + kind: 'query', + type: 'UseQueryResult', + description: 'Fetches the user to display.', + }, + ], + argTypes: { + query: { description: 'User query result (loading / error / empty / success).', control: false }, + }, +} +export default meta + +const sampleUser: User = { + id: 'u_1', + name: 'Ada Lovelace', + email: 'ada@example.com', + role: 'Principal Engineer', + status: 'active', +} + +function LoadingScenario() { + return ()} /> +} +export const Loading: AppStory = { tag: 'query: pending', render: LoadingScenario } + +function ErrorScenario() { + return (new Error('Request failed'))} /> +} +export const Errored: AppStory = { name: 'Error', tag: 'query: error', render: ErrorScenario } + +function EmptyScenario() { + return ()} /> +} +export const Empty: AppStory = { tag: 'query: no data', render: EmptyScenario } + +function ActiveScenario() { + return (sampleUser)} /> +} +export const Active: AppStory = { name: 'Active user', tag: 'query: success', render: ActiveScenario } diff --git a/packages/components/src/UserCard.tsx b/packages/components/src/UserCard.tsx new file mode 100644 index 0000000..80c013f --- /dev/null +++ b/packages/components/src/UserCard.tsx @@ -0,0 +1,83 @@ +import { Avatar, Badge, Card, Group, Loader, Stack, Text } from '@mantine/core' +import type { UseQueryResult } from '@tanstack/react-query' + +export type User = { + id: string + name: string + email: string + role: string + status: 'active' | 'away' | 'offline' +} + +const STATUS_COLOR: Record = { + active: 'green', + away: 'yellow', + offline: 'gray', +} + +export type UserCardProps = { + query: UseQueryResult +} + +export const UserCard: React.FC = ({ query }) => { + if (query.isLoading) { + return ( + + + + + Loading user… + + + + ) + } + + if (query.isError) { + return ( + + + + Couldn’t load user + + + {query.error instanceof Error ? query.error.message : 'Unknown error'} + + + + ) + } + + const user = query.data + if (!user) { + return ( + + + No user to show. + + + ) + } + + return ( + + + + + + {user.name} + + {user.email} + + + + + {user.status} + + + + {user.role} + + + ) +} diff --git a/packages/components/src/csf.types.ts b/packages/components/src/csf.types.ts new file mode 100644 index 0000000..f36e690 --- /dev/null +++ b/packages/components/src/csf.types.ts @@ -0,0 +1,45 @@ +import type { ComponentType } from 'react' + +export interface ArgType { + description?: string + control?: string | false + defaultValue?: unknown +} + +export interface StoryMeta { + title: string + component: ComponentType + description?: string + /** Left-menu group in the Design tab; falls back to the first tag. */ + group?: string + tags?: string[] + argTypes?: Record +} + +export interface Story { + args?: Record + render?: ComponentType + name?: string +} + +/** A query or mutation an app widget consumes. Listed in the Design tab's + * right-column inspector under the App lens. */ +export interface AppInput { + name: string + kind: 'query' | 'mutation' + type?: string + description?: string +} + +/** Meta for an app-level widget (`*.app.stories.tsx`). Such a widget is composed + * from the library and driven by queries/mutations, so it's previewed across + * named data-state scenarios rather than simple variants. */ +export interface AppStoryMeta extends StoryMeta { + inputs?: AppInput[] +} + +/** One named data-state scenario of an app widget (e.g. Loading / Error / Ready). + * `tag` annotates the data state, e.g. "query: pending". */ +export interface AppStory extends Story { + tag?: string +} diff --git a/packages/components/src/fixtures/stubMutation.ts b/packages/components/src/fixtures/stubMutation.ts new file mode 100644 index 0000000..00d458b --- /dev/null +++ b/packages/components/src/fixtures/stubMutation.ts @@ -0,0 +1,69 @@ +import type { UseMutationResult } from '@tanstack/react-query' + +function build( + partial: Record, +): UseMutationResult { + return { + failureCount: 0, + failureReason: null, + isPaused: false, + submittedAt: 0, + context: undefined, + variables: undefined, + mutate: () => undefined, + mutateAsync: () => Promise.resolve(undefined as never), + reset: () => undefined, + ...partial, + } as unknown as UseMutationResult +} + +export const stubMutation = { + idle(): UseMutationResult { + return build({ + status: 'idle', + isIdle: true, + isPending: false, + isError: false, + isSuccess: false, + data: undefined, + error: null, + }) + }, + pending(): UseMutationResult { + return build({ + status: 'pending', + isIdle: false, + isPending: true, + isError: false, + isSuccess: false, + data: undefined, + error: null, + }) + }, + error( + error: Error, + ): UseMutationResult { + return build({ + status: 'error', + isIdle: false, + isPending: false, + isError: true, + isSuccess: false, + data: undefined, + error, + }) + }, + success( + data: TData, + ): UseMutationResult { + return build({ + status: 'success', + isIdle: false, + isPending: false, + isError: false, + isSuccess: true, + data, + error: null, + }) + }, +} diff --git a/packages/components/src/fixtures/stubQuery.ts b/packages/components/src/fixtures/stubQuery.ts new file mode 100644 index 0000000..497a3c7 --- /dev/null +++ b/packages/components/src/fixtures/stubQuery.ts @@ -0,0 +1,66 @@ +import type { UseQueryResult } from '@tanstack/react-query' + +function build(partial: Record): UseQueryResult { + return { + failureCount: 0, + failureReason: null, + errorUpdateCount: 0, + isFetched: true, + isFetchedAfterMount: true, + isFetching: partial.fetchStatus === 'fetching', + isPaused: false, + isPlaceholderData: false, + isRefetching: false, + isStale: false, + isInitialLoading: partial.isLoading === true, + isLoadingError: false, + isRefetchError: false, + dataUpdatedAt: 0, + errorUpdatedAt: 0, + refetch: () => Promise.resolve(undefined as never), + promise: Promise.resolve(undefined as never), + ...partial, + } as unknown as UseQueryResult +} + +export const stubQuery = { + loading(): UseQueryResult { + return build({ + status: 'pending', + fetchStatus: 'fetching', + isPending: true, + isLoading: true, + isError: false, + isSuccess: false, + data: undefined, + error: null, + }) + }, + error(error: Error): UseQueryResult { + return build({ + status: 'error', + fetchStatus: 'idle', + isPending: false, + isLoading: false, + isError: true, + isSuccess: false, + data: undefined, + error, + }) + }, + success(data: T): UseQueryResult { + return build({ + status: 'success', + fetchStatus: 'idle', + isPending: false, + isLoading: false, + isError: false, + isSuccess: true, + data, + error: null, + }) + }, + empty(): UseQueryResult { + return stubQuery.success(null as T) + }, +} diff --git a/packages/components/tsconfig.json b/packages/components/tsconfig.json new file mode 100644 index 0000000..6c547ca --- /dev/null +++ b/packages/components/tsconfig.json @@ -0,0 +1,14 @@ +{ + "compilerOptions": { + "target": "ES2022", + "lib": ["ES2022", "DOM", "DOM.Iterable"], + "module": "ESNext", + "moduleResolution": "Bundler", + "jsx": "react-jsx", + "strict": true, + "esModuleInterop": true, + "skipLibCheck": true, + "noEmit": true + }, + "include": ["index.ts", "src"] +} diff --git a/packages/functions-sdk/package.json b/packages/functions-sdk/package.json new file mode 100644 index 0000000..c72adf6 --- /dev/null +++ b/packages/functions-sdk/package.json @@ -0,0 +1,18 @@ +{ + "name": "@project/functions-sdk", + "version": "0.0.1", + "private": true, + "type": "module", + "exports": { + "./pikku/api.gen": "./src/pikku/api.gen.ts", + "./pikku/pikku-fetch.gen": "./src/pikku/pikku-fetch.gen.ts", + "./pikku/pikku-rpc.gen": "./src/pikku/pikku-rpc.gen.ts", + "./pikku/rpc-map.gen": "./src/pikku/rpc-map.gen.d.ts", + "./pikku/http-map.gen": "./src/pikku/http-map.gen.d.ts", + "./pikku/*": "./src/pikku/*" + }, + "dependencies": { + "@pikku/fetch": "^0.12.3", + "@pikku/react": "^0.12.3" + } +} diff --git a/packages/functions-sdk/src/pikku/api.gen.ts b/packages/functions-sdk/src/pikku/api.gen.ts new file mode 100644 index 0000000..4221363 --- /dev/null +++ b/packages/functions-sdk/src/pikku/api.gen.ts @@ -0,0 +1,56 @@ +/** + * This file was generated by @pikku/cli@0.12.45 + */ +import { useQuery, useInfiniteQuery, useMutation, type UseQueryOptions, type UseInfiniteQueryOptions, type UseMutationOptions, type InfiniteData } from '@tanstack/react-query' +import { usePikkuRPC } from '@pikku/react' +import type { FlattenedRPCMap } from '../../../../../../../../../../../tmp/lc/.pikku/rpc/pikku-rpc-wirings-map.gen.d.js' + +type RPCInvoke = (name: Name, data: FlattenedRPCMap[Name]['input']) => Promise + +export const usePikkuQuery = ( + name: Name, + data: FlattenedRPCMap[Name]['input'], + options?: Omit, 'queryKey' | 'queryFn'> +) => { + const rpc = usePikkuRPC<{ invoke: RPCInvoke }>() + return useQuery({ + queryKey: [name, data], + queryFn: () => rpc.invoke(name, data), + ...options, + }) +} + +export const usePikkuMutation = ( + name: Name, + options?: Omit, 'mutationFn'> +) => { + const rpc = usePikkuRPC<{ invoke: RPCInvoke }>() + return useMutation({ + mutationFn: (data) => rpc.invoke(name, data), + ...options, + }) +} + +type PaginatedKeys = { + [K in keyof FlattenedRPCMap]: FlattenedRPCMap[K]['output'] extends { nextCursor?: string | null } ? K : never +}[keyof FlattenedRPCMap] + +type InfiniteOpts = Omit< + UseInfiniteQueryOptions, readonly unknown[], string | undefined>, + 'queryKey' | 'queryFn' | 'getNextPageParam' | 'initialPageParam' +> + +export const usePikkuInfiniteQuery = ( + name: Name, + data: Omit, + options?: InfiniteOpts +) => { + const rpc = usePikkuRPC<{ invoke: RPCInvoke }>() + return useInfiniteQuery({ + queryKey: [name, data] as const, + queryFn: ({ pageParam }: { pageParam: string | undefined }) => rpc.invoke(name, { ...data, nextCursor: pageParam } as unknown as FlattenedRPCMap[Name]['input']), + initialPageParam: undefined as string | undefined, + getNextPageParam: (lastPage: FlattenedRPCMap[Name]['output']) => (lastPage as { nextCursor?: string }).nextCursor ?? undefined, + ...options, + }) +} diff --git a/packages/functions-sdk/src/pikku/pikku-fetch.gen.ts b/packages/functions-sdk/src/pikku/pikku-fetch.gen.ts new file mode 100644 index 0000000..6ecdff4 --- /dev/null +++ b/packages/functions-sdk/src/pikku/pikku-fetch.gen.ts @@ -0,0 +1,67 @@ +/** + * This file was generated by @pikku/cli@0.12.45 + */ + +import { CorePikkuFetch, HTTPMethod } from '@pikku/fetch' +import type { HTTPWiringsMap, HTTPWiringHandlerOf, HTTPWiringsWithMethod } from '../../../../../../../../../../../tmp/lc/.pikku/http/pikku-http-wirings-map.gen.d.js' + +export class PikkuFetch extends CorePikkuFetch { + public async post>( + route: Route, + ...args: null extends HTTPWiringHandlerOf['input'] + ? [data?: Exclude['input'], null>, options?: Omit] + : [data: HTTPWiringHandlerOf['input'], options?: Omit] + ): Promise['output']> { + const [data, options] = args; + return super.api(route, 'POST', data, options); + } + + public async get>( + route: Route, + ...args: null extends HTTPWiringHandlerOf['input'] + ? [data?: Exclude['input'], null>, options?: Omit] + : [data: HTTPWiringHandlerOf['input'], options?: Omit] + ): Promise['output']> { + const [data, options] = args; + return super.api(route, 'GET', data, options); + } + + public async patch>( + route: Route, + ...args: null extends HTTPWiringHandlerOf['input'] + ? [data?: Exclude['input'], null>, options?: Omit] + : [data: HTTPWiringHandlerOf['input'], options?: Omit] + ): Promise['output']> { + const [data, options] = args; + return super.api(route, 'PATCH', data, options); + } + + public async head>( + route: Route, + ...args: null extends HTTPWiringHandlerOf['input'] + ? [data?: Exclude['input'], null>, options?: Omit] + : [data: HTTPWiringHandlerOf['input'], options?: Omit] + ): Promise['output']> { + const [data, options] = args; + return super.api(route, 'HEAD', data, options); + } + + public async delete>( + route: Route, + ...args: null extends HTTPWiringHandlerOf['input'] + ? [data?: Exclude['input'], null>, options?: Omit] + : [data: HTTPWiringHandlerOf['input'], options?: Omit] + ): Promise['output']> { + const [data, options] = args; + return super.api(route, 'DELETE', data, options); + } + + public async fetch< + Route extends keyof HTTPWiringsMap, + Method extends keyof HTTPWiringsMap[Route] + >(route: Route, method: Method, data: HTTPWiringHandlerOf['input'], options?: Omit): Promise { + return await super.fetch(route, method as HTTPMethod, data, options); + } +} + +export const pikkuFetch = new PikkuFetch(); diff --git a/packages/functions-sdk/src/pikku/pikku-rpc.gen.ts b/packages/functions-sdk/src/pikku/pikku-rpc.gen.ts new file mode 100644 index 0000000..1ea3b2a --- /dev/null +++ b/packages/functions-sdk/src/pikku/pikku-rpc.gen.ts @@ -0,0 +1,148 @@ +/** + * This file was generated by @pikku/cli@0.12.45 + */ + +import { PikkuFetch } from "./pikku-fetch.gen.js" +import type { RPCInvoke, TypedAgentRun, TypedStartWorkflow, TypedRunWorkflow, TypedWorkflowStatus } from '../../../../../../../../../../../tmp/lc/.pikku/rpc/pikku-rpc-wirings-map.gen.d.js' +import type { WorkflowRunStatus } from '@pikku/core/workflow' + +/** + * PikkuRPC provides a type-safe client for making Remote Procedure Calls (RPC) + * to your Pikku server. It wraps the underlying HTTP client and provides a + * simple interface for invoking server-side functions. + */ +export class PikkuRPC { + /** The underlying HTTP client used for making RPC calls */ + pikkuFetch = new PikkuFetch() + + /** + * Sets a custom PikkuFetch instance to use for RPC calls. + * This allows you to configure custom settings or use a shared client instance. + * + * @param pikkuFetch - The PikkuFetch instance to use + */ + setPikkuFetch(pikkuFetch: PikkuFetch): void { + this.pikkuFetch = pikkuFetch + } + + /** + * Sets the base server URL for all RPC calls. + * + * @param serverUrl - The base URL of your Pikku server (e.g., 'https://api.example.com') + */ + setServerUrl(serverUrl: string): void { + this.pikkuFetch.setServerUrl(serverUrl) + } + + /** + * Sets the JWT token for authorization on all RPC calls. + * + * @param jwt - The JWT token to use for authorization, or null to remove authorization + */ + setAuthorizationJWT(jwt: string | null): void { + this.pikkuFetch.setAuthorizationJWT(jwt) + } + + /** + * Sets the API key for authorization on all RPC calls. + * + * @param apiKey - The API key to use for authorization, or null to remove the API key + */ + setAPIKey(apiKey: string | null): void { + this.pikkuFetch.setAPIKey(apiKey) + } + + /** + * Invokes a remote procedure call on the server. + * This is a generic method that routes to the appropriate server function + * based on the function name and passes the provided data. + * + * @param rpcName - The name of the server function to invoke + * @param data - The data to pass to the server function + * @returns A promise that resolves with the function's return value + */ + invoke = ((rpcName: string, data?: unknown) => { + return this.pikkuFetch.post(`/rpc/${String(rpcName)}` as never, { rpcName: String(rpcName), data }) as any + }) as RPCInvoke + + /** + * Starts a workflow by name with the given input. + * Posts to \`/workflow/:workflowName/start\`. + * + * @param workflowName - The registered workflow name + * @param input - The workflow input data + * @returns A promise that resolves with the new run ID + */ + startWorkflow: TypedStartWorkflow = async (workflowName, input) => { + return await this.pikkuFetch.post(`/workflow/${String(workflowName)}/start` as never, { data: input }) as any + } + + /** + * Runs a workflow to completion and returns the output. + * Posts to \`/workflow/:workflowName/run\`. + * + * @param workflowName - The registered workflow name + * @param input - The workflow input data + * @returns A promise that resolves with the workflow output + */ + runWorkflow: TypedRunWorkflow = async (workflowName, input) => { + return await this.pikkuFetch.post(`/workflow/${String(workflowName)}/run` as never, { data: input }) as any + } + + /** + * Gets the current status of a workflow run. + * GET \`/workflow/:workflowName/status/:runId\`. + * + * @param workflowName - The registered workflow name + * @param runId - The workflow run ID + * @returns A promise with the minimal run status + */ + workflowStatus: TypedWorkflowStatus = async (workflowName, runId) => { + return await this.pikkuFetch.get(`/workflow/${String(workflowName)}/status/${runId}` as never) as unknown as WorkflowRunStatus + } + + /** + * Agent namespace — methods for running, streaming, and approving AI agents. + * All methods post to \`/rpc/agent/:agentName/*\`. + */ + agent = { + /** + * Runs an agent to completion and returns the result. + * + * @param agentName - The registered agent name + * @param input - The agent input (message, threadId, resourceId) + * @returns A promise with runId, result, and token usage + */ + run: (async (agentName, input) => { + return await this.pikkuFetch.post(`/rpc/agent/${String(agentName)}` as never, input) as any + }) as TypedAgentRun, + /** + * Streams agent responses via SSE. Used for real-time chat interfaces. + * + * @param agentName - The registered agent name + * @param input - The agent input (message, threadId, resourceId) + */ + stream: async (agentName: string, input: Record) => { + return await this.pikkuFetch.post(`/rpc/agent/${String(agentName)}/stream` as never, input) as any + }, + /** + * Approves or denies pending tool calls for an agent run. + * + * @param agentName - The registered agent name + * @param input - The approval payload (runId, approvals array) + */ + approve: async (agentName: string, input: Record) => { + return await this.pikkuFetch.post(`/rpc/agent/${String(agentName)}/approve` as never, input) as any + }, + } + + subscribeToSSE( + path: string, + handler: (event: T) => void, + onError?: (err: unknown) => void + ): { close: () => void } { + return this.pikkuFetch.subscribeToSSE(path, handler, onError) + } +} + +export const pikkuRPC = new PikkuRPC(); diff --git a/packages/functions-sdk/src/pikku/rpc-map.gen.d.ts b/packages/functions-sdk/src/pikku/rpc-map.gen.d.ts new file mode 100644 index 0000000..c38dffd --- /dev/null +++ b/packages/functions-sdk/src/pikku/rpc-map.gen.d.ts @@ -0,0 +1,297 @@ +/** + * This file was generated by @pikku/cli@0.12.21 + */ +/** + * This provides the structure needed for typescript to be aware of RPCs and their return types + */ + +export type AgentApproveCallerInput = { + agentName: string + runId: string + approvals: { toolCallId: string; approved: boolean }[] +} +export type AgentCallerInput = { + agentName: string + message: string + threadId: string + resourceId: string +} +export type AgentResumeCallerInput = { + agentName: string + runId: string + toolCallId: string + approved: boolean +} +export type AgentStreamCallerInput = { + agentName: string + message: string + threadId: string + resourceId: string +} +export type CreateCardInput = { + title: string + status: 'todo' | 'doing' | 'done' + priority?: ('low' | 'medium' | 'high') | undefined +} +export type CreateCardOutput = { + cardId: string + title: string + status: string + position: number + createdAt: string +} +export type CreateCardToolInput = { + title: string + status: 'todo' | 'doing' | 'done' +} +export type CreateCardToolOutput = { type: 'text'; text: string }[] +export type DeleteAgentThreadInput = { threadId: string; resourceId?: string } +export type DeleteAgentThreadOutput = { deleted: boolean } +export type EnrichCardInput = { + title: string + status: 'todo' | 'doing' | 'done' +} +export type EnrichCardOutput = { + title: string + status: string + priority: 'low' | 'medium' | 'high' + labels: string[] +} +export type GetAgentThreadMessagesInput = { threadId: string; resourceId?: string } +export type GetAgentThreadMessagesOutput = any[] +export type GetAgentThreadRunsInput = { threadId: string; resourceId?: string } +export type GetAgentThreadRunsOutput = any[] +export type GetAgentThreadsInput = { + agentName?: string + resourceId?: string + limit?: number + offset?: number +} +export type GetAgentThreadsOutput = any[] +export type GetCardFileUploadUrlInput = { + cardId: string + fileName: string + contentType: string +} +export type GetCardFileUploadUrlOutput = { + uploadUrl: string + fileKey: string + expiresAt: string + uploadMethod?: ('PUT' | 'POST') | undefined + uploadHeaders?: + | { + [key: string]: string + } + | undefined +} +export type GraphStarterInput = { workflowName: string; nodeId: string; data?: unknown } +export type GraphStarterOutput = { runId: string } +export type ListCardsInput = { + status?: ('todo' | 'doing' | 'done') | undefined +} +export type ListCardsOutput = { + cards: { + cardId: string + title: string + status: string + position: number + createdAt: string + }[] +} +export type ListCardsToolOutput = { type: 'text'; text: string }[] +export type NotifyCardCreatedInput = { + cardId: string + title: string + priority: 'low' | 'medium' | 'high' + labels: string[] +} +export type OnCardEventTriggerInput = { + title: string + status: 'todo' | 'doing' | 'done' + source?: string | undefined +} +export type OnCardEventTriggerOutput = { + cardId: string + title: string + status: string +} +export type OnCardsClearSessionInput = Record +export type OnCardsClearSessionOutput = { cleared: true } +export type OnCardsConnectInput = { type: 'hello'; count: number } +export type OnCardsEchoInput = { text: string } +export type OnCardsEchoOutput = { echo: string } +export type OnCardsGetSessionInput = Record +export type OnCardsGetSessionOutput = { session: unknown } +export type OnCardsSetSessionInput = { userId: string; label: string } +export type OnCardsSetSessionOutput = { set: true; label: string } +export type PikkuConsoleGetSecretInput = { secretId: string } +export type PikkuConsoleGetSecretOutput = { exists: boolean; value: unknown } +export type PikkuConsoleGetVariableInput = { variableId: string } +export type PikkuConsoleGetVariableOutput = { exists: boolean; value: unknown } +export type PikkuConsoleHasSecretInput = { secretId: string } +export type PikkuConsoleHasSecretOutput = { exists: boolean } +export type PikkuConsoleSetSecretInput = { secretId: string; value: unknown } +export type PikkuConsoleSetSecretOutput = { success: boolean } +export type PikkuConsoleSetVariableInput = { variableId: string; value: unknown } +export type PikkuConsoleSetVariableOutput = { success: boolean } +export type ProcessCardEventInput = { + cardId: string + action: string + status: string + createdAt: string +} +export type RemoteRPCHandlerInput = { rpcName: string; data?: unknown } +export type RpcCallerInput = { rpcName: string; data?: unknown } +export type SecretSchema_notificationWebhookSecret = string +export type SignCardFileInput = { + cardId: string + fileName: string +} +export type SignCardFileOutput = { + signedUrl: string + expiresAt: string +} +export type VariableSchema_maxCardsPerColumn = number +export type WorkflowRunnerInput = { workflowName: string; data?: unknown } +export type WorkflowStarterInput = { workflowName: string; data?: unknown } +export type WorkflowStarterOutput = { runId: string } +export type WorkflowStatusCheckerInput = { workflowName: string; runId: string } +export type WorkflowStatusStreamFullInput = { workflowName: string; runId: string } +export type WorkflowStatusStreamInput = { workflowName: string; runId: string } + +interface RPCHandler { + input: I + output: O +} + +export type RPCMap = { + readonly createCard: RPCHandler + readonly getCardFileUploadUrl: RPCHandler + readonly listCards: RPCHandler + readonly signCardFile: RPCHandler + readonly getAgentThreads: RPCHandler + readonly getAgentThreadMessages: RPCHandler< + GetAgentThreadMessagesInput, + GetAgentThreadMessagesOutput + > + readonly getAgentThreadRuns: RPCHandler + readonly deleteAgentThread: RPCHandler + readonly pikkuConsoleSetSecret: RPCHandler< + PikkuConsoleSetSecretInput, + PikkuConsoleSetSecretOutput + > + readonly pikkuConsoleGetVariable: RPCHandler< + PikkuConsoleGetVariableInput, + PikkuConsoleGetVariableOutput + > + readonly pikkuConsoleSetVariable: RPCHandler< + PikkuConsoleSetVariableInput, + PikkuConsoleSetVariableOutput + > + readonly pikkuConsoleHasSecret: RPCHandler< + PikkuConsoleHasSecretInput, + PikkuConsoleHasSecretOutput + > + readonly pikkuConsoleGetSecret: RPCHandler< + PikkuConsoleGetSecretInput, + PikkuConsoleGetSecretOutput + > +} + +// Addon package RPC maps +import type { RPCMap as ConsoleRPCMap } from '@pikku/addon-console/.pikku/rpc/pikku-rpc-wirings-map.internal.gen.js' + +// Utility type to prefix keys with namespace (skips 'any' to prevent type poisoning) +type PrefixKeys = unknown extends T + ? {} + : { + [K in keyof T as `${Prefix}:${string & K}`]: T[K] + } + +// Merge all RPC maps with namespace prefixes +export type FlattenedRPCMap = RPCMap & PrefixKeys + +type IsAny = 0 extends 1 & T ? true : false +type IsVoidishInput = + IsAny extends true ? false : [T] extends [void | null | undefined] ? true : false + +export type RPCInvoke = ( + ...args: IsVoidishInput extends true + ? [name: Name] + : [name: Name, data: FlattenedRPCMap[Name]['input']] +) => Promise + +export type RPCRemote = ( + ...args: IsVoidishInput extends true + ? [name: Name] + : [name: Name, data: FlattenedRPCMap[Name]['input']] +) => Promise + +import type { FlattenedWorkflowMap } from '../../../functions/.pikku/workflow/pikku-workflow-map.gen.d.js' + +import type { AgentMap } from '../../../functions/.pikku/agent/pikku-agent-map.gen.d.js' + +// Addon package Agent maps +import type { AgentMap as ConsoleAgentMap } from '@pikku/addon-console/.pikku/agent/pikku-agent-map.gen.d.js' + +type FlattenedAgentMap = AgentMap & PrefixKeys + +import type { PikkuRPC } from '@pikku/core/rpc' + +interface AIAgentInput { + message: string + threadId: string + resourceId: string +} + +export type TypedStartWorkflow = ( + name: Name, + input: FlattenedWorkflowMap[Name]['input'], + options?: { startNode?: string }, +) => Promise<{ runId: string }> + +export type TypedRunWorkflow = ( + name: Name, + input: FlattenedWorkflowMap[Name]['input'], +) => Promise + +export type TypedWorkflowStatus = ( + workflowName: string, + runId: string, +) => Promise<{ + id: string + status: 'running' | 'suspended' | 'completed' | 'failed' | 'cancelled' + output?: unknown + error?: { message?: string } +}> + +type TypedAgentRun = [keyof FlattenedAgentMap] extends [never] + ? (name: string, input: AIAgentInput) => Promise + : ( + name: Name, + input: AIAgentInput, + ) => Promise<{ + runId: string + result: FlattenedAgentMap[Name]['output'] + usage: { inputTokens: number; outputTokens: number } + }> + +type TypedAgentStream = [keyof FlattenedAgentMap] extends [never] + ? ( + name: string, + input: AIAgentInput, + options?: { requiresToolApproval?: 'all' | 'explicit' | false }, + ) => Promise + : ( + name: Name, + input: AIAgentInput, + options?: { requiresToolApproval?: 'all' | 'explicit' | false }, + ) => Promise + +export type TypedPikkuRPC = PikkuRPC< + RPCInvoke, + RPCRemote, + TypedStartWorkflow, + TypedAgentRun, + TypedAgentStream +> diff --git a/packages/functions/bin/db-migrate.ts b/packages/functions/bin/db-migrate.ts new file mode 100644 index 0000000..3e288c3 --- /dev/null +++ b/packages/functions/bin/db-migrate.ts @@ -0,0 +1,41 @@ +import postgres from 'postgres' +import { readdir, readFile } from 'node:fs/promises' +import { join, dirname } from 'node:path' +import { fileURLToPath } from 'node:url' + +const __dirname = dirname(fileURLToPath(import.meta.url)) +const sqlDir = join(__dirname, '../../../sql') + +const databaseUrl = process.env.DATABASE_URL +if (!databaseUrl) { + console.error('[db-migrate] DATABASE_URL is not set') + process.exit(1) +} + +const sql = postgres(databaseUrl) + +await sql` + CREATE TABLE IF NOT EXISTS schema_migrations ( + filename TEXT PRIMARY KEY, + applied_at TIMESTAMPTZ NOT NULL DEFAULT NOW() + ) +` + +const applied = new Set((await sql`SELECT filename FROM schema_migrations`).map((r) => r.filename)) + +const files = (await readdir(sqlDir)).filter((f) => f.endsWith('.sql')).sort() + +for (const file of files) { + if (applied.has(file)) { + console.log(`[db-migrate] skip ${file} (already applied)`) + continue + } + const content = await readFile(join(sqlDir, file), 'utf8') + console.log(`[db-migrate] applying ${file}...`) + await sql.unsafe(content) + await sql`INSERT INTO schema_migrations (filename) VALUES (${file})` + console.log(`[db-migrate] applied ${file}`) +} + +await sql.end() +console.log('[db-migrate] done') diff --git a/packages/functions/coverage/coverage-final.json b/packages/functions/coverage/coverage-final.json new file mode 100644 index 0000000..8c0ded9 --- /dev/null +++ b/packages/functions/coverage/coverage-final.json @@ -0,0 +1,5680 @@ +{ + "/Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/config.ts": { + "path": "/Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/config.ts", + "all": false, + "statementMap": { + "0": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 58 } }, + "1": { "start": { "line": 2, "column": 0 }, "end": { "line": 2, "column": 0 } }, + "2": { "start": { "line": 3, "column": 0 }, "end": { "line": 3, "column": 54 } }, + "3": { "start": { "line": 4, "column": 0 }, "end": { "line": 4, "column": 8 } }, + "4": { "start": { "line": 5, "column": 0 }, "end": { "line": 5, "column": 13 } }, + "5": { "start": { "line": 6, "column": 0 }, "end": { "line": 6, "column": 18 } }, + "6": { "start": { "line": 7, "column": 0 }, "end": { "line": 7, "column": 4 } }, + "7": { "start": { "line": 8, "column": 0 }, "end": { "line": 8, "column": 3 } } + }, + "s": { "0": 1, "1": 1, "2": 1, "3": 3, "4": 3, "5": 3, "6": 3, "7": 1 }, + "branchMap": { + "0": { + "type": "branch", + "line": 8, + "loc": { "start": { "line": 8, "column": 2 }, "end": { "line": 8, "column": 3 } }, + "locations": [{ "start": { "line": 8, "column": 2 }, "end": { "line": 8, "column": 3 } }] + }, + "1": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 28 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 28 } }] + }, + "2": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 28 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 28 } }] + }, + "3": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 28 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 28 } }] + }, + "4": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 28 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 28 } }] + }, + "5": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 28 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 28 } }] + }, + "6": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 28 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 28 } }] + }, + "7": { + "type": "branch", + "line": 3, + "loc": { "start": { "line": 3, "column": 40 }, "end": { "line": 8, "column": 2 } }, + "locations": [{ "start": { "line": 3, "column": 40 }, "end": { "line": 8, "column": 2 } }] + } + }, + "b": { "0": [0], "1": [1], "2": [1], "3": [0], "4": [3], "5": [1], "6": [3], "7": [3] }, + "fnMap": { + "0": { + "name": "__export", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 28 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 28 } }, + "line": 1 + }, + "1": { + "name": "__copyProps", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 28 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 28 } }, + "line": 1 + }, + "2": { + "name": "get", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 28 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 28 } }, + "line": 1 + }, + "3": { + "name": "__toCommonJS", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 28 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 28 } }, + "line": 1 + }, + "4": { + "name": "createConfig", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 28 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 28 } }, + "line": 1 + } + }, + "f": { "0": 1, "1": 1, "2": 3, "3": 1, "4": 3 } + }, + "/Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/services.ts": { + "path": "/Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/services.ts", + "all": false, + "statementMap": { + "0": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 8 } }, + "1": { "start": { "line": 2, "column": 0 }, "end": { "line": 2, "column": 20 } }, + "2": { "start": { "line": 3, "column": 0 }, "end": { "line": 3, "column": 21 } }, + "3": { "start": { "line": 4, "column": 0 }, "end": { "line": 4, "column": 24 } }, + "4": { "start": { "line": 5, "column": 0 }, "end": { "line": 5, "column": 29 } }, + "5": { "start": { "line": 6, "column": 0 }, "end": { "line": 6, "column": 60 } }, + "6": { "start": { "line": 7, "column": 0 }, "end": { "line": 7, "column": 62 } }, + "7": { "start": { "line": 8, "column": 0 }, "end": { "line": 8, "column": 48 } }, + "8": { "start": { "line": 9, "column": 0 }, "end": { "line": 9, "column": 55 } }, + "9": { "start": { "line": 10, "column": 0 }, "end": { "line": 10, "column": 54 } }, + "10": { "start": { "line": 11, "column": 0 }, "end": { "line": 11, "column": 66 } }, + "11": { "start": { "line": 12, "column": 0 }, "end": { "line": 12, "column": 45 } }, + "12": { "start": { "line": 13, "column": 0 }, "end": { "line": 13, "column": 0 } }, + "13": { "start": { "line": 14, "column": 0 }, "end": { "line": 14, "column": 60 } }, + "14": { "start": { "line": 15, "column": 0 }, "end": { "line": 15, "column": 9 } }, + "15": { "start": { "line": 16, "column": 0 }, "end": { "line": 16, "column": 19 } }, + "16": { "start": { "line": 17, "column": 0 }, "end": { "line": 17, "column": 6 } }, + "17": { "start": { "line": 18, "column": 0 }, "end": { "line": 18, "column": 19 } }, + "18": { "start": { "line": 19, "column": 0 }, "end": { "line": 19, "column": 62 } }, + "19": { "start": { "line": 20, "column": 0 }, "end": { "line": 20, "column": 17 } }, + "20": { "start": { "line": 21, "column": 0 }, "end": { "line": 21, "column": 66 } }, + "21": { "start": { "line": 22, "column": 0 }, "end": { "line": 22, "column": 68 } }, + "22": { "start": { "line": 23, "column": 0 }, "end": { "line": 23, "column": 16 } }, + "23": { "start": { "line": 24, "column": 0 }, "end": { "line": 24, "column": 65 } }, + "24": { "start": { "line": 25, "column": 0 }, "end": { "line": 25, "column": 0 } }, + "25": { "start": { "line": 26, "column": 0 }, "end": { "line": 26, "column": 74 } }, + "26": { "start": { "line": 27, "column": 0 }, "end": { "line": 27, "column": 77 } }, + "27": { "start": { "line": 28, "column": 0 }, "end": { "line": 28, "column": 78 } }, + "28": { "start": { "line": 29, "column": 0 }, "end": { "line": 29, "column": 69 } }, + "29": { "start": { "line": 30, "column": 0 }, "end": { "line": 30, "column": 26 } }, + "30": { "start": { "line": 31, "column": 0 }, "end": { "line": 31, "column": 57 } }, + "31": { "start": { "line": 32, "column": 0 }, "end": { "line": 32, "column": 36 } }, + "32": { "start": { "line": 33, "column": 0 }, "end": { "line": 33, "column": 20 } }, + "33": { "start": { "line": 34, "column": 0 }, "end": { "line": 34, "column": 29 } }, + "34": { "start": { "line": 35, "column": 0 }, "end": { "line": 35, "column": 58 } }, + "35": { "start": { "line": 36, "column": 0 }, "end": { "line": 36, "column": 39 } }, + "36": { "start": { "line": 37, "column": 0 }, "end": { "line": 37, "column": 6 } }, + "37": { "start": { "line": 38, "column": 0 }, "end": { "line": 38, "column": 40 } }, + "38": { "start": { "line": 39, "column": 0 }, "end": { "line": 39, "column": 50 } }, + "39": { "start": { "line": 40, "column": 0 }, "end": { "line": 40, "column": 10 } }, + "40": { "start": { "line": 41, "column": 0 }, "end": { "line": 41, "column": 20 } }, + "41": { "start": { "line": 42, "column": 0 }, "end": { "line": 42, "column": 199 } }, + "42": { "start": { "line": 43, "column": 0 }, "end": { "line": 43, "column": 5 } }, + "43": { "start": { "line": 44, "column": 0 }, "end": { "line": 44, "column": 3 } }, + "44": { "start": { "line": 45, "column": 0 }, "end": { "line": 45, "column": 0 } }, + "45": { "start": { "line": 46, "column": 0 }, "end": { "line": 46, "column": 63 } }, + "46": { "start": { "line": 47, "column": 0 }, "end": { "line": 47, "column": 59 } }, + "47": { "start": { "line": 48, "column": 0 }, "end": { "line": 48, "column": 52 } }, + "48": { "start": { "line": 49, "column": 0 }, "end": { "line": 49, "column": 41 } }, + "49": { "start": { "line": 50, "column": 0 }, "end": { "line": 50, "column": 52 } }, + "50": { "start": { "line": 51, "column": 0 }, "end": { "line": 51, "column": 22 } }, + "51": { "start": { "line": 52, "column": 0 }, "end": { "line": 52, "column": 31 } }, + "52": { "start": { "line": 53, "column": 0 }, "end": { "line": 53, "column": 28 } }, + "53": { "start": { "line": 54, "column": 0 }, "end": { "line": 54, "column": 6 } }, + "54": { "start": { "line": 55, "column": 0 }, "end": { "line": 55, "column": 45 } }, + "55": { "start": { "line": 56, "column": 0 }, "end": { "line": 56, "column": 70 } }, + "56": { "start": { "line": 57, "column": 0 }, "end": { "line": 57, "column": 73 } }, + "57": { "start": { "line": 58, "column": 0 }, "end": { "line": 58, "column": 70 } }, + "58": { "start": { "line": 59, "column": 0 }, "end": { "line": 59, "column": 72 } }, + "59": { "start": { "line": 60, "column": 0 }, "end": { "line": 60, "column": 6 } }, + "60": { "start": { "line": 61, "column": 0 }, "end": { "line": 61, "column": 3 } }, + "61": { "start": { "line": 62, "column": 0 }, "end": { "line": 62, "column": 0 } }, + "62": { "start": { "line": 63, "column": 0 }, "end": { "line": 63, "column": 10 } }, + "63": { "start": { "line": 64, "column": 0 }, "end": { "line": 64, "column": 32 } }, + "64": { "start": { "line": 65, "column": 0 }, "end": { "line": 65, "column": 11 } }, + "65": { "start": { "line": 66, "column": 0 }, "end": { "line": 66, "column": 14 } }, + "66": { "start": { "line": 67, "column": 0 }, "end": { "line": 67, "column": 12 } }, + "67": { "start": { "line": 68, "column": 0 }, "end": { "line": 68, "column": 11 } }, + "68": { "start": { "line": 69, "column": 0 }, "end": { "line": 69, "column": 11 } }, + "69": { "start": { "line": 70, "column": 0 }, "end": { "line": 70, "column": 11 } }, + "70": { "start": { "line": 71, "column": 0 }, "end": { "line": 71, "column": 48 } }, + "71": { "start": { "line": 72, "column": 0 }, "end": { "line": 72, "column": 3 } }, + "72": { "start": { "line": 73, "column": 0 }, "end": { "line": 73, "column": 2 } } + }, + "s": { + "0": 3, + "1": 1, + "2": 1, + "3": 1, + "4": 1, + "5": 1, + "6": 1, + "7": 1, + "8": 1, + "9": 1, + "10": 1, + "11": 1, + "12": 1, + "13": 1, + "14": 3, + "15": 3, + "16": 3, + "17": 3, + "18": 3, + "19": 3, + "20": 3, + "21": 3, + "22": 3, + "23": 3, + "24": 3, + "25": 3, + "26": 3, + "27": 3, + "28": 3, + "29": 3, + "30": 3, + "31": 3, + "32": 3, + "33": 0, + "34": 0, + "35": 0, + "36": 0, + "37": 3, + "38": 3, + "39": 3, + "40": 0, + "41": 0, + "42": 0, + "43": 0, + "44": 3, + "45": 3, + "46": 3, + "47": 3, + "48": 3, + "49": 0, + "50": 0, + "51": 0, + "52": 0, + "53": 0, + "54": 0, + "55": 0, + "56": 0, + "57": 0, + "58": 0, + "59": 0, + "60": 0, + "61": 3, + "62": 3, + "63": 3, + "64": 3, + "65": 3, + "66": 3, + "67": 3, + "68": 3, + "69": 3, + "70": 3, + "71": 3, + "72": 1 + }, + "branchMap": { + "0": { + "type": "branch", + "line": 73, + "loc": { "start": { "line": 73, "column": 1 }, "end": { "line": 73, "column": 2 } }, + "locations": [{ "start": { "line": 73, "column": 1 }, "end": { "line": 73, "column": 2 } }] + }, + "1": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 8 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 8 } }] + }, + "2": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 8 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 8 } }] + }, + "3": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 8 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 8 } }] + }, + "4": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 8 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 8 } }] + }, + "5": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 8 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 8 } }] + }, + "6": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 8 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 8 } }] + }, + "7": { + "type": "branch", + "line": 14, + "loc": { "start": { "line": 14, "column": 53 }, "end": { "line": 73, "column": 1 } }, + "locations": [{ "start": { "line": 14, "column": 53 }, "end": { "line": 73, "column": 1 } }] + }, + "8": { + "type": "branch", + "line": 19, + "loc": { "start": { "line": 19, "column": 22 }, "end": { "line": 19, "column": 62 } }, + "locations": [ + { "start": { "line": 19, "column": 22 }, "end": { "line": 19, "column": 62 } } + ] + }, + "9": { + "type": "branch", + "line": 21, + "loc": { "start": { "line": 21, "column": 22 }, "end": { "line": 21, "column": 66 } }, + "locations": [ + { "start": { "line": 21, "column": 22 }, "end": { "line": 21, "column": 66 } } + ] + }, + "10": { + "type": "branch", + "line": 22, + "loc": { "start": { "line": 22, "column": 35 }, "end": { "line": 22, "column": 68 } }, + "locations": [ + { "start": { "line": 22, "column": 35 }, "end": { "line": 22, "column": 68 } } + ] + }, + "11": { + "type": "branch", + "line": 24, + "loc": { "start": { "line": 24, "column": 22 }, "end": { "line": 24, "column": 65 } }, + "locations": [ + { "start": { "line": 24, "column": 22 }, "end": { "line": 24, "column": 65 } } + ] + }, + "12": { + "type": "branch", + "line": 33, + "loc": { "start": { "line": 33, "column": 19 }, "end": { "line": 38, "column": 13 } }, + "locations": [ + { "start": { "line": 33, "column": 19 }, "end": { "line": 38, "column": 13 } } + ] + }, + "13": { + "type": "branch", + "line": 40, + "loc": { "start": { "line": 40, "column": 2 }, "end": { "line": 44, "column": 3 } }, + "locations": [{ "start": { "line": 40, "column": 2 }, "end": { "line": 44, "column": 3 } }] + }, + "14": { + "type": "branch", + "line": 49, + "loc": { "start": { "line": 49, "column": 6 }, "end": { "line": 49, "column": 40 } }, + "locations": [{ "start": { "line": 49, "column": 6 }, "end": { "line": 49, "column": 40 } }] + }, + "15": { + "type": "branch", + "line": 49, + "loc": { "start": { "line": 49, "column": 40 }, "end": { "line": 61, "column": 3 } }, + "locations": [{ "start": { "line": 49, "column": 40 }, "end": { "line": 61, "column": 3 } }] + }, + "16": { + "type": "branch", + "line": 64, + "loc": { "start": { "line": 64, "column": 8 }, "end": { "line": 64, "column": 32 } }, + "locations": [{ "start": { "line": 64, "column": 8 }, "end": { "line": 64, "column": 32 } }] + }, + "17": { + "type": "branch", + "line": 71, + "loc": { "start": { "line": 71, "column": 8 }, "end": { "line": 71, "column": 44 } }, + "locations": [{ "start": { "line": 71, "column": 8 }, "end": { "line": 71, "column": 44 } }] + } + }, + "b": { + "0": [0], + "1": [1], + "2": [1], + "3": [0], + "4": [3], + "5": [1], + "6": [3], + "7": [3], + "8": [0], + "9": [0], + "10": [0], + "11": [0], + "12": [0], + "13": [0], + "14": [0], + "15": [0], + "16": [0], + "17": [0] + }, + "fnMap": { + "0": { + "name": "__name", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 8 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 8 } }, + "line": 1 + }, + "1": { + "name": "__export", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 8 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 8 } }, + "line": 1 + }, + "2": { + "name": "__copyProps", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 8 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 8 } }, + "line": 1 + }, + "3": { + "name": "get", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 8 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 8 } }, + "line": 1 + }, + "4": { + "name": "__toCommonJS", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 8 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 8 } }, + "line": 1 + }, + "5": { + "name": "createSingletonServices", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 8 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 8 } }, + "line": 1 + } + }, + "f": { "0": 0, "1": 1, "2": 1, "3": 3, "4": 1, "5": 3 } + }, + "/Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/functions/archive-stale-cards.function.ts": { + "path": "/Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/functions/archive-stale-cards.function.ts", + "all": false, + "statementMap": { + "0": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 64 } }, + "1": { "start": { "line": 2, "column": 0 }, "end": { "line": 2, "column": 0 } }, + "2": { "start": { "line": 3, "column": 0 }, "end": { "line": 3, "column": 55 } }, + "3": { "start": { "line": 4, "column": 0 }, "end": { "line": 4, "column": 21 } }, + "4": { "start": { "line": 5, "column": 0 }, "end": { "line": 5, "column": 74 } }, + "5": { "start": { "line": 6, "column": 0 }, "end": { "line": 6, "column": 4 } }, + "6": { "start": { "line": 7, "column": 0 }, "end": { "line": 7, "column": 2 } } + }, + "s": { "0": 1, "1": 1, "2": 1, "3": 1, "4": 0, "5": 0, "6": 1 }, + "branchMap": { + "0": { + "type": "branch", + "line": 7, + "loc": { "start": { "line": 7, "column": 1 }, "end": { "line": 7, "column": 2 } }, + "locations": [{ "start": { "line": 7, "column": 1 }, "end": { "line": 7, "column": 2 } }] + }, + "1": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 37 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 37 } }] + }, + "2": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 37 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 37 } }] + }, + "3": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 37 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 37 } }] + }, + "4": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 37 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 37 } }] + }, + "5": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 37 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 37 } }] + }, + "6": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 37 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 37 } }] + }, + "7": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 37 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 37 } }] + } + }, + "b": { "0": [0], "1": [1], "2": [1], "3": [1], "4": [0], "5": [1], "6": [1], "7": [1] }, + "fnMap": { + "0": { + "name": "__name", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 37 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 37 } }, + "line": 1 + }, + "1": { + "name": "__export", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 37 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 37 } }, + "line": 1 + }, + "2": { + "name": "__copyProps", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 37 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 37 } }, + "line": 1 + }, + "3": { + "name": "get", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 37 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 37 } }, + "line": 1 + }, + "4": { + "name": "__toCommonJS", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 37 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 37 } }, + "line": 1 + }, + "5": { + "name": "archiveStaleCards", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 37 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 37 } }, + "line": 1 + } + }, + "f": { "0": 1, "1": 1, "2": 1, "3": 1, "4": 1, "5": 1 } + }, + "/Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/functions/cards-channel.function.ts": { + "path": "/Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/functions/cards-channel.function.ts", + "all": false, + "statementMap": { + "0": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 8 } }, + "1": { "start": { "line": 2, "column": 0 }, "end": { "line": 2, "column": 19 } }, + "2": { "start": { "line": 3, "column": 0 }, "end": { "line": 3, "column": 29 } }, + "3": { "start": { "line": 4, "column": 0 }, "end": { "line": 4, "column": 32 } }, + "4": { "start": { "line": 5, "column": 0 }, "end": { "line": 5, "column": 15 } }, + "5": { "start": { "line": 6, "column": 0 }, "end": { "line": 6, "column": 0 } }, + "6": { "start": { "line": 7, "column": 0 }, "end": { "line": 7, "column": 3 } }, + "7": { "start": { "line": 8, "column": 0 }, "end": { "line": 8, "column": 70 } }, + "8": { "start": { "line": 9, "column": 0 }, "end": { "line": 9, "column": 69 } }, + "9": { "start": { "line": 10, "column": 0 }, "end": { "line": 10, "column": 20 } }, + "10": { "start": { "line": 11, "column": 0 }, "end": { "line": 11, "column": 3 } }, + "11": { "start": { "line": 12, "column": 0 }, "end": { "line": 12, "column": 58 } }, + "12": { "start": { "line": 13, "column": 0 }, "end": { "line": 13, "column": 15 } }, + "13": { "start": { "line": 14, "column": 0 }, "end": { "line": 14, "column": 15 } }, + "14": { "start": { "line": 15, "column": 0 }, "end": { "line": 15, "column": 50 } }, + "15": { "start": { "line": 16, "column": 0 }, "end": { "line": 16, "column": 74 } }, + "16": { "start": { "line": 17, "column": 0 }, "end": { "line": 17, "column": 53 } }, + "17": { "start": { "line": 18, "column": 0 }, "end": { "line": 18, "column": 64 } }, + "18": { "start": { "line": 19, "column": 0 }, "end": { "line": 19, "column": 2 } }, + "19": { "start": { "line": 20, "column": 0 }, "end": { "line": 20, "column": 0 } }, + "20": { "start": { "line": 21, "column": 0 }, "end": { "line": 21, "column": 63 } }, + "21": { "start": { "line": 22, "column": 0 }, "end": { "line": 22, "column": 41 } }, + "22": { "start": { "line": 23, "column": 0 }, "end": { "line": 23, "column": 75 } }, + "23": { "start": { "line": 24, "column": 0 }, "end": { "line": 24, "column": 4 } }, + "24": { "start": { "line": 25, "column": 0 }, "end": { "line": 25, "column": 1 } }, + "25": { "start": { "line": 26, "column": 0 }, "end": { "line": 26, "column": 0 } }, + "26": { "start": { "line": 27, "column": 0 }, "end": { "line": 27, "column": 3 } }, + "27": { "start": { "line": 28, "column": 0 }, "end": { "line": 28, "column": 74 } }, + "28": { "start": { "line": 29, "column": 0 }, "end": { "line": 29, "column": 68 } }, + "29": { "start": { "line": 30, "column": 0 }, "end": { "line": 30, "column": 77 } }, + "30": { "start": { "line": 31, "column": 0 }, "end": { "line": 31, "column": 27 } }, + "31": { "start": { "line": 32, "column": 0 }, "end": { "line": 32, "column": 3 } }, + "32": { "start": { "line": 33, "column": 0 }, "end": { "line": 33, "column": 80 } }, + "33": { "start": { "line": 34, "column": 0 }, "end": { "line": 34, "column": 47 } }, + "34": { "start": { "line": 35, "column": 0 }, "end": { "line": 35, "column": 32 } }, + "35": { "start": { "line": 36, "column": 0 }, "end": { "line": 36, "column": 4 } }, + "36": { "start": { "line": 37, "column": 0 }, "end": { "line": 37, "column": 1 } }, + "37": { "start": { "line": 38, "column": 0 }, "end": { "line": 38, "column": 0 } }, + "38": { "start": { "line": 39, "column": 0 }, "end": { "line": 39, "column": 3 } }, + "39": { "start": { "line": 40, "column": 0 }, "end": { "line": 40, "column": 77 } }, + "40": { "start": { "line": 41, "column": 0 }, "end": { "line": 41, "column": 75 } }, + "41": { "start": { "line": 42, "column": 0 }, "end": { "line": 42, "column": 77 } }, + "42": { "start": { "line": 43, "column": 0 }, "end": { "line": 43, "column": 2 } }, + "43": { "start": { "line": 44, "column": 0 }, "end": { "line": 44, "column": 59 } }, + "44": { "start": { "line": 45, "column": 0 }, "end": { "line": 45, "column": 79 } }, + "45": { "start": { "line": 46, "column": 0 }, "end": { "line": 46, "column": 70 } }, + "46": { "start": { "line": 47, "column": 0 }, "end": { "line": 47, "column": 76 } }, + "47": { "start": { "line": 48, "column": 0 }, "end": { "line": 48, "column": 73 } }, + "48": { "start": { "line": 49, "column": 0 }, "end": { "line": 49, "column": 38 } }, + "49": { "start": { "line": 50, "column": 0 }, "end": { "line": 50, "column": 2 } }, + "50": { "start": { "line": 51, "column": 0 }, "end": { "line": 51, "column": 76 } }, + "51": { "start": { "line": 52, "column": 0 }, "end": { "line": 52, "column": 67 } }, + "52": { "start": { "line": 53, "column": 0 }, "end": { "line": 53, "column": 75 } }, + "53": { "start": { "line": 54, "column": 0 }, "end": { "line": 54, "column": 74 } }, + "54": { "start": { "line": 55, "column": 0 }, "end": { "line": 55, "column": 3 } }, + "55": { "start": { "line": 56, "column": 0 }, "end": { "line": 56, "column": 50 } }, + "56": { "start": { "line": 57, "column": 0 }, "end": { "line": 57, "column": 36 } }, + "57": { "start": { "line": 58, "column": 0 }, "end": { "line": 58, "column": 30 } }, + "58": { "start": { "line": 59, "column": 0 }, "end": { "line": 59, "column": 49 } }, + "59": { "start": { "line": 60, "column": 0 }, "end": { "line": 60, "column": 46 } }, + "60": { "start": { "line": 61, "column": 0 }, "end": { "line": 61, "column": 44 } }, + "61": { "start": { "line": 62, "column": 0 }, "end": { "line": 62, "column": 2 } }, + "62": { "start": { "line": 63, "column": 0 }, "end": { "line": 63, "column": 0 } }, + "63": { "start": { "line": 64, "column": 0 }, "end": { "line": 64, "column": 50 } }, + "64": { "start": { "line": 65, "column": 0 }, "end": { "line": 65, "column": 24 } }, + "65": { "start": { "line": 66, "column": 0 }, "end": { "line": 66, "column": 22 } }, + "66": { "start": { "line": 67, "column": 0 }, "end": { "line": 67, "column": 48 } }, + "67": { "start": { "line": 68, "column": 0 }, "end": { "line": 68, "column": 36 } }, + "68": { "start": { "line": 69, "column": 0 }, "end": { "line": 69, "column": 37 } }, + "69": { "start": { "line": 70, "column": 0 }, "end": { "line": 70, "column": 2 } }, + "70": { "start": { "line": 71, "column": 0 }, "end": { "line": 71, "column": 0 } }, + "71": { "start": { "line": 72, "column": 0 }, "end": { "line": 72, "column": 52 } }, + "72": { "start": { "line": 73, "column": 0 }, "end": { "line": 73, "column": 24 } }, + "73": { "start": { "line": 74, "column": 0 }, "end": { "line": 74, "column": 19 } }, + "74": { "start": { "line": 75, "column": 0 }, "end": { "line": 75, "column": 50 } }, + "75": { "start": { "line": 76, "column": 0 }, "end": { "line": 76, "column": 22 } }, + "76": { "start": { "line": 77, "column": 0 }, "end": { "line": 77, "column": 26 } }, + "77": { "start": { "line": 78, "column": 0 }, "end": { "line": 78, "column": 2 } } + }, + "s": { + "0": 1, + "1": 1, + "2": 1, + "3": 1, + "4": 1, + "5": 1, + "6": 1, + "7": 1, + "8": 1, + "9": 1, + "10": 1, + "11": 1, + "12": 1, + "13": 1, + "14": 1, + "15": 0, + "16": 0, + "17": 0, + "18": 1, + "19": 1, + "20": 1, + "21": 1, + "22": 0, + "23": 0, + "24": 1, + "25": 1, + "26": 1, + "27": 1, + "28": 1, + "29": 1, + "30": 1, + "31": 1, + "32": 1, + "33": 1, + "34": 0, + "35": 0, + "36": 1, + "37": 1, + "38": 1, + "39": 1, + "40": 1, + "41": 1, + "42": 1, + "43": 1, + "44": 1, + "45": 1, + "46": 1, + "47": 1, + "48": 1, + "49": 1, + "50": 1, + "51": 1, + "52": 1, + "53": 1, + "54": 1, + "55": 1, + "56": 1, + "57": 1, + "58": 1, + "59": 0, + "60": 0, + "61": 1, + "62": 1, + "63": 1, + "64": 1, + "65": 1, + "66": 1, + "67": 0, + "68": 0, + "69": 1, + "70": 1, + "71": 1, + "72": 1, + "73": 1, + "74": 1, + "75": 0, + "76": 0, + "77": 1 + }, + "branchMap": { + "0": { + "type": "branch", + "line": 78, + "loc": { "start": { "line": 78, "column": 1 }, "end": { "line": 78, "column": 2 } }, + "locations": [{ "start": { "line": 78, "column": 1 }, "end": { "line": 78, "column": 2 } }] + }, + "1": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 8 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 8 } }] + }, + "2": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 8 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 8 } }] + }, + "3": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 8 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 8 } }] + }, + "4": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 8 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 8 } }] + }, + "5": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 8 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 8 } }] + }, + "6": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 8 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 8 } }] + }, + "7": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 8 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 8 } }] + }, + "8": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 8 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 8 } }] + }, + "9": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 8 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 8 } }] + }, + "10": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 8 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 8 } }] + }, + "11": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 8 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 8 } }] + }, + "12": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 8 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 8 } }] + }, + "13": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 8 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 8 } }] + } + }, + "b": { + "0": [0], + "1": [1], + "2": [6], + "3": [1], + "4": [0], + "5": [6], + "6": [6], + "7": [1], + "8": [1], + "9": [1], + "10": [1], + "11": [1], + "12": [1], + "13": [1] + }, + "fnMap": { + "0": { + "name": "__export", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 8 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 8 } }, + "line": 1 + }, + "1": { + "name": "__copyProps", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 8 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 8 } }, + "line": 1 + }, + "2": { + "name": "get", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 8 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 8 } }, + "line": 1 + }, + "3": { + "name": "__toCommonJS", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 8 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 8 } }, + "line": 1 + }, + "4": { + "name": "onCardsClearSession", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 8 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 8 } }, + "line": 1 + }, + "5": { + "name": "onCardsConnect", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 8 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 8 } }, + "line": 1 + }, + "6": { + "name": "onCardsDisconnect", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 8 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 8 } }, + "line": 1 + }, + "7": { + "name": "onCardsEcho", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 8 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 8 } }, + "line": 1 + }, + "8": { + "name": "onCardsGetSession", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 8 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 8 } }, + "line": 1 + }, + "9": { + "name": "onCardsSetSession", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 8 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 8 } }, + "line": 1 + } + }, + "f": { "0": 1, "1": 1, "2": 6, "3": 1, "4": 1, "5": 1, "6": 1, "7": 1, "8": 1, "9": 1 } + }, + "/Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/functions/create-card-v1.function.ts": { + "path": "/Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/functions/create-card-v1.function.ts", + "all": false, + "statementMap": { + "0": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 23 } }, + "1": { "start": { "line": 2, "column": 0 }, "end": { "line": 2, "column": 40 } }, + "2": { "start": { "line": 3, "column": 0 }, "end": { "line": 3, "column": 45 } }, + "3": { "start": { "line": 4, "column": 0 }, "end": { "line": 4, "column": 0 } }, + "4": { "start": { "line": 5, "column": 0 }, "end": { "line": 5, "column": 43 } }, + "5": { "start": { "line": 6, "column": 0 }, "end": { "line": 6, "column": 27 } }, + "6": { "start": { "line": 7, "column": 0 }, "end": { "line": 7, "column": 60 } }, + "7": { "start": { "line": 8, "column": 0 }, "end": { "line": 8, "column": 2 } }, + "8": { "start": { "line": 9, "column": 0 }, "end": { "line": 9, "column": 0 } }, + "9": { "start": { "line": 10, "column": 0 }, "end": { "line": 10, "column": 44 } }, + "10": { "start": { "line": 11, "column": 0 }, "end": { "line": 11, "column": 21 } }, + "11": { "start": { "line": 12, "column": 0 }, "end": { "line": 12, "column": 20 } }, + "12": { "start": { "line": 13, "column": 0 }, "end": { "line": 13, "column": 21 } }, + "13": { "start": { "line": 14, "column": 0 }, "end": { "line": 14, "column": 23 } }, + "14": { "start": { "line": 15, "column": 0 }, "end": { "line": 15, "column": 24 } }, + "15": { "start": { "line": 16, "column": 0 }, "end": { "line": 16, "column": 2 } }, + "16": { "start": { "line": 17, "column": 0 }, "end": { "line": 17, "column": 0 } }, + "17": { "start": { "line": 18, "column": 0 }, "end": { "line": 18, "column": 50 } }, + "18": { "start": { "line": 19, "column": 0 }, "end": { "line": 19, "column": 13 } }, + "19": { "start": { "line": 20, "column": 0 }, "end": { "line": 20, "column": 15 } }, + "20": { "start": { "line": 21, "column": 0 }, "end": { "line": 21, "column": 39 } }, + "21": { "start": { "line": 22, "column": 0 }, "end": { "line": 22, "column": 27 } }, + "22": { "start": { "line": 23, "column": 0 }, "end": { "line": 23, "column": 29 } }, + "23": { "start": { "line": 24, "column": 0 }, "end": { "line": 24, "column": 72 } }, + "24": { "start": { "line": 25, "column": 0 }, "end": { "line": 25, "column": 31 } }, + "25": { "start": { "line": 26, "column": 0 }, "end": { "line": 26, "column": 46 } }, + "26": { "start": { "line": 27, "column": 0 }, "end": { "line": 27, "column": 28 } }, + "27": { "start": { "line": 28, "column": 0 }, "end": { "line": 28, "column": 31 } }, + "28": { "start": { "line": 29, "column": 0 }, "end": { "line": 29, "column": 63 } }, + "29": { "start": { "line": 30, "column": 0 }, "end": { "line": 30, "column": 35 } }, + "30": { "start": { "line": 31, "column": 0 }, "end": { "line": 31, "column": 25 } }, + "31": { "start": { "line": 32, "column": 0 }, "end": { "line": 32, "column": 40 } }, + "32": { "start": { "line": 33, "column": 0 }, "end": { "line": 33, "column": 106 } }, + "33": { "start": { "line": 34, "column": 0 }, "end": { "line": 34, "column": 98 } }, + "34": { "start": { "line": 35, "column": 0 }, "end": { "line": 35, "column": 54 } }, + "35": { "start": { "line": 36, "column": 0 }, "end": { "line": 36, "column": 57 } }, + "36": { "start": { "line": 37, "column": 0 }, "end": { "line": 37, "column": 4 } }, + "37": { "start": { "line": 38, "column": 0 }, "end": { "line": 38, "column": 2 } } + }, + "s": { + "0": 1, + "1": 1, + "2": 1, + "3": 1, + "4": 1, + "5": 1, + "6": 1, + "7": 1, + "8": 1, + "9": 1, + "10": 1, + "11": 1, + "12": 1, + "13": 1, + "14": 1, + "15": 1, + "16": 1, + "17": 1, + "18": 1, + "19": 1, + "20": 1, + "21": 1, + "22": 1, + "23": 1, + "24": 0, + "25": 0, + "26": 0, + "27": 0, + "28": 0, + "29": 0, + "30": 0, + "31": 0, + "32": 0, + "33": 0, + "34": 0, + "35": 0, + "36": 0, + "37": 1 + }, + "branchMap": { + "0": { + "type": "branch", + "line": 38, + "loc": { "start": { "line": 38, "column": 1 }, "end": { "line": 38, "column": 2 } }, + "locations": [{ "start": { "line": 38, "column": 1 }, "end": { "line": 38, "column": 2 } }] + }, + "1": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "2": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "3": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "4": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "5": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "6": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "7": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "8": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "9": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + } + }, + "b": { + "0": [0], + "1": [1], + "2": [1], + "3": [3], + "4": [1], + "5": [0], + "6": [3], + "7": [1], + "8": [1], + "9": [1] + }, + "fnMap": { + "0": { + "name": "__name", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + }, + "1": { + "name": "__export", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + }, + "2": { + "name": "__copyProps", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + }, + "3": { + "name": "get", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + }, + "4": { + "name": "__toCommonJS", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + }, + "5": { + "name": "CreateCardV1Input", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + }, + "6": { + "name": "CreateCardV1Output", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + }, + "7": { + "name": "createCardV1", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + } + }, + "f": { "0": 1, "1": 1, "2": 1, "3": 1, "4": 1, "5": 0, "6": 0, "7": 1 } + }, + "/Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/functions/create-card.function.ts": { + "path": "/Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/functions/create-card.function.ts", + "all": false, + "statementMap": { + "0": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 23 } }, + "1": { "start": { "line": 2, "column": 0 }, "end": { "line": 2, "column": 40 } }, + "2": { "start": { "line": 3, "column": 0 }, "end": { "line": 3, "column": 45 } }, + "3": { "start": { "line": 4, "column": 0 }, "end": { "line": 4, "column": 0 } }, + "4": { "start": { "line": 5, "column": 0 }, "end": { "line": 5, "column": 41 } }, + "5": { "start": { "line": 6, "column": 0 }, "end": { "line": 6, "column": 27 } }, + "6": { "start": { "line": 7, "column": 0 }, "end": { "line": 7, "column": 60 } }, + "7": { "start": { "line": 8, "column": 0 }, "end": { "line": 8, "column": 75 } }, + "8": { "start": { "line": 9, "column": 0 }, "end": { "line": 9, "column": 2 } }, + "9": { "start": { "line": 10, "column": 0 }, "end": { "line": 10, "column": 0 } }, + "10": { "start": { "line": 11, "column": 0 }, "end": { "line": 11, "column": 42 } }, + "11": { "start": { "line": 12, "column": 0 }, "end": { "line": 12, "column": 21 } }, + "12": { "start": { "line": 13, "column": 0 }, "end": { "line": 13, "column": 20 } }, + "13": { "start": { "line": 14, "column": 0 }, "end": { "line": 14, "column": 21 } }, + "14": { "start": { "line": 15, "column": 0 }, "end": { "line": 15, "column": 23 } }, + "15": { "start": { "line": 16, "column": 0 }, "end": { "line": 16, "column": 24 } }, + "16": { "start": { "line": 17, "column": 0 }, "end": { "line": 17, "column": 2 } }, + "17": { "start": { "line": 18, "column": 0 }, "end": { "line": 18, "column": 0 } }, + "18": { "start": { "line": 19, "column": 0 }, "end": { "line": 19, "column": 48 } }, + "19": { "start": { "line": 20, "column": 0 }, "end": { "line": 20, "column": 15 } }, + "20": { "start": { "line": 21, "column": 0 }, "end": { "line": 21, "column": 39 } }, + "21": { "start": { "line": 22, "column": 0 }, "end": { "line": 22, "column": 25 } }, + "22": { "start": { "line": 23, "column": 0 }, "end": { "line": 23, "column": 27 } }, + "23": { "start": { "line": 24, "column": 0 }, "end": { "line": 24, "column": 72 } }, + "24": { "start": { "line": 25, "column": 0 }, "end": { "line": 25, "column": 31 } }, + "25": { "start": { "line": 26, "column": 0 }, "end": { "line": 26, "column": 46 } }, + "26": { "start": { "line": 27, "column": 0 }, "end": { "line": 27, "column": 0 } }, + "27": { "start": { "line": 28, "column": 0 }, "end": { "line": 28, "column": 28 } }, + "28": { "start": { "line": 29, "column": 0 }, "end": { "line": 29, "column": 31 } }, + "29": { "start": { "line": 30, "column": 0 }, "end": { "line": 30, "column": 63 } }, + "30": { "start": { "line": 31, "column": 0 }, "end": { "line": 31, "column": 35 } }, + "31": { "start": { "line": 32, "column": 0 }, "end": { "line": 32, "column": 25 } }, + "32": { "start": { "line": 33, "column": 0 }, "end": { "line": 33, "column": 40 } }, + "33": { "start": { "line": 34, "column": 0 }, "end": { "line": 34, "column": 0 } }, + "34": { "start": { "line": 35, "column": 0 }, "end": { "line": 35, "column": 16 } }, + "35": { "start": { "line": 36, "column": 0 }, "end": { "line": 36, "column": 31 } }, + "36": { "start": { "line": 37, "column": 0 }, "end": { "line": 37, "column": 61 } }, + "37": { "start": { "line": 38, "column": 0 }, "end": { "line": 38, "column": 16 } }, + "38": { "start": { "line": 39, "column": 0 }, "end": { "line": 39, "column": 0 } }, + "39": { "start": { "line": 40, "column": 0 }, "end": { "line": 40, "column": 98 } }, + "40": { "start": { "line": 41, "column": 0 }, "end": { "line": 41, "column": 0 } }, + "41": { "start": { "line": 42, "column": 0 }, "end": { "line": 42, "column": 51 } }, + "42": { "start": { "line": 43, "column": 0 }, "end": { "line": 43, "column": 57 } }, + "43": { "start": { "line": 44, "column": 0 }, "end": { "line": 44, "column": 4 } }, + "44": { "start": { "line": 45, "column": 0 }, "end": { "line": 45, "column": 2 } } + }, + "s": { + "0": 1, + "1": 1, + "2": 1, + "3": 1, + "4": 1, + "5": 1, + "6": 1, + "7": 1, + "8": 1, + "9": 1, + "10": 1, + "11": 1, + "12": 1, + "13": 1, + "14": 1, + "15": 1, + "16": 1, + "17": 1, + "18": 1, + "19": 1, + "20": 1, + "21": 1, + "22": 1, + "23": 1, + "24": 2, + "25": 2, + "26": 2, + "27": 2, + "28": 2, + "29": 2, + "30": 2, + "31": 2, + "32": 2, + "33": 2, + "34": 2, + "35": 2, + "36": 2, + "37": 2, + "38": 2, + "39": 2, + "40": 2, + "41": 2, + "42": 2, + "43": 2, + "44": 1 + }, + "branchMap": { + "0": { + "type": "branch", + "line": 45, + "loc": { "start": { "line": 45, "column": 1 }, "end": { "line": 45, "column": 2 } }, + "locations": [{ "start": { "line": 45, "column": 1 }, "end": { "line": 45, "column": 2 } }] + }, + "1": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "2": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "3": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "4": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "5": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "6": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "7": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "8": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "9": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "10": { + "type": "branch", + "line": 24, + "loc": { "start": { "line": 24, "column": 8 }, "end": { "line": 44, "column": 4 } }, + "locations": [{ "start": { "line": 24, "column": 8 }, "end": { "line": 44, "column": 4 } }] + }, + "11": { + "type": "branch", + "line": 33, + "loc": { "start": { "line": 33, "column": 27 }, "end": { "line": 33, "column": 39 } }, + "locations": [ + { "start": { "line": 33, "column": 27 }, "end": { "line": 33, "column": 39 } } + ] + }, + "12": { + "type": "branch", + "line": 30, + "loc": { "start": { "line": 30, "column": 14 }, "end": { "line": 30, "column": 62 } }, + "locations": [ + { "start": { "line": 30, "column": 14 }, "end": { "line": 30, "column": 62 } } + ] + } + }, + "b": { + "0": [0], + "1": [1], + "2": [1], + "3": [3], + "4": [1], + "5": [0], + "6": [3], + "7": [3], + "8": [1], + "9": [3], + "10": [2], + "11": [0], + "12": [2] + }, + "fnMap": { + "0": { + "name": "__name", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + }, + "1": { + "name": "__export", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + }, + "2": { + "name": "__copyProps", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + }, + "3": { + "name": "get", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + }, + "4": { + "name": "__toCommonJS", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + }, + "5": { + "name": "CreateCardInput", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + }, + "6": { + "name": "CreateCardOutput", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + }, + "7": { + "name": "createCard", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + } + }, + "f": { "0": 1, "1": 1, "2": 1, "3": 3, "4": 1, "5": 0, "6": 0, "7": 3 } + }, + "/Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/functions/enrich-card.function.ts": { + "path": "/Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/functions/enrich-card.function.ts", + "all": false, + "statementMap": { + "0": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 23 } }, + "1": { "start": { "line": 2, "column": 0 }, "end": { "line": 2, "column": 45 } }, + "2": { "start": { "line": 3, "column": 0 }, "end": { "line": 3, "column": 0 } }, + "3": { "start": { "line": 4, "column": 0 }, "end": { "line": 4, "column": 41 } }, + "4": { "start": { "line": 5, "column": 0 }, "end": { "line": 5, "column": 27 } }, + "5": { "start": { "line": 6, "column": 0 }, "end": { "line": 6, "column": 60 } }, + "6": { "start": { "line": 7, "column": 0 }, "end": { "line": 7, "column": 2 } }, + "7": { "start": { "line": 8, "column": 0 }, "end": { "line": 8, "column": 0 } }, + "8": { "start": { "line": 9, "column": 0 }, "end": { "line": 9, "column": 42 } }, + "9": { "start": { "line": 10, "column": 0 }, "end": { "line": 10, "column": 20 } }, + "10": { "start": { "line": 11, "column": 0 }, "end": { "line": 11, "column": 21 } }, + "11": { "start": { "line": 12, "column": 0 }, "end": { "line": 12, "column": 46 } }, + "12": { "start": { "line": 13, "column": 0 }, "end": { "line": 13, "column": 30 } }, + "13": { "start": { "line": 14, "column": 0 }, "end": { "line": 14, "column": 2 } }, + "14": { "start": { "line": 15, "column": 0 }, "end": { "line": 15, "column": 0 } }, + "15": { "start": { "line": 16, "column": 0 }, "end": { "line": 16, "column": 48 } }, + "16": { "start": { "line": 17, "column": 0 }, "end": { "line": 17, "column": 25 } }, + "17": { "start": { "line": 18, "column": 0 }, "end": { "line": 18, "column": 27 } }, + "18": { "start": { "line": 19, "column": 0 }, "end": { "line": 19, "column": 50 } }, + "19": { "start": { "line": 20, "column": 0 }, "end": { "line": 20, "column": 37 } }, + "20": { "start": { "line": 21, "column": 0 }, "end": { "line": 21, "column": 54 } }, + "21": { "start": { "line": 22, "column": 0 }, "end": { "line": 22, "column": 77 } }, + "22": { "start": { "line": 23, "column": 0 }, "end": { "line": 23, "column": 83 } }, + "23": { "start": { "line": 24, "column": 0 }, "end": { "line": 24, "column": 31 } }, + "24": { "start": { "line": 25, "column": 0 }, "end": { "line": 25, "column": 68 } }, + "25": { "start": { "line": 26, "column": 0 }, "end": { "line": 26, "column": 68 } }, + "26": { "start": { "line": 27, "column": 0 }, "end": { "line": 27, "column": 55 } }, + "27": { "start": { "line": 28, "column": 0 }, "end": { "line": 28, "column": 46 } }, + "28": { "start": { "line": 29, "column": 0 }, "end": { "line": 29, "column": 4 } }, + "29": { "start": { "line": 30, "column": 0 }, "end": { "line": 30, "column": 2 } } + }, + "s": { + "0": 1, + "1": 1, + "2": 1, + "3": 1, + "4": 1, + "5": 1, + "6": 1, + "7": 1, + "8": 1, + "9": 1, + "10": 1, + "11": 1, + "12": 1, + "13": 1, + "14": 1, + "15": 1, + "16": 1, + "17": 1, + "18": 1, + "19": 0, + "20": 0, + "21": 0, + "22": 0, + "23": 0, + "24": 0, + "25": 0, + "26": 0, + "27": 0, + "28": 0, + "29": 1 + }, + "branchMap": { + "0": { + "type": "branch", + "line": 30, + "loc": { "start": { "line": 30, "column": 1 }, "end": { "line": 30, "column": 2 } }, + "locations": [{ "start": { "line": 30, "column": 1 }, "end": { "line": 30, "column": 2 } }] + }, + "1": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "2": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "3": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "4": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "5": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "6": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "7": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "8": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "9": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + } + }, + "b": { + "0": [0], + "1": [1], + "2": [1], + "3": [3], + "4": [1], + "5": [0], + "6": [3], + "7": [1], + "8": [1], + "9": [1] + }, + "fnMap": { + "0": { + "name": "__name", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + }, + "1": { + "name": "__export", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + }, + "2": { + "name": "__copyProps", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + }, + "3": { + "name": "get", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + }, + "4": { + "name": "__toCommonJS", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + }, + "5": { + "name": "EnrichCardInput", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + }, + "6": { + "name": "EnrichCardOutput", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + }, + "7": { + "name": "enrichCard", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + } + }, + "f": { "0": 1, "1": 1, "2": 1, "3": 1, "4": 1, "5": 0, "6": 0, "7": 1 } + }, + "/Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/functions/get-card-file-upload-url.function.ts": { + "path": "/Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/functions/get-card-file-upload-url.function.ts", + "all": false, + "statementMap": { + "0": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 23 } }, + "1": { "start": { "line": 2, "column": 0 }, "end": { "line": 2, "column": 45 } }, + "2": { "start": { "line": 3, "column": 0 }, "end": { "line": 3, "column": 0 } }, + "3": { "start": { "line": 4, "column": 0 }, "end": { "line": 4, "column": 51 } }, + "4": { "start": { "line": 5, "column": 0 }, "end": { "line": 5, "column": 28 } }, + "5": { "start": { "line": 6, "column": 0 }, "end": { "line": 6, "column": 30 } }, + "6": { "start": { "line": 7, "column": 0 }, "end": { "line": 7, "column": 33 } }, + "7": { "start": { "line": 8, "column": 0 }, "end": { "line": 8, "column": 2 } }, + "8": { "start": { "line": 9, "column": 0 }, "end": { "line": 9, "column": 0 } }, + "9": { "start": { "line": 10, "column": 0 }, "end": { "line": 10, "column": 52 } }, + "10": { "start": { "line": 11, "column": 0 }, "end": { "line": 11, "column": 24 } }, + "11": { "start": { "line": 12, "column": 0 }, "end": { "line": 12, "column": 22 } }, + "12": { "start": { "line": 13, "column": 0 }, "end": { "line": 13, "column": 24 } }, + "13": { "start": { "line": 14, "column": 0 }, "end": { "line": 14, "column": 51 } }, + "14": { "start": { "line": 15, "column": 0 }, "end": { "line": 15, "column": 61 } }, + "15": { "start": { "line": 16, "column": 0 }, "end": { "line": 16, "column": 2 } }, + "16": { "start": { "line": 17, "column": 0 }, "end": { "line": 17, "column": 0 } }, + "17": { "start": { "line": 18, "column": 0 }, "end": { "line": 18, "column": 58 } }, + "18": { "start": { "line": 19, "column": 0 }, "end": { "line": 19, "column": 15 } }, + "19": { "start": { "line": 20, "column": 0 }, "end": { "line": 20, "column": 79 } }, + "20": { "start": { "line": 21, "column": 0 }, "end": { "line": 21, "column": 35 } }, + "21": { "start": { "line": 22, "column": 0 }, "end": { "line": 22, "column": 37 } }, + "22": { "start": { "line": 23, "column": 0 }, "end": { "line": 23, "column": 67 } }, + "23": { "start": { "line": 24, "column": 0 }, "end": { "line": 24, "column": 19 } }, + "24": { "start": { "line": 25, "column": 0 }, "end": { "line": 25, "column": 55 } }, + "25": { "start": { "line": 26, "column": 0 }, "end": { "line": 26, "column": 5 } }, + "26": { "start": { "line": 27, "column": 0 }, "end": { "line": 27, "column": 43 } }, + "27": { "start": { "line": 28, "column": 0 }, "end": { "line": 28, "column": 83 } }, + "28": { "start": { "line": 29, "column": 0 }, "end": { "line": 29, "column": 22 } }, + "29": { "start": { "line": 30, "column": 0 }, "end": { "line": 30, "column": 14 } }, + "30": { "start": { "line": 31, "column": 0 }, "end": { "line": 31, "column": 18 } }, + "31": { "start": { "line": 32, "column": 0 }, "end": { "line": 32, "column": 6 } }, + "32": { "start": { "line": 33, "column": 0 }, "end": { "line": 33, "column": 12 } }, + "33": { "start": { "line": 34, "column": 0 }, "end": { "line": 34, "column": 16 } }, + "34": { "start": { "line": 35, "column": 0 }, "end": { "line": 35, "column": 14 } }, + "35": { "start": { "line": 36, "column": 0 }, "end": { "line": 36, "column": 64 } }, + "36": { "start": { "line": 37, "column": 0 }, "end": { "line": 37, "column": 19 } }, + "37": { "start": { "line": 38, "column": 0 }, "end": { "line": 38, "column": 20 } }, + "38": { "start": { "line": 39, "column": 0 }, "end": { "line": 39, "column": 5 } }, + "39": { "start": { "line": 40, "column": 0 }, "end": { "line": 40, "column": 4 } }, + "40": { "start": { "line": 41, "column": 0 }, "end": { "line": 41, "column": 2 } } + }, + "s": { + "0": 1, + "1": 1, + "2": 1, + "3": 1, + "4": 1, + "5": 1, + "6": 1, + "7": 1, + "8": 1, + "9": 1, + "10": 1, + "11": 1, + "12": 1, + "13": 1, + "14": 1, + "15": 1, + "16": 1, + "17": 1, + "18": 1, + "19": 1, + "20": 1, + "21": 1, + "22": 1, + "23": 0, + "24": 0, + "25": 0, + "26": 0, + "27": 0, + "28": 0, + "29": 0, + "30": 0, + "31": 0, + "32": 0, + "33": 0, + "34": 0, + "35": 0, + "36": 0, + "37": 0, + "38": 0, + "39": 0, + "40": 1 + }, + "branchMap": { + "0": { + "type": "branch", + "line": 41, + "loc": { "start": { "line": 41, "column": 1 }, "end": { "line": 41, "column": 2 } }, + "locations": [{ "start": { "line": 41, "column": 1 }, "end": { "line": 41, "column": 2 } }] + }, + "1": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "2": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "3": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "4": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "5": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "6": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "7": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "8": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "9": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + } + }, + "b": { + "0": [0], + "1": [1], + "2": [1], + "3": [3], + "4": [1], + "5": [0], + "6": [3], + "7": [2], + "8": [1], + "9": [2] + }, + "fnMap": { + "0": { + "name": "__name", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + }, + "1": { + "name": "__export", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + }, + "2": { + "name": "__copyProps", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + }, + "3": { + "name": "get", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + }, + "4": { + "name": "__toCommonJS", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + }, + "5": { + "name": "GetCardFileUploadUrlInput", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + }, + "6": { + "name": "GetCardFileUploadUrlOutput", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + }, + "7": { + "name": "getCardFileUploadUrl", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + } + }, + "f": { "0": 1, "1": 1, "2": 1, "3": 2, "4": 1, "5": 0, "6": 0, "7": 2 } + }, + "/Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/functions/kanban.agent.ts": { + "path": "/Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/functions/kanban.agent.ts", + "all": false, + "statementMap": { + "0": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 68 } }, + "1": { "start": { "line": 2, "column": 0 }, "end": { "line": 2, "column": 47 } }, + "2": { "start": { "line": 3, "column": 0 }, "end": { "line": 3, "column": 0 } }, + "3": { "start": { "line": 4, "column": 0 }, "end": { "line": 4, "column": 41 } }, + "4": { "start": { "line": 5, "column": 0 }, "end": { "line": 5, "column": 23 } }, + "5": { "start": { "line": 6, "column": 0 }, "end": { "line": 6, "column": 88 } }, + "6": { "start": { "line": 7, "column": 0 }, "end": { "line": 7, "column": 7 } }, + "7": { "start": { "line": 8, "column": 0 }, "end": { "line": 8, "column": 198 } }, + "8": { "start": { "line": 9, "column": 0 }, "end": { "line": 9, "column": 29 } }, + "9": { "start": { "line": 10, "column": 0 }, "end": { "line": 10, "column": 53 } }, + "10": { "start": { "line": 11, "column": 0 }, "end": { "line": 11, "column": 14 } }, + "11": { "start": { "line": 12, "column": 0 }, "end": { "line": 12, "column": 21 } }, + "12": { "start": { "line": 13, "column": 0 }, "end": { "line": 13, "column": 2 } } + }, + "s": { + "0": 1, + "1": 1, + "2": 1, + "3": 1, + "4": 1, + "5": 1, + "6": 1, + "7": 1, + "8": 1, + "9": 1, + "10": 1, + "11": 1, + "12": 1 + }, + "branchMap": { + "0": { + "type": "branch", + "line": 13, + "loc": { "start": { "line": 13, "column": 1 }, "end": { "line": 13, "column": 2 } }, + "locations": [{ "start": { "line": 13, "column": 1 }, "end": { "line": 13, "column": 2 } }] + }, + "1": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 29 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 29 } }] + }, + "2": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 29 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 29 } }] + }, + "3": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 29 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 29 } }] + }, + "4": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 29 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 29 } }] + }, + "5": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 29 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 29 } }] + }, + "6": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 29 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 29 } }] + } + }, + "b": { "0": [0], "1": [1], "2": [1], "3": [0], "4": [1], "5": [1], "6": [1] }, + "fnMap": { + "0": { + "name": "__export", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 29 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 29 } }, + "line": 1 + }, + "1": { + "name": "__copyProps", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 29 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 29 } }, + "line": 1 + }, + "2": { + "name": "get", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 29 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 29 } }, + "line": 1 + }, + "3": { + "name": "__toCommonJS", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 29 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 29 } }, + "line": 1 + }, + "4": { + "name": "kanbanAgent", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 29 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 29 } }, + "line": 1 + } + }, + "f": { "0": 1, "1": 1, "2": 1, "3": 1, "4": 1 } + }, + "/Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/functions/list-cards-v1.function.ts": { + "path": "/Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/functions/list-cards-v1.function.ts", + "all": false, + "statementMap": { + "0": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 23 } }, + "1": { "start": { "line": 2, "column": 0 }, "end": { "line": 2, "column": 45 } }, + "2": { "start": { "line": 3, "column": 0 }, "end": { "line": 3, "column": 0 } }, + "3": { "start": { "line": 4, "column": 0 }, "end": { "line": 4, "column": 43 } }, + "4": { "start": { "line": 5, "column": 0 }, "end": { "line": 5, "column": 27 } }, + "5": { "start": { "line": 6, "column": 0 }, "end": { "line": 6, "column": 23 } }, + "6": { "start": { "line": 7, "column": 0 }, "end": { "line": 7, "column": 22 } }, + "7": { "start": { "line": 8, "column": 0 }, "end": { "line": 8, "column": 23 } }, + "8": { "start": { "line": 9, "column": 0 }, "end": { "line": 9, "column": 25 } }, + "9": { "start": { "line": 10, "column": 0 }, "end": { "line": 10, "column": 26 } }, + "10": { "start": { "line": 11, "column": 0 }, "end": { "line": 11, "column": 6 } }, + "11": { "start": { "line": 12, "column": 0 }, "end": { "line": 12, "column": 2 } }, + "12": { "start": { "line": 13, "column": 0 }, "end": { "line": 13, "column": 0 } }, + "13": { "start": { "line": 14, "column": 0 }, "end": { "line": 14, "column": 49 } }, + "14": { "start": { "line": 15, "column": 0 }, "end": { "line": 15, "column": 13 } }, + "15": { "start": { "line": 16, "column": 0 }, "end": { "line": 16, "column": 15 } }, + "16": { "start": { "line": 17, "column": 0 }, "end": { "line": 17, "column": 40 } }, + "17": { "start": { "line": 18, "column": 0 }, "end": { "line": 18, "column": 28 } }, + "18": { "start": { "line": 19, "column": 0 }, "end": { "line": 19, "column": 39 } }, + "19": { "start": { "line": 20, "column": 0 }, "end": { "line": 20, "column": 104 } }, + "20": { "start": { "line": 21, "column": 0 }, "end": { "line": 21, "column": 54 } }, + "21": { "start": { "line": 22, "column": 0 }, "end": { "line": 22, "column": 20 } }, + "22": { "start": { "line": 23, "column": 0 }, "end": { "line": 23, "column": 4 } }, + "23": { "start": { "line": 24, "column": 0 }, "end": { "line": 24, "column": 2 } } + }, + "s": { + "0": 1, + "1": 1, + "2": 1, + "3": 1, + "4": 1, + "5": 1, + "6": 1, + "7": 1, + "8": 1, + "9": 1, + "10": 1, + "11": 1, + "12": 1, + "13": 1, + "14": 1, + "15": 1, + "16": 1, + "17": 1, + "18": 1, + "19": 0, + "20": 0, + "21": 0, + "22": 0, + "23": 1 + }, + "branchMap": { + "0": { + "type": "branch", + "line": 24, + "loc": { "start": { "line": 24, "column": 1 }, "end": { "line": 24, "column": 2 } }, + "locations": [{ "start": { "line": 24, "column": 1 }, "end": { "line": 24, "column": 2 } }] + }, + "1": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "2": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "3": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "4": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "5": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "6": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "7": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "8": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "9": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + } + }, + "b": { + "0": [0], + "1": [1], + "2": [1], + "3": [2], + "4": [1], + "5": [0], + "6": [2], + "7": [1], + "8": [1], + "9": [1] + }, + "fnMap": { + "0": { + "name": "__name", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + }, + "1": { + "name": "__export", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + }, + "2": { + "name": "__copyProps", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + }, + "3": { + "name": "get", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + }, + "4": { + "name": "__toCommonJS", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + }, + "5": { + "name": "ListCardsV1Output", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + }, + "6": { + "name": "listCardsV1", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + } + }, + "f": { "0": 1, "1": 1, "2": 1, "3": 1, "4": 1, "5": 0, "6": 1 } + }, + "/Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/functions/list-cards.function.ts": { + "path": "/Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/functions/list-cards.function.ts", + "all": false, + "statementMap": { + "0": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 23 } }, + "1": { "start": { "line": 2, "column": 0 }, "end": { "line": 2, "column": 45 } }, + "2": { "start": { "line": 3, "column": 0 }, "end": { "line": 3, "column": 0 } }, + "3": { "start": { "line": 4, "column": 0 }, "end": { "line": 4, "column": 40 } }, + "4": { "start": { "line": 5, "column": 0 }, "end": { "line": 5, "column": 55 } }, + "5": { "start": { "line": 6, "column": 0 }, "end": { "line": 6, "column": 2 } }, + "6": { "start": { "line": 7, "column": 0 }, "end": { "line": 7, "column": 41 } }, + "7": { "start": { "line": 8, "column": 0 }, "end": { "line": 8, "column": 27 } }, + "8": { "start": { "line": 9, "column": 0 }, "end": { "line": 9, "column": 23 } }, + "9": { "start": { "line": 10, "column": 0 }, "end": { "line": 10, "column": 22 } }, + "10": { "start": { "line": 11, "column": 0 }, "end": { "line": 11, "column": 23 } }, + "11": { "start": { "line": 12, "column": 0 }, "end": { "line": 12, "column": 25 } }, + "12": { "start": { "line": 13, "column": 0 }, "end": { "line": 13, "column": 26 } }, + "13": { "start": { "line": 14, "column": 0 }, "end": { "line": 14, "column": 6 } }, + "14": { "start": { "line": 15, "column": 0 }, "end": { "line": 15, "column": 2 } }, + "15": { "start": { "line": 16, "column": 0 }, "end": { "line": 16, "column": 0 } }, + "16": { "start": { "line": 17, "column": 0 }, "end": { "line": 17, "column": 47 } }, + "17": { "start": { "line": 18, "column": 0 }, "end": { "line": 18, "column": 15 } }, + "18": { "start": { "line": 19, "column": 0 }, "end": { "line": 19, "column": 71 } }, + "19": { "start": { "line": 20, "column": 0 }, "end": { "line": 20, "column": 24 } }, + "20": { "start": { "line": 21, "column": 0 }, "end": { "line": 21, "column": 26 } }, + "21": { "start": { "line": 22, "column": 0 }, "end": { "line": 22, "column": 46 } }, + "22": { "start": { "line": 23, "column": 0 }, "end": { "line": 23, "column": 32 } }, + "23": { "start": { "line": 24, "column": 0 }, "end": { "line": 24, "column": 86 } }, + "24": { "start": { "line": 25, "column": 0 }, "end": { "line": 25, "column": 58 } }, + "25": { "start": { "line": 26, "column": 0 }, "end": { "line": 26, "column": 39 } }, + "26": { "start": { "line": 27, "column": 0 }, "end": { "line": 27, "column": 51 } }, + "27": { "start": { "line": 28, "column": 0 }, "end": { "line": 28, "column": 20 } }, + "28": { "start": { "line": 29, "column": 0 }, "end": { "line": 29, "column": 4 } }, + "29": { "start": { "line": 30, "column": 0 }, "end": { "line": 30, "column": 2 } } + }, + "s": { + "0": 1, + "1": 1, + "2": 1, + "3": 1, + "4": 1, + "5": 1, + "6": 1, + "7": 1, + "8": 1, + "9": 1, + "10": 1, + "11": 1, + "12": 1, + "13": 1, + "14": 1, + "15": 1, + "16": 1, + "17": 1, + "18": 1, + "19": 1, + "20": 1, + "21": 1, + "22": 2, + "23": 2, + "24": 2, + "25": 2, + "26": 2, + "27": 2, + "28": 2, + "29": 1 + }, + "branchMap": { + "0": { + "type": "branch", + "line": 30, + "loc": { "start": { "line": 30, "column": 1 }, "end": { "line": 30, "column": 2 } }, + "locations": [{ "start": { "line": 30, "column": 1 }, "end": { "line": 30, "column": 2 } }] + }, + "1": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "2": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "3": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "4": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "5": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "6": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "7": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "8": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "9": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "10": { + "type": "branch", + "line": 22, + "loc": { "start": { "line": 22, "column": 8 }, "end": { "line": 29, "column": 4 } }, + "locations": [{ "start": { "line": 22, "column": 8 }, "end": { "line": 29, "column": 4 } }] + }, + "11": { + "type": "branch", + "line": 23, + "loc": { "start": { "line": 23, "column": 19 }, "end": { "line": 23, "column": 32 } }, + "locations": [ + { "start": { "line": 23, "column": 19 }, "end": { "line": 23, "column": 32 } } + ] + }, + "12": { + "type": "branch", + "line": 25, + "loc": { "start": { "line": 25, "column": 16 }, "end": { "line": 25, "column": 58 } }, + "locations": [ + { "start": { "line": 25, "column": 16 }, "end": { "line": 25, "column": 58 } } + ] + } + }, + "b": { + "0": [0], + "1": [1], + "2": [1], + "3": [3], + "4": [1], + "5": [0], + "6": [3], + "7": [3], + "8": [1], + "9": [3], + "10": [2], + "11": [0], + "12": [0] + }, + "fnMap": { + "0": { + "name": "__name", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + }, + "1": { + "name": "__export", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + }, + "2": { + "name": "__copyProps", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + }, + "3": { + "name": "get", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + }, + "4": { + "name": "__toCommonJS", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + }, + "5": { + "name": "ListCardsInput", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + }, + "6": { + "name": "ListCardsOutput", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + }, + "7": { + "name": "listCards", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + } + }, + "f": { "0": 1, "1": 1, "2": 1, "3": 3, "4": 1, "5": 0, "6": 0, "7": 3 } + }, + "/Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/functions/notify-card-created.function.ts": { + "path": "/Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/functions/notify-card-created.function.ts", + "all": false, + "statementMap": { + "0": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 23 } }, + "1": { "start": { "line": 2, "column": 0 }, "end": { "line": 2, "column": 45 } }, + "2": { "start": { "line": 3, "column": 0 }, "end": { "line": 3, "column": 0 } }, + "3": { "start": { "line": 4, "column": 0 }, "end": { "line": 4, "column": 48 } }, + "4": { "start": { "line": 5, "column": 0 }, "end": { "line": 5, "column": 21 } }, + "5": { "start": { "line": 6, "column": 0 }, "end": { "line": 6, "column": 20 } }, + "6": { "start": { "line": 7, "column": 0 }, "end": { "line": 7, "column": 46 } }, + "7": { "start": { "line": 8, "column": 0 }, "end": { "line": 8, "column": 30 } }, + "8": { "start": { "line": 9, "column": 0 }, "end": { "line": 9, "column": 2 } }, + "9": { "start": { "line": 10, "column": 0 }, "end": { "line": 10, "column": 0 } }, + "10": { "start": { "line": 11, "column": 0 }, "end": { "line": 11, "column": 55 } }, + "11": { "start": { "line": 12, "column": 0 }, "end": { "line": 12, "column": 32 } }, + "12": { "start": { "line": 13, "column": 0 }, "end": { "line": 13, "column": 60 } }, + "13": { "start": { "line": 14, "column": 0 }, "end": { "line": 14, "column": 63 } }, + "14": { "start": { "line": 15, "column": 0 }, "end": { "line": 15, "column": 4 } }, + "15": { "start": { "line": 16, "column": 0 }, "end": { "line": 16, "column": 2 } } + }, + "s": { + "0": 1, + "1": 1, + "2": 1, + "3": 1, + "4": 1, + "5": 1, + "6": 1, + "7": 1, + "8": 1, + "9": 1, + "10": 1, + "11": 1, + "12": 1, + "13": 0, + "14": 0, + "15": 1 + }, + "branchMap": { + "0": { + "type": "branch", + "line": 16, + "loc": { "start": { "line": 16, "column": 1 }, "end": { "line": 16, "column": 2 } }, + "locations": [{ "start": { "line": 16, "column": 1 }, "end": { "line": 16, "column": 2 } }] + }, + "1": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "2": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "3": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "4": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "5": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "6": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "7": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "8": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "9": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + } + }, + "b": { + "0": [0], + "1": [1], + "2": [1], + "3": [2], + "4": [1], + "5": [0], + "6": [2], + "7": [1], + "8": [1], + "9": [1] + }, + "fnMap": { + "0": { + "name": "__name", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + }, + "1": { + "name": "__export", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + }, + "2": { + "name": "__copyProps", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + }, + "3": { + "name": "get", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + }, + "4": { + "name": "__toCommonJS", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + }, + "5": { + "name": "NotifyCardCreatedInput", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + }, + "6": { + "name": "notifyCardCreated", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + } + }, + "f": { "0": 1, "1": 1, "2": 1, "3": 1, "4": 1, "5": 0, "6": 1 } + }, + "/Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/functions/on-card-event-trigger.function.ts": { + "path": "/Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/functions/on-card-event-trigger.function.ts", + "all": false, + "statementMap": { + "0": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 23 } }, + "1": { "start": { "line": 2, "column": 0 }, "end": { "line": 2, "column": 45 } }, + "2": { "start": { "line": 3, "column": 0 }, "end": { "line": 3, "column": 40 } }, + "3": { "start": { "line": 4, "column": 0 }, "end": { "line": 4, "column": 0 } }, + "4": { "start": { "line": 5, "column": 0 }, "end": { "line": 5, "column": 49 } }, + "5": { "start": { "line": 6, "column": 0 }, "end": { "line": 6, "column": 20 } }, + "6": { "start": { "line": 7, "column": 0 }, "end": { "line": 7, "column": 60 } }, + "7": { "start": { "line": 8, "column": 0 }, "end": { "line": 8, "column": 32 } }, + "8": { "start": { "line": 9, "column": 0 }, "end": { "line": 9, "column": 2 } }, + "9": { "start": { "line": 10, "column": 0 }, "end": { "line": 10, "column": 0 } }, + "10": { "start": { "line": 11, "column": 0 }, "end": { "line": 11, "column": 50 } }, + "11": { "start": { "line": 12, "column": 0 }, "end": { "line": 12, "column": 21 } }, + "12": { "start": { "line": 13, "column": 0 }, "end": { "line": 13, "column": 20 } }, + "13": { "start": { "line": 14, "column": 0 }, "end": { "line": 14, "column": 21 } }, + "14": { "start": { "line": 15, "column": 0 }, "end": { "line": 15, "column": 2 } }, + "15": { "start": { "line": 16, "column": 0 }, "end": { "line": 16, "column": 0 } }, + "16": { "start": { "line": 17, "column": 0 }, "end": { "line": 17, "column": 56 } }, + "17": { "start": { "line": 18, "column": 0 }, "end": { "line": 18, "column": 33 } }, + "18": { "start": { "line": 19, "column": 0 }, "end": { "line": 19, "column": 35 } }, + "19": { "start": { "line": 20, "column": 0 }, "end": { "line": 20, "column": 15 } }, + "20": { "start": { "line": 21, "column": 0 }, "end": { "line": 21, "column": 66 } }, + "21": { "start": { "line": 22, "column": 0 }, "end": { "line": 22, "column": 31 } }, + "22": { "start": { "line": 23, "column": 0 }, "end": { "line": 23, "column": 46 } }, + "23": { "start": { "line": 24, "column": 0 }, "end": { "line": 24, "column": 28 } }, + "24": { "start": { "line": 25, "column": 0 }, "end": { "line": 25, "column": 31 } }, + "25": { "start": { "line": 26, "column": 0 }, "end": { "line": 26, "column": 63 } }, + "26": { "start": { "line": 27, "column": 0 }, "end": { "line": 27, "column": 35 } }, + "27": { "start": { "line": 28, "column": 0 }, "end": { "line": 28, "column": 25 } }, + "28": { "start": { "line": 29, "column": 0 }, "end": { "line": 29, "column": 40 } }, + "29": { "start": { "line": 30, "column": 0 }, "end": { "line": 30, "column": 106 } }, + "30": { "start": { "line": 31, "column": 0 }, "end": { "line": 31, "column": 96 } }, + "31": { "start": { "line": 32, "column": 0 }, "end": { "line": 32, "column": 36 } }, + "32": { "start": { "line": 33, "column": 0 }, "end": { "line": 33, "column": 4 } }, + "33": { "start": { "line": 34, "column": 0 }, "end": { "line": 34, "column": 2 } } + }, + "s": { + "0": 1, + "1": 1, + "2": 1, + "3": 1, + "4": 1, + "5": 1, + "6": 1, + "7": 1, + "8": 1, + "9": 1, + "10": 1, + "11": 1, + "12": 1, + "13": 1, + "14": 1, + "15": 1, + "16": 1, + "17": 1, + "18": 1, + "19": 1, + "20": 1, + "21": 0, + "22": 0, + "23": 0, + "24": 0, + "25": 0, + "26": 0, + "27": 0, + "28": 0, + "29": 0, + "30": 0, + "31": 0, + "32": 0, + "33": 1 + }, + "branchMap": { + "0": { + "type": "branch", + "line": 34, + "loc": { "start": { "line": 34, "column": 1 }, "end": { "line": 34, "column": 2 } }, + "locations": [{ "start": { "line": 34, "column": 1 }, "end": { "line": 34, "column": 2 } }] + }, + "1": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "2": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "3": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "4": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "5": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "6": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "7": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "8": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "9": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + } + }, + "b": { + "0": [0], + "1": [1], + "2": [1], + "3": [3], + "4": [1], + "5": [0], + "6": [3], + "7": [2], + "8": [1], + "9": [2] + }, + "fnMap": { + "0": { + "name": "__name", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + }, + "1": { + "name": "__export", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + }, + "2": { + "name": "__copyProps", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + }, + "3": { + "name": "get", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + }, + "4": { + "name": "__toCommonJS", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + }, + "5": { + "name": "OnCardEventTriggerInput", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + }, + "6": { + "name": "OnCardEventTriggerOutput", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + }, + "7": { + "name": "onCardEventTrigger", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + } + }, + "f": { "0": 1, "1": 1, "2": 1, "3": 2, "4": 1, "5": 0, "6": 0, "7": 2 } + }, + "/Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/functions/process-card-event.function.ts": { + "path": "/Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/functions/process-card-event.function.ts", + "all": false, + "statementMap": { + "0": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 23 } }, + "1": { "start": { "line": 2, "column": 0 }, "end": { "line": 2, "column": 45 } }, + "2": { "start": { "line": 3, "column": 0 }, "end": { "line": 3, "column": 0 } }, + "3": { "start": { "line": 4, "column": 0 }, "end": { "line": 4, "column": 47 } }, + "4": { "start": { "line": 5, "column": 0 }, "end": { "line": 5, "column": 21 } }, + "5": { "start": { "line": 6, "column": 0 }, "end": { "line": 6, "column": 21 } }, + "6": { "start": { "line": 7, "column": 0 }, "end": { "line": 7, "column": 21 } }, + "7": { "start": { "line": 8, "column": 0 }, "end": { "line": 8, "column": 24 } }, + "8": { "start": { "line": 9, "column": 0 }, "end": { "line": 9, "column": 2 } }, + "9": { "start": { "line": 10, "column": 0 }, "end": { "line": 10, "column": 0 } }, + "10": { "start": { "line": 11, "column": 0 }, "end": { "line": 11, "column": 3 } }, + "11": { "start": { "line": 12, "column": 0 }, "end": { "line": 12, "column": 68 } }, + "12": { "start": { "line": 13, "column": 0 }, "end": { "line": 13, "column": 74 } }, + "13": { "start": { "line": 14, "column": 0 }, "end": { "line": 14, "column": 29 } }, + "14": { "start": { "line": 15, "column": 0 }, "end": { "line": 15, "column": 3 } }, + "15": { "start": { "line": 16, "column": 0 }, "end": { "line": 16, "column": 54 } }, + "16": { "start": { "line": 17, "column": 0 }, "end": { "line": 17, "column": 31 } }, + "17": { "start": { "line": 18, "column": 0 }, "end": { "line": 18, "column": 59 } }, + "18": { "start": { "line": 19, "column": 0 }, "end": { "line": 19, "column": 77 } }, + "19": { "start": { "line": 20, "column": 0 }, "end": { "line": 20, "column": 4 } }, + "20": { "start": { "line": 21, "column": 0 }, "end": { "line": 21, "column": 2 } } + }, + "s": { + "0": 1, + "1": 1, + "2": 1, + "3": 1, + "4": 1, + "5": 1, + "6": 1, + "7": 1, + "8": 1, + "9": 1, + "10": 1, + "11": 1, + "12": 1, + "13": 1, + "14": 1, + "15": 1, + "16": 1, + "17": 1, + "18": 0, + "19": 0, + "20": 1 + }, + "branchMap": { + "0": { + "type": "branch", + "line": 21, + "loc": { "start": { "line": 21, "column": 1 }, "end": { "line": 21, "column": 2 } }, + "locations": [{ "start": { "line": 21, "column": 1 }, "end": { "line": 21, "column": 2 } }] + }, + "1": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "2": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "3": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "4": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "5": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "6": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "7": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "8": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "9": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + } + }, + "b": { + "0": [0], + "1": [1], + "2": [1], + "3": [2], + "4": [1], + "5": [0], + "6": [2], + "7": [1], + "8": [1], + "9": [1] + }, + "fnMap": { + "0": { + "name": "__name", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + }, + "1": { + "name": "__export", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + }, + "2": { + "name": "__copyProps", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + }, + "3": { + "name": "get", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + }, + "4": { + "name": "__toCommonJS", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + }, + "5": { + "name": "ProcessCardEventInput", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + }, + "6": { + "name": "processCardEvent", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + } + }, + "f": { "0": 1, "1": 1, "2": 1, "3": 1, "4": 1, "5": 0, "6": 1 } + }, + "/Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/functions/sign-card-file.function.ts": { + "path": "/Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/functions/sign-card-file.function.ts", + "all": false, + "statementMap": { + "0": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 23 } }, + "1": { "start": { "line": 2, "column": 0 }, "end": { "line": 2, "column": 45 } }, + "2": { "start": { "line": 3, "column": 0 }, "end": { "line": 3, "column": 0 } }, + "3": { "start": { "line": 4, "column": 0 }, "end": { "line": 4, "column": 43 } }, + "4": { "start": { "line": 5, "column": 0 }, "end": { "line": 5, "column": 28 } }, + "5": { "start": { "line": 6, "column": 0 }, "end": { "line": 6, "column": 30 } }, + "6": { "start": { "line": 7, "column": 0 }, "end": { "line": 7, "column": 2 } }, + "7": { "start": { "line": 8, "column": 0 }, "end": { "line": 8, "column": 0 } }, + "8": { "start": { "line": 9, "column": 0 }, "end": { "line": 9, "column": 44 } }, + "9": { "start": { "line": 10, "column": 0 }, "end": { "line": 10, "column": 24 } }, + "10": { "start": { "line": 11, "column": 0 }, "end": { "line": 11, "column": 24 } }, + "11": { "start": { "line": 12, "column": 0 }, "end": { "line": 12, "column": 2 } }, + "12": { "start": { "line": 13, "column": 0 }, "end": { "line": 13, "column": 0 } }, + "13": { "start": { "line": 14, "column": 0 }, "end": { "line": 14, "column": 50 } }, + "14": { "start": { "line": 15, "column": 0 }, "end": { "line": 15, "column": 15 } }, + "15": { "start": { "line": 16, "column": 0 }, "end": { "line": 16, "column": 82 } }, + "16": { "start": { "line": 17, "column": 0 }, "end": { "line": 17, "column": 27 } }, + "17": { "start": { "line": 18, "column": 0 }, "end": { "line": 18, "column": 29 } }, + "18": { "start": { "line": 19, "column": 0 }, "end": { "line": 19, "column": 54 } }, + "19": { "start": { "line": 20, "column": 0 }, "end": { "line": 20, "column": 19 } }, + "20": { "start": { "line": 21, "column": 0 }, "end": { "line": 21, "column": 55 } }, + "21": { "start": { "line": 22, "column": 0 }, "end": { "line": 22, "column": 5 } }, + "22": { "start": { "line": 23, "column": 0 }, "end": { "line": 23, "column": 43 } }, + "23": { "start": { "line": 24, "column": 0 }, "end": { "line": 24, "column": 57 } }, + "24": { "start": { "line": 25, "column": 0 }, "end": { "line": 25, "column": 52 } }, + "25": { "start": { "line": 26, "column": 0 }, "end": { "line": 26, "column": 22 } }, + "26": { "start": { "line": 27, "column": 0 }, "end": { "line": 27, "column": 26 } }, + "27": { "start": { "line": 28, "column": 0 }, "end": { "line": 28, "column": 19 } }, + "28": { "start": { "line": 29, "column": 0 }, "end": { "line": 29, "column": 6 } }, + "29": { "start": { "line": 30, "column": 0 }, "end": { "line": 30, "column": 12 } }, + "30": { "start": { "line": 31, "column": 0 }, "end": { "line": 31, "column": 16 } }, + "31": { "start": { "line": 32, "column": 0 }, "end": { "line": 32, "column": 44 } }, + "32": { "start": { "line": 33, "column": 0 }, "end": { "line": 33, "column": 5 } }, + "33": { "start": { "line": 34, "column": 0 }, "end": { "line": 34, "column": 4 } }, + "34": { "start": { "line": 35, "column": 0 }, "end": { "line": 35, "column": 2 } } + }, + "s": { + "0": 1, + "1": 1, + "2": 1, + "3": 1, + "4": 1, + "5": 1, + "6": 1, + "7": 1, + "8": 1, + "9": 1, + "10": 1, + "11": 1, + "12": 1, + "13": 1, + "14": 1, + "15": 1, + "16": 1, + "17": 1, + "18": 1, + "19": 0, + "20": 0, + "21": 0, + "22": 0, + "23": 0, + "24": 0, + "25": 0, + "26": 0, + "27": 0, + "28": 0, + "29": 0, + "30": 0, + "31": 0, + "32": 0, + "33": 0, + "34": 1 + }, + "branchMap": { + "0": { + "type": "branch", + "line": 35, + "loc": { "start": { "line": 35, "column": 1 }, "end": { "line": 35, "column": 2 } }, + "locations": [{ "start": { "line": 35, "column": 1 }, "end": { "line": 35, "column": 2 } }] + }, + "1": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "2": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "3": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "4": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "5": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "6": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "7": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "8": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "9": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + } + }, + "b": { + "0": [0], + "1": [1], + "2": [1], + "3": [3], + "4": [1], + "5": [0], + "6": [3], + "7": [2], + "8": [1], + "9": [2] + }, + "fnMap": { + "0": { + "name": "__name", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + }, + "1": { + "name": "__export", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + }, + "2": { + "name": "__copyProps", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + }, + "3": { + "name": "get", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + }, + "4": { + "name": "__toCommonJS", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + }, + "5": { + "name": "SignCardFileInput", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + }, + "6": { + "name": "SignCardFileOutput", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + }, + "7": { + "name": "signCardFile", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + } + }, + "f": { "0": 1, "1": 1, "2": 1, "3": 2, "4": 1, "5": 0, "6": 0, "7": 2 } + }, + "/Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/middleware/cors.middleware.ts": { + "path": "/Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/middleware/cors.middleware.ts", + "all": false, + "statementMap": { + "0": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 52 } }, + "1": { "start": { "line": 2, "column": 0 }, "end": { "line": 2, "column": 45 } }, + "2": { "start": { "line": 3, "column": 0 }, "end": { "line": 3, "column": 0 } }, + "3": { "start": { "line": 4, "column": 0 }, "end": { "line": 4, "column": 31 } }, + "4": { "start": { "line": 5, "column": 0 }, "end": { "line": 5, "column": 49 } } + }, + "s": { "0": 1, "1": 1, "2": 1, "3": 1, "4": 1 }, + "branchMap": { + "0": { + "type": "branch", + "line": 4, + "loc": { "start": { "line": 4, "column": 26 }, "end": { "line": 4, "column": 31 } }, + "locations": [{ "start": { "line": 4, "column": 26 }, "end": { "line": 4, "column": 31 } }] + }, + "1": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 34 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 34 } }] + }, + "2": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 34 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 34 } }] + }, + "3": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 34 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 34 } }] + }, + "4": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 34 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 34 } }] + }, + "5": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 34 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 34 } }] + }, + "6": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 34 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 34 } }] + }, + "7": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 34 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 34 } }] + }, + "8": { + "type": "branch", + "line": 4, + "loc": { "start": { "line": 4, "column": 26 }, "end": { "line": 5, "column": 49 } }, + "locations": [{ "start": { "line": 4, "column": 26 }, "end": { "line": 5, "column": 49 } }] + } + }, + "b": { + "0": [0], + "1": [1], + "2": [1], + "3": [1], + "4": [0], + "5": [1], + "6": [1], + "7": [1], + "8": [1] + }, + "fnMap": { + "0": { + "name": "__name", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 34 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 34 } }, + "line": 1 + }, + "1": { + "name": "__export", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 34 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 34 } }, + "line": 1 + }, + "2": { + "name": "__copyProps", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 34 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 34 } }, + "line": 1 + }, + "3": { + "name": "get", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 34 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 34 } }, + "line": 1 + }, + "4": { + "name": "__toCommonJS", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 34 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 34 } }, + "line": 1 + }, + "5": { + "name": "globalCors", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 34 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 34 } }, + "line": 1 + } + }, + "f": { "0": 1, "1": 1, "2": 1, "3": 1, "4": 1, "5": 1 } + }, + "/Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/scaffold/agent.gen.ts": { + "path": "/Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/scaffold/agent.gen.ts", + "all": false, + "statementMap": { + "0": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "1": { "start": { "line": 2, "column": 0 }, "end": { "line": 2, "column": 48 } }, + "2": { "start": { "line": 3, "column": 0 }, "end": { "line": 3, "column": 3 } }, + "3": { "start": { "line": 4, "column": 0 }, "end": { "line": 4, "column": 56 } }, + "4": { "start": { "line": 5, "column": 0 }, "end": { "line": 5, "column": 104 } }, + "5": { "start": { "line": 6, "column": 0 }, "end": { "line": 6, "column": 0 } }, + "6": { "start": { "line": 7, "column": 0 }, "end": { "line": 7, "column": 48 } }, + "7": { "start": { "line": 8, "column": 0 }, "end": { "line": 8, "column": 79 } }, + "8": { "start": { "line": 9, "column": 0 }, "end": { "line": 9, "column": 9 } }, + "9": { "start": { "line": 10, "column": 0 }, "end": { "line": 10, "column": 3 } }, + "10": { "start": { "line": 11, "column": 0 }, "end": { "line": 11, "column": 18 } }, + "11": { "start": { "line": 12, "column": 0 }, "end": { "line": 12, "column": 14 } }, + "12": { "start": { "line": 13, "column": 0 }, "end": { "line": 13, "column": 45 } }, + "13": { "start": { "line": 14, "column": 0 }, "end": { "line": 14, "column": 55 } }, + "14": { "start": { "line": 15, "column": 0 }, "end": { "line": 15, "column": 28 } }, + "15": { "start": { "line": 16, "column": 0 }, "end": { "line": 16, "column": 30 } }, + "16": { "start": { "line": 17, "column": 0 }, "end": { "line": 17, "column": 34 } }, + "17": { "start": { "line": 18, "column": 0 }, "end": { "line": 18, "column": 6 } }, + "18": { "start": { "line": 19, "column": 0 }, "end": { "line": 19, "column": 4 } }, + "19": { "start": { "line": 20, "column": 0 }, "end": { "line": 20, "column": 2 } }, + "20": { "start": { "line": 21, "column": 0 }, "end": { "line": 21, "column": 0 } }, + "21": { "start": { "line": 22, "column": 0 }, "end": { "line": 22, "column": 54 } }, + "22": { "start": { "line": 23, "column": 0 }, "end": { "line": 23, "column": 79 } }, + "23": { "start": { "line": 24, "column": 0 }, "end": { "line": 24, "column": 6 } }, + "24": { "start": { "line": 25, "column": 0 }, "end": { "line": 25, "column": 3 } }, + "25": { "start": { "line": 26, "column": 0 }, "end": { "line": 26, "column": 18 } }, + "26": { "start": { "line": 27, "column": 0 }, "end": { "line": 27, "column": 14 } }, + "27": { "start": { "line": 28, "column": 0 }, "end": { "line": 28, "column": 45 } }, + "28": { "start": { "line": 29, "column": 0 }, "end": { "line": 29, "column": 51 } }, + "29": { "start": { "line": 30, "column": 0 }, "end": { "line": 30, "column": 28 } }, + "30": { "start": { "line": 31, "column": 0 }, "end": { "line": 31, "column": 30 } }, + "31": { "start": { "line": 32, "column": 0 }, "end": { "line": 32, "column": 34 } }, + "32": { "start": { "line": 33, "column": 0 }, "end": { "line": 33, "column": 6 } }, + "33": { "start": { "line": 34, "column": 0 }, "end": { "line": 34, "column": 4 } }, + "34": { "start": { "line": 35, "column": 0 }, "end": { "line": 35, "column": 2 } }, + "35": { "start": { "line": 36, "column": 0 }, "end": { "line": 36, "column": 0 } }, + "36": { "start": { "line": 37, "column": 0 }, "end": { "line": 37, "column": 55 } }, + "37": { "start": { "line": 38, "column": 0 }, "end": { "line": 38, "column": 95 } }, + "38": { "start": { "line": 39, "column": 0 }, "end": { "line": 39, "column": 9 } }, + "39": { "start": { "line": 40, "column": 0 }, "end": { "line": 40, "column": 3 } }, + "40": { "start": { "line": 41, "column": 0 }, "end": { "line": 41, "column": 18 } }, + "41": { "start": { "line": 42, "column": 0 }, "end": { "line": 42, "column": 14 } }, + "42": { "start": { "line": 43, "column": 0 }, "end": { "line": 43, "column": 72 } }, + "43": { "start": { "line": 44, "column": 0 }, "end": { "line": 44, "column": 63 } }, + "44": { "start": { "line": 45, "column": 0 }, "end": { "line": 45, "column": 4 } }, + "45": { "start": { "line": 46, "column": 0 }, "end": { "line": 46, "column": 2 } }, + "46": { "start": { "line": 47, "column": 0 }, "end": { "line": 47, "column": 0 } }, + "47": { "start": { "line": 48, "column": 0 }, "end": { "line": 48, "column": 54 } }, + "48": { "start": { "line": 49, "column": 0 }, "end": { "line": 49, "column": 78 } }, + "49": { "start": { "line": 50, "column": 0 }, "end": { "line": 50, "column": 6 } }, + "50": { "start": { "line": 51, "column": 0 }, "end": { "line": 51, "column": 3 } }, + "51": { "start": { "line": 52, "column": 0 }, "end": { "line": 52, "column": 18 } }, + "52": { "start": { "line": 53, "column": 0 }, "end": { "line": 53, "column": 14 } }, + "53": { "start": { "line": 54, "column": 0 }, "end": { "line": 54, "column": 45 } }, + "54": { "start": { "line": 55, "column": 0 }, "end": { "line": 55, "column": 40 } }, + "55": { "start": { "line": 56, "column": 0 }, "end": { "line": 56, "column": 34 } }, + "56": { "start": { "line": 57, "column": 0 }, "end": { "line": 57, "column": 30 } }, + "57": { "start": { "line": 58, "column": 0 }, "end": { "line": 58, "column": 6 } }, + "58": { "start": { "line": 59, "column": 0 }, "end": { "line": 59, "column": 4 } }, + "59": { "start": { "line": 60, "column": 0 }, "end": { "line": 60, "column": 2 } }, + "60": { "start": { "line": 61, "column": 0 }, "end": { "line": 61, "column": 0 } }, + "61": { "start": { "line": 62, "column": 0 }, "end": { "line": 62, "column": 52 } }, + "62": { "start": { "line": 63, "column": 0 }, "end": { "line": 63, "column": 79 } }, + "63": { "start": { "line": 64, "column": 0 }, "end": { "line": 64, "column": 7 } }, + "64": { "start": { "line": 65, "column": 0 }, "end": { "line": 65, "column": 3 } }, + "65": { "start": { "line": 66, "column": 0 }, "end": { "line": 66, "column": 33 } }, + "66": { "start": { "line": 67, "column": 0 }, "end": { "line": 67, "column": 29 } }, + "67": { "start": { "line": 68, "column": 0 }, "end": { "line": 68, "column": 14 } }, + "68": { "start": { "line": 69, "column": 0 }, "end": { "line": 69, "column": 138 } }, + "69": { "start": { "line": 70, "column": 0 }, "end": { "line": 70, "column": 15 } }, + "70": { "start": { "line": 71, "column": 0 }, "end": { "line": 71, "column": 14 } }, + "71": { "start": { "line": 72, "column": 0 }, "end": { "line": 72, "column": 47 } }, + "72": { "start": { "line": 73, "column": 0 }, "end": { "line": 73, "column": 91 } }, + "73": { "start": { "line": 74, "column": 0 }, "end": { "line": 74, "column": 46 } }, + "74": { "start": { "line": 75, "column": 0 }, "end": { "line": 75, "column": 34 } }, + "75": { "start": { "line": 76, "column": 0 }, "end": { "line": 76, "column": 36 } }, + "76": { "start": { "line": 77, "column": 0 }, "end": { "line": 77, "column": 26 } }, + "77": { "start": { "line": 78, "column": 0 }, "end": { "line": 78, "column": 28 } }, + "78": { "start": { "line": 79, "column": 0 }, "end": { "line": 79, "column": 6 } }, + "79": { "start": { "line": 80, "column": 0 }, "end": { "line": 80, "column": 4 } }, + "80": { "start": { "line": 81, "column": 0 }, "end": { "line": 81, "column": 2 } }, + "81": { "start": { "line": 82, "column": 0 }, "end": { "line": 82, "column": 0 } }, + "82": { "start": { "line": 83, "column": 0 }, "end": { "line": 83, "column": 59 } }, + "83": { "start": { "line": 84, "column": 0 }, "end": { "line": 84, "column": 44 } }, + "84": { "start": { "line": 85, "column": 0 }, "end": { "line": 85, "column": 7 } }, + "85": { "start": { "line": 86, "column": 0 }, "end": { "line": 86, "column": 3 } }, + "86": { "start": { "line": 87, "column": 0 }, "end": { "line": 87, "column": 33 } }, + "87": { "start": { "line": 88, "column": 0 }, "end": { "line": 88, "column": 37 } }, + "88": { "start": { "line": 89, "column": 0 }, "end": { "line": 89, "column": 14 } }, + "89": { "start": { "line": 90, "column": 0 }, "end": { "line": 90, "column": 82 } }, + "90": { "start": { "line": 91, "column": 0 }, "end": { "line": 91, "column": 15 } }, + "91": { "start": { "line": 92, "column": 0 }, "end": { "line": 92, "column": 14 } }, + "92": { "start": { "line": 93, "column": 0 }, "end": { "line": 93, "column": 47 } }, + "93": { "start": { "line": 94, "column": 0 }, "end": { "line": 94, "column": 91 } }, + "94": { "start": { "line": 95, "column": 0 }, "end": { "line": 95, "column": 66 } }, + "95": { "start": { "line": 96, "column": 0 }, "end": { "line": 96, "column": 4 } }, + "96": { "start": { "line": 97, "column": 0 }, "end": { "line": 97, "column": 2 } }, + "97": { "start": { "line": 98, "column": 0 }, "end": { "line": 98, "column": 0 } }, + "98": { "start": { "line": 99, "column": 0 }, "end": { "line": 99, "column": 55 } }, + "99": { "start": { "line": 100, "column": 0 }, "end": { "line": 100, "column": 44 } }, + "100": { "start": { "line": 101, "column": 0 }, "end": { "line": 101, "column": 7 } }, + "101": { "start": { "line": 102, "column": 0 }, "end": { "line": 102, "column": 3 } }, + "102": { "start": { "line": 103, "column": 0 }, "end": { "line": 103, "column": 33 } }, + "103": { "start": { "line": 104, "column": 0 }, "end": { "line": 104, "column": 33 } }, + "104": { "start": { "line": 105, "column": 0 }, "end": { "line": 105, "column": 14 } }, + "105": { "start": { "line": 106, "column": 0 }, "end": { "line": 106, "column": 85 } }, + "106": { "start": { "line": 107, "column": 0 }, "end": { "line": 107, "column": 15 } }, + "107": { "start": { "line": 108, "column": 0 }, "end": { "line": 108, "column": 14 } }, + "108": { "start": { "line": 109, "column": 0 }, "end": { "line": 109, "column": 47 } }, + "109": { "start": { "line": 110, "column": 0 }, "end": { "line": 110, "column": 91 } }, + "110": { "start": { "line": 111, "column": 0 }, "end": { "line": 111, "column": 62 } }, + "111": { "start": { "line": 112, "column": 0 }, "end": { "line": 112, "column": 4 } }, + "112": { "start": { "line": 113, "column": 0 }, "end": { "line": 113, "column": 2 } }, + "113": { "start": { "line": 114, "column": 0 }, "end": { "line": 114, "column": 0 } }, + "114": { "start": { "line": 115, "column": 0 }, "end": { "line": 115, "column": 54 } }, + "115": { "start": { "line": 116, "column": 0 }, "end": { "line": 116, "column": 44 } }, + "116": { "start": { "line": 117, "column": 0 }, "end": { "line": 117, "column": 22 } }, + "117": { "start": { "line": 118, "column": 0 }, "end": { "line": 118, "column": 3 } }, + "118": { "start": { "line": 119, "column": 0 }, "end": { "line": 119, "column": 33 } }, + "119": { "start": { "line": 120, "column": 0 }, "end": { "line": 120, "column": 31 } }, + "120": { "start": { "line": 121, "column": 0 }, "end": { "line": 121, "column": 14 } }, + "121": { "start": { "line": 122, "column": 0 }, "end": { "line": 122, "column": 65 } }, + "122": { "start": { "line": 123, "column": 0 }, "end": { "line": 123, "column": 15 } }, + "123": { "start": { "line": 124, "column": 0 }, "end": { "line": 124, "column": 14 } }, + "124": { "start": { "line": 125, "column": 0 }, "end": { "line": 125, "column": 47 } }, + "125": { "start": { "line": 126, "column": 0 }, "end": { "line": 126, "column": 91 } }, + "126": { "start": { "line": 127, "column": 0 }, "end": { "line": 127, "column": 70 } }, + "127": { "start": { "line": 128, "column": 0 }, "end": { "line": 128, "column": 22 } }, + "128": { "start": { "line": 129, "column": 0 }, "end": { "line": 129, "column": 4 } }, + "129": { "start": { "line": 130, "column": 0 }, "end": { "line": 130, "column": 2 } }, + "130": { "start": { "line": 131, "column": 0 }, "end": { "line": 131, "column": 0 } }, + "131": { "start": { "line": 132, "column": 0 }, "end": { "line": 132, "column": 45 } }, + "132": { "start": { "line": 133, "column": 0 }, "end": { "line": 133, "column": 14 } }, + "133": { "start": { "line": 134, "column": 0 }, "end": { "line": 134, "column": 25 } }, + "134": { "start": { "line": 135, "column": 0 }, "end": { "line": 135, "column": 11 } }, + "135": { "start": { "line": 136, "column": 0 }, "end": { "line": 136, "column": 15 } }, + "136": { "start": { "line": 137, "column": 0 }, "end": { "line": 137, "column": 37 } }, + "137": { "start": { "line": 138, "column": 0 }, "end": { "line": 138, "column": 21 } }, + "138": { "start": { "line": 139, "column": 0 }, "end": { "line": 139, "column": 24 } }, + "139": { "start": { "line": 140, "column": 0 }, "end": { "line": 140, "column": 6 } }, + "140": { "start": { "line": 141, "column": 0 }, "end": { "line": 141, "column": 18 } }, + "141": { "start": { "line": 142, "column": 0 }, "end": { "line": 142, "column": 44 } }, + "142": { "start": { "line": 143, "column": 0 }, "end": { "line": 143, "column": 21 } }, + "143": { "start": { "line": 144, "column": 0 }, "end": { "line": 144, "column": 16 } }, + "144": { "start": { "line": 145, "column": 0 }, "end": { "line": 145, "column": 30 } }, + "145": { "start": { "line": 146, "column": 0 }, "end": { "line": 146, "column": 6 } }, + "146": { "start": { "line": 147, "column": 0 }, "end": { "line": 147, "column": 19 } }, + "147": { "start": { "line": 148, "column": 0 }, "end": { "line": 148, "column": 45 } }, + "148": { "start": { "line": 149, "column": 0 }, "end": { "line": 149, "column": 21 } }, + "149": { "start": { "line": 150, "column": 0 }, "end": { "line": 150, "column": 31 } }, + "150": { "start": { "line": 151, "column": 0 }, "end": { "line": 151, "column": 6 } }, + "151": { "start": { "line": 152, "column": 0 }, "end": { "line": 152, "column": 18 } }, + "152": { "start": { "line": 153, "column": 0 }, "end": { "line": 153, "column": 44 } }, + "153": { "start": { "line": 154, "column": 0 }, "end": { "line": 154, "column": 21 } }, + "154": { "start": { "line": 155, "column": 0 }, "end": { "line": 155, "column": 16 } }, + "155": { "start": { "line": 156, "column": 0 }, "end": { "line": 156, "column": 30 } }, + "156": { "start": { "line": 157, "column": 0 }, "end": { "line": 157, "column": 6 } }, + "157": { "start": { "line": 158, "column": 0 }, "end": { "line": 158, "column": 4 } }, + "158": { "start": { "line": 159, "column": 0 }, "end": { "line": 159, "column": 2 } }, + "159": { "start": { "line": 160, "column": 0 }, "end": { "line": 160, "column": 0 } }, + "160": { "start": { "line": 161, "column": 0 }, "end": { "line": 161, "column": 50 } } + }, + "s": { + "0": 1, + "1": 1, + "2": 1, + "3": 1, + "4": 1, + "5": 1, + "6": 1, + "7": 1, + "8": 1, + "9": 1, + "10": 1, + "11": 1, + "12": 1, + "13": 0, + "14": 0, + "15": 0, + "16": 0, + "17": 0, + "18": 0, + "19": 1, + "20": 1, + "21": 1, + "22": 1, + "23": 1, + "24": 1, + "25": 1, + "26": 1, + "27": 1, + "28": 0, + "29": 0, + "30": 0, + "31": 0, + "32": 0, + "33": 0, + "34": 1, + "35": 1, + "36": 1, + "37": 1, + "38": 1, + "39": 1, + "40": 1, + "41": 1, + "42": 1, + "43": 0, + "44": 0, + "45": 1, + "46": 1, + "47": 1, + "48": 1, + "49": 1, + "50": 1, + "51": 1, + "52": 1, + "53": 1, + "54": 0, + "55": 0, + "56": 0, + "57": 0, + "58": 0, + "59": 1, + "60": 1, + "61": 1, + "62": 1, + "63": 1, + "64": 1, + "65": 1, + "66": 1, + "67": 1, + "68": 1, + "69": 1, + "70": 1, + "71": 1, + "72": 0, + "73": 0, + "74": 0, + "75": 0, + "76": 0, + "77": 0, + "78": 0, + "79": 0, + "80": 1, + "81": 1, + "82": 1, + "83": 1, + "84": 1, + "85": 1, + "86": 1, + "87": 1, + "88": 1, + "89": 1, + "90": 1, + "91": 1, + "92": 1, + "93": 0, + "94": 0, + "95": 0, + "96": 1, + "97": 1, + "98": 1, + "99": 1, + "100": 1, + "101": 1, + "102": 1, + "103": 1, + "104": 1, + "105": 1, + "106": 1, + "107": 1, + "108": 1, + "109": 0, + "110": 0, + "111": 0, + "112": 1, + "113": 1, + "114": 1, + "115": 1, + "116": 1, + "117": 1, + "118": 1, + "119": 1, + "120": 1, + "121": 1, + "122": 1, + "123": 1, + "124": 1, + "125": 0, + "126": 0, + "127": 0, + "128": 0, + "129": 1, + "130": 1, + "131": 1, + "132": 1, + "133": 1, + "134": 1, + "135": 1, + "136": 1, + "137": 1, + "138": 1, + "139": 1, + "140": 1, + "141": 1, + "142": 1, + "143": 1, + "144": 1, + "145": 1, + "146": 1, + "147": 1, + "148": 1, + "149": 1, + "150": 1, + "151": 1, + "152": 1, + "153": 1, + "154": 1, + "155": 1, + "156": 1, + "157": 1, + "158": 1, + "159": 1, + "160": 1 + }, + "branchMap": { + "0": { + "type": "branch", + "line": 161, + "loc": { "start": { "line": 161, "column": 49 }, "end": { "line": 161, "column": 50 } }, + "locations": [ + { "start": { "line": 161, "column": 49 }, "end": { "line": 161, "column": 50 } } + ] + }, + "1": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }] + }, + "2": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }] + }, + "3": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }] + }, + "4": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }] + }, + "5": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }] + }, + "6": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }] + }, + "7": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }] + }, + "8": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }] + }, + "9": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }] + }, + "10": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }] + }, + "11": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }] + }, + "12": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }] + } + }, + "b": { + "0": [0], + "1": [8], + "2": [1], + "3": [9], + "4": [1], + "5": [0], + "6": [9], + "7": [4], + "8": [1], + "9": [1], + "10": [1], + "11": [1], + "12": [1] + }, + "fnMap": { + "0": { + "name": "__name", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "line": 1 + }, + "1": { + "name": "__export", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "line": 1 + }, + "2": { + "name": "__copyProps", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "line": 1 + }, + "3": { + "name": "get", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "line": 1 + }, + "4": { + "name": "__toCommonJS", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "line": 1 + }, + "5": { + "name": "agentApproveCaller", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "line": 1 + }, + "6": { + "name": "agentCaller", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "line": 1 + }, + "7": { + "name": "agentResumeCaller", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "line": 1 + }, + "8": { + "name": "agentRoutes", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "line": 1 + }, + "9": { + "name": "agentStreamCaller", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "line": 1 + }, + "10": { + "name": "deleteAgentThread", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "line": 1 + }, + "11": { + "name": "getAgentThreadMessages", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "line": 1 + }, + "12": { + "name": "getAgentThreadRuns", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "line": 1 + }, + "13": { + "name": "getAgentThreads", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "line": 1 + } + }, + "f": { + "0": 8, + "1": 1, + "2": 1, + "3": 4, + "4": 1, + "5": 0, + "6": 0, + "7": 0, + "8": 0, + "9": 0, + "10": 1, + "11": 1, + "12": 1, + "13": 1 + } + }, + "/Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/scaffold/console.gen.ts": { + "path": "/Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/scaffold/console.gen.ts", + "all": false, + "statementMap": { + "0": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "1": { "start": { "line": 2, "column": 0 }, "end": { "line": 2, "column": 48 } }, + "2": { "start": { "line": 3, "column": 0 }, "end": { "line": 3, "column": 3 } }, + "3": { "start": { "line": 4, "column": 0 }, "end": { "line": 4, "column": 120 } }, + "4": { "start": { "line": 5, "column": 0 }, "end": { "line": 5, "column": 0 } }, + "5": { "start": { "line": 6, "column": 0 }, "end": { "line": 6, "column": 59 } }, + "6": { "start": { "line": 7, "column": 0 }, "end": { "line": 7, "column": 18 } }, + "7": { "start": { "line": 8, "column": 0 }, "end": { "line": 8, "column": 16 } }, + "8": { "start": { "line": 9, "column": 0 }, "end": { "line": 9, "column": 4 } }, + "9": { "start": { "line": 10, "column": 0 }, "end": { "line": 10, "column": 18 } }, + "10": { "start": { "line": 11, "column": 0 }, "end": { "line": 11, "column": 4 } }, + "11": { "start": { "line": 12, "column": 0 }, "end": { "line": 12, "column": 18 } }, + "12": { "start": { "line": 13, "column": 0 }, "end": { "line": 13, "column": 43 } }, + "13": { "start": { "line": 14, "column": 0 }, "end": { "line": 14, "column": 15 } }, + "14": { "start": { "line": 15, "column": 0 }, "end": { "line": 15, "column": 14 } }, + "15": { "start": { "line": 16, "column": 0 }, "end": { "line": 16, "column": 53 } }, + "16": { "start": { "line": 17, "column": 0 }, "end": { "line": 17, "column": 48 } }, + "17": { "start": { "line": 18, "column": 0 }, "end": { "line": 18, "column": 28 } }, + "18": { "start": { "line": 19, "column": 0 }, "end": { "line": 19, "column": 4 } }, + "19": { "start": { "line": 20, "column": 0 }, "end": { "line": 20, "column": 2 } }, + "20": { "start": { "line": 21, "column": 0 }, "end": { "line": 21, "column": 0 } }, + "21": { "start": { "line": 22, "column": 0 }, "end": { "line": 22, "column": 60 } }, + "22": { "start": { "line": 23, "column": 0 }, "end": { "line": 23, "column": 25 } }, + "23": { "start": { "line": 24, "column": 0 }, "end": { "line": 24, "column": 44 } }, + "24": { "start": { "line": 25, "column": 0 }, "end": { "line": 25, "column": 3 } }, + "25": { "start": { "line": 26, "column": 0 }, "end": { "line": 26, "column": 18 } }, + "26": { "start": { "line": 27, "column": 0 }, "end": { "line": 27, "column": 53 } }, + "27": { "start": { "line": 28, "column": 0 }, "end": { "line": 28, "column": 15 } }, + "28": { "start": { "line": 29, "column": 0 }, "end": { "line": 29, "column": 14 } }, + "29": { "start": { "line": 30, "column": 0 }, "end": { "line": 30, "column": 50 } }, + "30": { "start": { "line": 31, "column": 0 }, "end": { "line": 31, "column": 50 } }, + "31": { "start": { "line": 32, "column": 0 }, "end": { "line": 32, "column": 18 } }, + "32": { "start": { "line": 33, "column": 0 }, "end": { "line": 33, "column": 43 } }, + "33": { "start": { "line": 34, "column": 0 }, "end": { "line": 34, "column": 5 } }, + "34": { "start": { "line": 35, "column": 0 }, "end": { "line": 35, "column": 9 } }, + "35": { "start": { "line": 36, "column": 0 }, "end": { "line": 36, "column": 55 } }, + "36": { "start": { "line": 37, "column": 0 }, "end": { "line": 37, "column": 36 } }, + "37": { "start": { "line": 38, "column": 0 }, "end": { "line": 38, "column": 13 } }, + "38": { "start": { "line": 39, "column": 0 }, "end": { "line": 39, "column": 51 } }, + "39": { "start": { "line": 40, "column": 0 }, "end": { "line": 40, "column": 36 } }, + "40": { "start": { "line": 41, "column": 0 }, "end": { "line": 41, "column": 5 } }, + "41": { "start": { "line": 42, "column": 0 }, "end": { "line": 42, "column": 4 } }, + "42": { "start": { "line": 43, "column": 0 }, "end": { "line": 43, "column": 2 } }, + "43": { "start": { "line": 44, "column": 0 }, "end": { "line": 44, "column": 0 } }, + "44": { "start": { "line": 45, "column": 0 }, "end": { "line": 45, "column": 60 } }, + "45": { "start": { "line": 46, "column": 0 }, "end": { "line": 46, "column": 41 } }, + "46": { "start": { "line": 47, "column": 0 }, "end": { "line": 47, "column": 22 } }, + "47": { "start": { "line": 48, "column": 0 }, "end": { "line": 48, "column": 3 } }, + "48": { "start": { "line": 49, "column": 0 }, "end": { "line": 49, "column": 18 } }, + "49": { "start": { "line": 50, "column": 0 }, "end": { "line": 50, "column": 45 } }, + "50": { "start": { "line": 51, "column": 0 }, "end": { "line": 51, "column": 15 } }, + "51": { "start": { "line": 52, "column": 0 }, "end": { "line": 52, "column": 14 } }, + "52": { "start": { "line": 53, "column": 0 }, "end": { "line": 53, "column": 57 } }, + "53": { "start": { "line": 54, "column": 0 }, "end": { "line": 54, "column": 36 } }, + "54": { "start": { "line": 55, "column": 0 }, "end": { "line": 55, "column": 44 } }, + "55": { "start": { "line": 56, "column": 0 }, "end": { "line": 56, "column": 12 } }, + "56": { "start": { "line": 57, "column": 0 }, "end": { "line": 57, "column": 48 } }, + "57": { "start": { "line": 58, "column": 0 }, "end": { "line": 58, "column": 5 } }, + "58": { "start": { "line": 59, "column": 0 }, "end": { "line": 59, "column": 28 } }, + "59": { "start": { "line": 60, "column": 0 }, "end": { "line": 60, "column": 4 } }, + "60": { "start": { "line": 61, "column": 0 }, "end": { "line": 61, "column": 2 } }, + "61": { "start": { "line": 62, "column": 0 }, "end": { "line": 62, "column": 0 } }, + "62": { "start": { "line": 63, "column": 0 }, "end": { "line": 63, "column": 58 } }, + "63": { "start": { "line": 64, "column": 0 }, "end": { "line": 64, "column": 23 } }, + "64": { "start": { "line": 65, "column": 0 }, "end": { "line": 65, "column": 21 } }, + "65": { "start": { "line": 66, "column": 0 }, "end": { "line": 66, "column": 3 } }, + "66": { "start": { "line": 67, "column": 0 }, "end": { "line": 67, "column": 18 } }, + "67": { "start": { "line": 68, "column": 0 }, "end": { "line": 68, "column": 68 } }, + "68": { "start": { "line": 69, "column": 0 }, "end": { "line": 69, "column": 15 } }, + "69": { "start": { "line": 70, "column": 0 }, "end": { "line": 70, "column": 14 } }, + "70": { "start": { "line": 71, "column": 0 }, "end": { "line": 71, "column": 46 } }, + "71": { "start": { "line": 72, "column": 0 }, "end": { "line": 72, "column": 52 } }, + "72": { "start": { "line": 73, "column": 0 }, "end": { "line": 73, "column": 21 } }, + "73": { "start": { "line": 74, "column": 0 }, "end": { "line": 74, "column": 4 } }, + "74": { "start": { "line": 75, "column": 0 }, "end": { "line": 75, "column": 2 } }, + "75": { "start": { "line": 76, "column": 0 }, "end": { "line": 76, "column": 0 } }, + "76": { "start": { "line": 77, "column": 0 }, "end": { "line": 77, "column": 58 } }, + "77": { "start": { "line": 78, "column": 0 }, "end": { "line": 78, "column": 23 } }, + "78": { "start": { "line": 79, "column": 0 }, "end": { "line": 79, "column": 44 } }, + "79": { "start": { "line": 80, "column": 0 }, "end": { "line": 80, "column": 3 } }, + "80": { "start": { "line": 81, "column": 0 }, "end": { "line": 81, "column": 18 } }, + "81": { "start": { "line": 82, "column": 0 }, "end": { "line": 82, "column": 51 } }, + "82": { "start": { "line": 83, "column": 0 }, "end": { "line": 83, "column": 15 } }, + "83": { "start": { "line": 84, "column": 0 }, "end": { "line": 84, "column": 14 } }, + "84": { "start": { "line": 85, "column": 0 }, "end": { "line": 85, "column": 46 } }, + "85": { "start": { "line": 86, "column": 0 }, "end": { "line": 86, "column": 52 } }, + "86": { "start": { "line": 87, "column": 0 }, "end": { "line": 87, "column": 18 } }, + "87": { "start": { "line": 88, "column": 0 }, "end": { "line": 88, "column": 43 } }, + "88": { "start": { "line": 89, "column": 0 }, "end": { "line": 89, "column": 5 } }, + "89": { "start": { "line": 90, "column": 0 }, "end": { "line": 90, "column": 55 } }, + "90": { "start": { "line": 91, "column": 0 }, "end": { "line": 91, "column": 34 } }, + "91": { "start": { "line": 92, "column": 0 }, "end": { "line": 92, "column": 4 } }, + "92": { "start": { "line": 93, "column": 0 }, "end": { "line": 93, "column": 2 } }, + "93": { "start": { "line": 94, "column": 0 }, "end": { "line": 94, "column": 0 } }, + "94": { "start": { "line": 95, "column": 0 }, "end": { "line": 95, "column": 47 } }, + "95": { "start": { "line": 96, "column": 0 }, "end": { "line": 96, "column": 14 } }, + "96": { "start": { "line": 97, "column": 0 }, "end": { "line": 97, "column": 11 } }, + "97": { "start": { "line": 98, "column": 0 }, "end": { "line": 98, "column": 24 } }, + "98": { "start": { "line": 99, "column": 0 }, "end": { "line": 99, "column": 43 } }, + "99": { "start": { "line": 100, "column": 0 }, "end": { "line": 100, "column": 20 } }, + "100": { "start": { "line": 101, "column": 0 }, "end": { "line": 101, "column": 16 } }, + "101": { "start": { "line": 102, "column": 0 }, "end": { "line": 102, "column": 45 } }, + "102": { "start": { "line": 103, "column": 0 }, "end": { "line": 103, "column": 6 } }, + "103": { "start": { "line": 104, "column": 0 }, "end": { "line": 104, "column": 4 } }, + "104": { "start": { "line": 105, "column": 0 }, "end": { "line": 105, "column": 2 } }, + "105": { "start": { "line": 106, "column": 0 }, "end": { "line": 106, "column": 0 } }, + "106": { "start": { "line": 107, "column": 0 }, "end": { "line": 107, "column": 63 } }, + "107": { "start": { "line": 108, "column": 0 }, "end": { "line": 108, "column": 68 } } + }, + "s": { + "0": 1, + "1": 1, + "2": 1, + "3": 1, + "4": 1, + "5": 1, + "6": 1, + "7": 1, + "8": 1, + "9": 1, + "10": 1, + "11": 1, + "12": 1, + "13": 1, + "14": 1, + "15": 1, + "16": 0, + "17": 0, + "18": 0, + "19": 1, + "20": 1, + "21": 1, + "22": 1, + "23": 1, + "24": 1, + "25": 1, + "26": 1, + "27": 1, + "28": 1, + "29": 1, + "30": 0, + "31": 0, + "32": 0, + "33": 0, + "34": 0, + "35": 0, + "36": 0, + "37": 0, + "38": 0, + "39": 0, + "40": 0, + "41": 0, + "42": 1, + "43": 1, + "44": 1, + "45": 1, + "46": 1, + "47": 1, + "48": 1, + "49": 1, + "50": 1, + "51": 1, + "52": 1, + "53": 0, + "54": 0, + "55": 0, + "56": 0, + "57": 0, + "58": 0, + "59": 0, + "60": 1, + "61": 1, + "62": 1, + "63": 1, + "64": 1, + "65": 1, + "66": 1, + "67": 1, + "68": 1, + "69": 1, + "70": 1, + "71": 0, + "72": 0, + "73": 0, + "74": 1, + "75": 1, + "76": 1, + "77": 1, + "78": 1, + "79": 1, + "80": 1, + "81": 1, + "82": 1, + "83": 1, + "84": 1, + "85": 0, + "86": 0, + "87": 0, + "88": 0, + "89": 0, + "90": 0, + "91": 0, + "92": 1, + "93": 1, + "94": 1, + "95": 1, + "96": 1, + "97": 1, + "98": 1, + "99": 1, + "100": 1, + "101": 1, + "102": 1, + "103": 1, + "104": 1, + "105": 1, + "106": 1, + "107": 1 + }, + "branchMap": { + "0": { + "type": "branch", + "line": 108, + "loc": { "start": { "line": 108, "column": 67 }, "end": { "line": 108, "column": 68 } }, + "locations": [ + { "start": { "line": 108, "column": 67 }, "end": { "line": 108, "column": 68 } } + ] + }, + "1": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }] + }, + "2": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }] + }, + "3": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }] + }, + "4": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }] + }, + "5": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }] + }, + "6": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }] + }, + "7": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }] + }, + "8": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }] + }, + "9": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }] + }, + "10": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }] + }, + "11": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }] + }, + "12": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }] + }, + "13": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }] + } + }, + "b": { + "0": [0], + "1": [5], + "2": [1], + "3": [6], + "4": [1], + "5": [0], + "6": [6], + "7": [5], + "8": [1], + "9": [1], + "10": [1], + "11": [1], + "12": [1], + "13": [1] + }, + "fnMap": { + "0": { + "name": "__name", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "line": 1 + }, + "1": { + "name": "__export", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "line": 1 + }, + "2": { + "name": "__copyProps", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "line": 1 + }, + "3": { + "name": "get", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "line": 1 + }, + "4": { + "name": "__toCommonJS", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "line": 1 + }, + "5": { + "name": "consoleRoutes", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "line": 1 + }, + "6": { + "name": "pikkuConsoleGetSecret", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "line": 1 + }, + "7": { + "name": "pikkuConsoleGetVariable", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "line": 1 + }, + "8": { + "name": "pikkuConsoleHasSecret", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "line": 1 + }, + "9": { + "name": "pikkuConsoleSetSecret", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "line": 1 + }, + "10": { + "name": "pikkuConsoleSetVariable", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "line": 1 + } + }, + "f": { "0": 5, "1": 1, "2": 1, "3": 5, "4": 1, "5": 0, "6": 1, "7": 1, "8": 1, "9": 1, "10": 1 } + }, + "/Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/scaffold/rpc-public.gen.ts": { + "path": "/Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/scaffold/rpc-public.gen.ts", + "all": false, + "statementMap": { + "0": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "1": { "start": { "line": 2, "column": 0 }, "end": { "line": 2, "column": 48 } }, + "2": { "start": { "line": 3, "column": 0 }, "end": { "line": 3, "column": 3 } }, + "3": { "start": { "line": 4, "column": 0 }, "end": { "line": 4, "column": 3 } }, + "4": { "start": { "line": 5, "column": 0 }, "end": { "line": 5, "column": 42 } }, + "5": { "start": { "line": 6, "column": 0 }, "end": { "line": 6, "column": 53 } }, + "6": { "start": { "line": 7, "column": 0 }, "end": { "line": 7, "column": 3 } }, + "7": { "start": { "line": 8, "column": 0 }, "end": { "line": 8, "column": 80 } }, + "8": { "start": { "line": 9, "column": 0 }, "end": { "line": 9, "column": 0 } }, + "9": { "start": { "line": 10, "column": 0 }, "end": { "line": 10, "column": 46 } }, + "10": { "start": { "line": 11, "column": 0 }, "end": { "line": 11, "column": 38 } }, + "11": { "start": { "line": 12, "column": 0 }, "end": { "line": 12, "column": 9 } }, + "12": { "start": { "line": 13, "column": 0 }, "end": { "line": 13, "column": 3 } }, + "13": { "start": { "line": 14, "column": 0 }, "end": { "line": 14, "column": 18 } }, + "14": { "start": { "line": 15, "column": 0 }, "end": { "line": 15, "column": 14 } }, + "15": { "start": { "line": 16, "column": 0 }, "end": { "line": 16, "column": 58 } }, + "16": { "start": { "line": 17, "column": 0 }, "end": { "line": 17, "column": 43 } }, + "17": { "start": { "line": 18, "column": 0 }, "end": { "line": 18, "column": 4 } }, + "18": { "start": { "line": 19, "column": 0 }, "end": { "line": 19, "column": 2 } }, + "19": { "start": { "line": 20, "column": 0 }, "end": { "line": 20, "column": 0 } }, + "20": { "start": { "line": 21, "column": 0 }, "end": { "line": 21, "column": 10 } }, + "21": { "start": { "line": 22, "column": 0 }, "end": { "line": 22, "column": 25 } }, + "22": { "start": { "line": 23, "column": 0 }, "end": { "line": 23, "column": 17 } }, + "23": { "start": { "line": 24, "column": 0 }, "end": { "line": 24, "column": 14 } }, + "24": { "start": { "line": 25, "column": 0 }, "end": { "line": 25, "column": 18 } }, + "25": { "start": { "line": 26, "column": 0 }, "end": { "line": 26, "column": 2 } } + }, + "s": { + "0": 0, + "1": 1, + "2": 1, + "3": 1, + "4": 1, + "5": 1, + "6": 1, + "7": 1, + "8": 1, + "9": 1, + "10": 1, + "11": 1, + "12": 1, + "13": 1, + "14": 1, + "15": 1, + "16": 0, + "17": 0, + "18": 1, + "19": 1, + "20": 1, + "21": 1, + "22": 1, + "23": 1, + "24": 1, + "25": 1 + }, + "branchMap": { + "0": { + "type": "branch", + "line": 26, + "loc": { "start": { "line": 26, "column": 1 }, "end": { "line": 26, "column": 2 } }, + "locations": [{ "start": { "line": 26, "column": 1 }, "end": { "line": 26, "column": 2 } }] + }, + "1": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }] + }, + "2": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }] + }, + "3": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }] + }, + "4": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }] + }, + "5": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }] + } + }, + "b": { "0": [0], "1": [1], "2": [1], "3": [1], "4": [0], "5": [1] }, + "fnMap": { + "0": { + "name": "__name", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "line": 1 + }, + "1": { + "name": "__export", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "line": 1 + }, + "2": { + "name": "__copyProps", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "line": 1 + }, + "3": { + "name": "get", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "line": 1 + }, + "4": { + "name": "__toCommonJS", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "line": 1 + }, + "5": { + "name": "rpcCaller", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "line": 1 + } + }, + "f": { "0": 1, "1": 1, "2": 1, "3": 0, "4": 1, "5": 0 } + }, + "/Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/scaffold/rpc-remote.gen.ts": { + "path": "/Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/scaffold/rpc-remote.gen.ts", + "all": false, + "statementMap": { + "0": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "1": { "start": { "line": 2, "column": 0 }, "end": { "line": 2, "column": 48 } }, + "2": { "start": { "line": 3, "column": 0 }, "end": { "line": 3, "column": 3 } }, + "3": { "start": { "line": 4, "column": 0 }, "end": { "line": 4, "column": 3 } }, + "4": { "start": { "line": 5, "column": 0 }, "end": { "line": 5, "column": 68 } }, + "5": { "start": { "line": 6, "column": 0 }, "end": { "line": 6, "column": 53 } }, + "6": { "start": { "line": 7, "column": 0 }, "end": { "line": 7, "column": 3 } }, + "7": { "start": { "line": 8, "column": 0 }, "end": { "line": 8, "column": 80 } }, + "8": { "start": { "line": 9, "column": 0 }, "end": { "line": 9, "column": 66 } }, + "9": { "start": { "line": 10, "column": 0 }, "end": { "line": 10, "column": 0 } }, + "10": { "start": { "line": 11, "column": 0 }, "end": { "line": 11, "column": 53 } }, + "11": { "start": { "line": 12, "column": 0 }, "end": { "line": 12, "column": 38 } }, + "12": { "start": { "line": 13, "column": 0 }, "end": { "line": 13, "column": 9 } }, + "13": { "start": { "line": 14, "column": 0 }, "end": { "line": 14, "column": 3 } }, + "14": { "start": { "line": 15, "column": 0 }, "end": { "line": 15, "column": 18 } }, + "15": { "start": { "line": 16, "column": 0 }, "end": { "line": 16, "column": 58 } }, + "16": { "start": { "line": 17, "column": 0 }, "end": { "line": 17, "column": 51 } }, + "17": { "start": { "line": 18, "column": 0 }, "end": { "line": 18, "column": 4 } }, + "18": { "start": { "line": 19, "column": 0 }, "end": { "line": 19, "column": 15 } }, + "19": { "start": { "line": 20, "column": 0 }, "end": { "line": 20, "column": 2 } }, + "20": { "start": { "line": 21, "column": 0 }, "end": { "line": 21, "column": 0 } }, + "21": { "start": { "line": 22, "column": 0 }, "end": { "line": 22, "column": 10 } }, + "22": { "start": { "line": 23, "column": 0 }, "end": { "line": 23, "column": 32 } }, + "23": { "start": { "line": 24, "column": 0 }, "end": { "line": 24, "column": 17 } }, + "24": { "start": { "line": 25, "column": 0 }, "end": { "line": 25, "column": 14 } }, + "25": { "start": { "line": 26, "column": 0 }, "end": { "line": 26, "column": 42 } }, + "26": { "start": { "line": 27, "column": 0 }, "end": { "line": 27, "column": 25 } }, + "27": { "start": { "line": 28, "column": 0 }, "end": { "line": 28, "column": 2 } } + }, + "s": { + "0": 1, + "1": 1, + "2": 1, + "3": 1, + "4": 1, + "5": 1, + "6": 1, + "7": 1, + "8": 1, + "9": 1, + "10": 1, + "11": 1, + "12": 1, + "13": 1, + "14": 1, + "15": 1, + "16": 0, + "17": 0, + "18": 1, + "19": 1, + "20": 1, + "21": 1, + "22": 1, + "23": 1, + "24": 1, + "25": 1, + "26": 1, + "27": 1 + }, + "branchMap": { + "0": { + "type": "branch", + "line": 28, + "loc": { "start": { "line": 28, "column": 1 }, "end": { "line": 28, "column": 2 } }, + "locations": [{ "start": { "line": 28, "column": 1 }, "end": { "line": 28, "column": 2 } }] + }, + "1": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }] + }, + "2": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }] + }, + "3": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }] + }, + "4": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }] + }, + "5": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }] + }, + "6": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }] + }, + "7": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }] + } + }, + "b": { "0": [0], "1": [1], "2": [1], "3": [1], "4": [0], "5": [1], "6": [1], "7": [1] }, + "fnMap": { + "0": { + "name": "__name", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "line": 1 + }, + "1": { + "name": "__export", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "line": 1 + }, + "2": { + "name": "__copyProps", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "line": 1 + }, + "3": { + "name": "get", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "line": 1 + }, + "4": { + "name": "__toCommonJS", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "line": 1 + }, + "5": { + "name": "remoteRPCHandler", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "line": 1 + } + }, + "f": { "0": 1, "1": 1, "2": 1, "3": 1, "4": 1, "5": 1 } + }, + "/Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/scaffold/workflow-routes.gen.ts": { + "path": "/Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/scaffold/workflow-routes.gen.ts", + "all": false, + "statementMap": { + "0": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "1": { "start": { "line": 2, "column": 0 }, "end": { "line": 2, "column": 48 } }, + "2": { "start": { "line": 3, "column": 0 }, "end": { "line": 3, "column": 3 } }, + "3": { "start": { "line": 4, "column": 0 }, "end": { "line": 4, "column": 3 } }, + "4": { "start": { "line": 5, "column": 0 }, "end": { "line": 5, "column": 33 } }, + "5": { "start": { "line": 6, "column": 0 }, "end": { "line": 6, "column": 53 } }, + "6": { "start": { "line": 7, "column": 0 }, "end": { "line": 7, "column": 3 } }, + "7": { "start": { "line": 8, "column": 0 }, "end": { "line": 8, "column": 86 } }, + "8": { "start": { "line": 9, "column": 0 }, "end": { "line": 9, "column": 56 } }, + "9": { "start": { "line": 10, "column": 0 }, "end": { "line": 10, "column": 61 } }, + "10": { "start": { "line": 11, "column": 0 }, "end": { "line": 11, "column": 0 } }, + "11": { "start": { "line": 12, "column": 0 }, "end": { "line": 12, "column": 83 } }, + "12": { "start": { "line": 13, "column": 0 }, "end": { "line": 13, "column": 84 } }, + "13": { "start": { "line": 14, "column": 0 }, "end": { "line": 14, "column": 1 } }, + "14": { "start": { "line": 15, "column": 0 }, "end": { "line": 15, "column": 0 } }, + "15": { "start": { "line": 16, "column": 0 }, "end": { "line": 16, "column": 92 } }, + "16": { "start": { "line": 17, "column": 0 }, "end": { "line": 17, "column": 90 } }, + "17": { "start": { "line": 18, "column": 0 }, "end": { "line": 18, "column": 1 } }, + "18": { "start": { "line": 19, "column": 0 }, "end": { "line": 19, "column": 0 } }, + "19": { "start": { "line": 20, "column": 0 }, "end": { "line": 20, "column": 52 } }, + "20": { "start": { "line": 21, "column": 0 }, "end": { "line": 21, "column": 43 } }, + "21": { "start": { "line": 22, "column": 0 }, "end": { "line": 22, "column": 19 } }, + "22": { "start": { "line": 23, "column": 0 }, "end": { "line": 23, "column": 3 } }, + "23": { "start": { "line": 24, "column": 0 }, "end": { "line": 24, "column": 18 } }, + "24": { "start": { "line": 25, "column": 0 }, "end": { "line": 25, "column": 14 } }, + "25": { "start": { "line": 26, "column": 0 }, "end": { "line": 26, "column": 77 } }, + "26": { "start": { "line": 27, "column": 0 }, "end": { "line": 27, "column": 74 } }, + "27": { "start": { "line": 28, "column": 0 }, "end": { "line": 28, "column": 74 } }, + "28": { "start": { "line": 29, "column": 0 }, "end": { "line": 29, "column": 73 } }, + "29": { "start": { "line": 30, "column": 0 }, "end": { "line": 30, "column": 42 } }, + "30": { "start": { "line": 31, "column": 0 }, "end": { "line": 31, "column": 76 } }, + "31": { "start": { "line": 32, "column": 0 }, "end": { "line": 32, "column": 4 } }, + "32": { "start": { "line": 33, "column": 0 }, "end": { "line": 33, "column": 2 } }, + "33": { "start": { "line": 34, "column": 0 }, "end": { "line": 34, "column": 0 } }, + "34": { "start": { "line": 35, "column": 0 }, "end": { "line": 35, "column": 51 } }, + "35": { "start": { "line": 36, "column": 0 }, "end": { "line": 36, "column": 43 } }, + "36": { "start": { "line": 37, "column": 0 }, "end": { "line": 37, "column": 9 } }, + "37": { "start": { "line": 38, "column": 0 }, "end": { "line": 38, "column": 3 } }, + "38": { "start": { "line": 39, "column": 0 }, "end": { "line": 39, "column": 18 } }, + "39": { "start": { "line": 40, "column": 0 }, "end": { "line": 40, "column": 14 } }, + "40": { "start": { "line": 41, "column": 0 }, "end": { "line": 41, "column": 73 } }, + "41": { "start": { "line": 42, "column": 0 }, "end": { "line": 42, "column": 42 } }, + "42": { "start": { "line": 43, "column": 0 }, "end": { "line": 43, "column": 79 } }, + "43": { "start": { "line": 44, "column": 0 }, "end": { "line": 44, "column": 4 } }, + "44": { "start": { "line": 45, "column": 0 }, "end": { "line": 45, "column": 2 } }, + "45": { "start": { "line": 46, "column": 0 }, "end": { "line": 46, "column": 0 } }, + "46": { "start": { "line": 47, "column": 0 }, "end": { "line": 47, "column": 58 } }, + "47": { "start": { "line": 48, "column": 0 }, "end": { "line": 48, "column": 42 } }, + "48": { "start": { "line": 49, "column": 0 }, "end": { "line": 49, "column": 19 } }, + "49": { "start": { "line": 50, "column": 0 }, "end": { "line": 50, "column": 3 } }, + "50": { "start": { "line": 51, "column": 0 }, "end": { "line": 51, "column": 18 } }, + "51": { "start": { "line": 52, "column": 0 }, "end": { "line": 52, "column": 14 } }, + "52": { "start": { "line": 53, "column": 0 }, "end": { "line": 53, "column": 51 } }, + "53": { "start": { "line": 54, "column": 0 }, "end": { "line": 54, "column": 42 } }, + "54": { "start": { "line": 55, "column": 0 }, "end": { "line": 55, "column": 60 } }, + "55": { "start": { "line": 56, "column": 0 }, "end": { "line": 56, "column": 59 } }, + "56": { "start": { "line": 57, "column": 0 }, "end": { "line": 57, "column": 17 } }, + "57": { "start": { "line": 58, "column": 0 }, "end": { "line": 58, "column": 4 } }, + "58": { "start": { "line": 59, "column": 0 }, "end": { "line": 59, "column": 2 } }, + "59": { "start": { "line": 60, "column": 0 }, "end": { "line": 60, "column": 0 } }, + "60": { "start": { "line": 61, "column": 0 }, "end": { "line": 61, "column": 3 } }, + "61": { "start": { "line": 62, "column": 0 }, "end": { "line": 62, "column": 71 } }, + "62": { "start": { "line": 63, "column": 0 }, "end": { "line": 63, "column": 83 } }, + "63": { "start": { "line": 64, "column": 0 }, "end": { "line": 64, "column": 3 } }, + "64": { "start": { "line": 65, "column": 0 }, "end": { "line": 65, "column": 57 } }, + "65": { "start": { "line": 66, "column": 0 }, "end": { "line": 66, "column": 42 } }, + "66": { "start": { "line": 67, "column": 0 }, "end": { "line": 67, "column": 9 } }, + "67": { "start": { "line": 68, "column": 0 }, "end": { "line": 68, "column": 3 } }, + "68": { "start": { "line": 69, "column": 0 }, "end": { "line": 69, "column": 18 } }, + "69": { "start": { "line": 70, "column": 0 }, "end": { "line": 70, "column": 14 } }, + "70": { "start": { "line": 71, "column": 0 }, "end": { "line": 71, "column": 67 } }, + "71": { "start": { "line": 72, "column": 0 }, "end": { "line": 72, "column": 48 } }, + "72": { "start": { "line": 73, "column": 0 }, "end": { "line": 73, "column": 24 } }, + "73": { "start": { "line": 74, "column": 0 }, "end": { "line": 74, "column": 0 } }, + "74": { "start": { "line": 75, "column": 0 }, "end": { "line": 75, "column": 74 } }, + "75": { "start": { "line": 76, "column": 0 }, "end": { "line": 76, "column": 21 } }, + "76": { "start": { "line": 77, "column": 0 }, "end": { "line": 77, "column": 24 } }, + "77": { "start": { "line": 78, "column": 0 }, "end": { "line": 78, "column": 0 } }, + "78": { "start": { "line": 79, "column": 0 }, "end": { "line": 79, "column": 30 } }, + "79": { "start": { "line": 80, "column": 0 }, "end": { "line": 80, "column": 56 } }, + "80": { "start": { "line": 81, "column": 0 }, "end": { "line": 81, "column": 17 } }, + "81": { "start": { "line": 82, "column": 0 }, "end": { "line": 82, "column": 23 } }, + "82": { "start": { "line": 83, "column": 0 }, "end": { "line": 83, "column": 20 } }, + "83": { "start": { "line": 84, "column": 0 }, "end": { "line": 84, "column": 7 } }, + "84": { "start": { "line": 85, "column": 0 }, "end": { "line": 85, "column": 0 } }, + "85": { "start": { "line": 86, "column": 0 }, "end": { "line": 86, "column": 63 } }, + "86": { "start": { "line": 87, "column": 0 }, "end": { "line": 87, "column": 0 } }, + "87": { "start": { "line": 88, "column": 0 }, "end": { "line": 88, "column": 43 } }, + "88": { "start": { "line": 89, "column": 0 }, "end": { "line": 89, "column": 37 } }, + "89": { "start": { "line": 90, "column": 0 }, "end": { "line": 90, "column": 66 } }, + "90": { "start": { "line": 91, "column": 0 }, "end": { "line": 91, "column": 23 } }, + "91": { "start": { "line": 92, "column": 0 }, "end": { "line": 92, "column": 21 } }, + "92": { "start": { "line": 93, "column": 0 }, "end": { "line": 93, "column": 12 } }, + "93": { "start": { "line": 94, "column": 0 }, "end": { "line": 94, "column": 9 } }, + "94": { "start": { "line": 95, "column": 0 }, "end": { "line": 95, "column": 22 } }, + "95": { "start": { "line": 96, "column": 0 }, "end": { "line": 96, "column": 23 } }, + "96": { "start": { "line": 97, "column": 0 }, "end": { "line": 97, "column": 30 } }, + "97": { "start": { "line": 98, "column": 0 }, "end": { "line": 98, "column": 46 } }, + "98": { "start": { "line": 99, "column": 0 }, "end": { "line": 99, "column": 43 } }, + "99": { "start": { "line": 100, "column": 0 }, "end": { "line": 100, "column": 35 } }, + "100": { "start": { "line": 101, "column": 0 }, "end": { "line": 101, "column": 64 } }, + "101": { "start": { "line": 102, "column": 0 }, "end": { "line": 102, "column": 14 } }, + "102": { "start": { "line": 103, "column": 0 }, "end": { "line": 103, "column": 12 } }, + "103": { "start": { "line": 104, "column": 0 }, "end": { "line": 104, "column": 10 } }, + "104": { "start": { "line": 105, "column": 0 }, "end": { "line": 105, "column": 23 } }, + "105": { "start": { "line": 106, "column": 0 }, "end": { "line": 106, "column": 7 } }, + "106": { "start": { "line": 107, "column": 0 }, "end": { "line": 107, "column": 0 } }, + "107": { "start": { "line": 108, "column": 0 }, "end": { "line": 108, "column": 35 } }, + "108": { "start": { "line": 109, "column": 0 }, "end": { "line": 109, "column": 22 } }, + "109": { "start": { "line": 110, "column": 0 }, "end": { "line": 110, "column": 94 } }, + "110": { "start": { "line": 111, "column": 0 }, "end": { "line": 111, "column": 8 } }, + "111": { "start": { "line": 112, "column": 0 }, "end": { "line": 112, "column": 0 } }, + "112": { "start": { "line": 113, "column": 0 }, "end": { "line": 113, "column": 30 } }, + "113": { "start": { "line": 114, "column": 0 }, "end": { "line": 114, "column": 23 } }, + "114": { "start": { "line": 115, "column": 0 }, "end": { "line": 115, "column": 22 } }, + "115": { "start": { "line": 116, "column": 0 }, "end": { "line": 116, "column": 25 } }, + "116": { "start": { "line": 117, "column": 0 }, "end": { "line": 117, "column": 29 } }, + "117": { "start": { "line": 118, "column": 0 }, "end": { "line": 118, "column": 74 } }, + "118": { "start": { "line": 119, "column": 0 }, "end": { "line": 119, "column": 33 } }, + "119": { "start": { "line": 120, "column": 0 }, "end": { "line": 120, "column": 29 } }, + "120": { "start": { "line": 121, "column": 0 }, "end": { "line": 121, "column": 14 } }, + "121": { "start": { "line": 122, "column": 0 }, "end": { "line": 122, "column": 10 } }, + "122": { "start": { "line": 123, "column": 0 }, "end": { "line": 123, "column": 7 } }, + "123": { "start": { "line": 124, "column": 0 }, "end": { "line": 124, "column": 0 } }, + "124": { "start": { "line": 125, "column": 0 }, "end": { "line": 125, "column": 45 } }, + "125": { "start": { "line": 126, "column": 0 }, "end": { "line": 126, "column": 38 } }, + "126": { "start": { "line": 127, "column": 0 }, "end": { "line": 127, "column": 23 } }, + "127": { "start": { "line": 128, "column": 0 }, "end": { "line": 128, "column": 20 } }, + "128": { "start": { "line": 129, "column": 0 }, "end": { "line": 129, "column": 7 } }, + "129": { "start": { "line": 130, "column": 0 }, "end": { "line": 130, "column": 17 } }, + "130": { "start": { "line": 131, "column": 0 }, "end": { "line": 131, "column": 5 } }, + "131": { "start": { "line": 132, "column": 0 }, "end": { "line": 132, "column": 0 } }, + "132": { "start": { "line": 133, "column": 0 }, "end": { "line": 133, "column": 39 } }, + "133": { "start": { "line": 134, "column": 0 }, "end": { "line": 134, "column": 31 } }, + "134": { "start": { "line": 135, "column": 0 }, "end": { "line": 135, "column": 0 } }, + "135": { "start": { "line": 136, "column": 0 }, "end": { "line": 136, "column": 42 } }, + "136": { "start": { "line": 137, "column": 0 }, "end": { "line": 137, "column": 48 } }, + "137": { "start": { "line": 138, "column": 0 }, "end": { "line": 138, "column": 33 } }, + "138": { "start": { "line": 139, "column": 0 }, "end": { "line": 139, "column": 20 } }, + "139": { "start": { "line": 140, "column": 0 }, "end": { "line": 140, "column": 33 } }, + "140": { "start": { "line": 141, "column": 0 }, "end": { "line": 141, "column": 19 } }, + "141": { "start": { "line": 142, "column": 0 }, "end": { "line": 142, "column": 9 } }, + "142": { "start": { "line": 143, "column": 0 }, "end": { "line": 143, "column": 13 } }, + "143": { "start": { "line": 144, "column": 0 }, "end": { "line": 144, "column": 6 } }, + "144": { "start": { "line": 145, "column": 0 }, "end": { "line": 145, "column": 4 } }, + "145": { "start": { "line": 146, "column": 0 }, "end": { "line": 146, "column": 2 } }, + "146": { "start": { "line": 147, "column": 0 }, "end": { "line": 147, "column": 0 } }, + "147": { "start": { "line": 148, "column": 0 }, "end": { "line": 148, "column": 3 } }, + "148": { "start": { "line": 149, "column": 0 }, "end": { "line": 149, "column": 75 } }, + "149": { "start": { "line": 150, "column": 0 }, "end": { "line": 150, "column": 52 } }, + "150": { "start": { "line": 151, "column": 0 }, "end": { "line": 151, "column": 3 } }, + "151": { "start": { "line": 152, "column": 0 }, "end": { "line": 152, "column": 61 } }, + "152": { "start": { "line": 153, "column": 0 }, "end": { "line": 153, "column": 42 } }, + "153": { "start": { "line": 154, "column": 0 }, "end": { "line": 154, "column": 9 } }, + "154": { "start": { "line": 155, "column": 0 }, "end": { "line": 155, "column": 3 } }, + "155": { "start": { "line": 156, "column": 0 }, "end": { "line": 156, "column": 18 } }, + "156": { "start": { "line": 157, "column": 0 }, "end": { "line": 157, "column": 14 } }, + "157": { "start": { "line": 158, "column": 0 }, "end": { "line": 158, "column": 67 } }, + "158": { "start": { "line": 159, "column": 0 }, "end": { "line": 159, "column": 48 } }, + "159": { "start": { "line": 160, "column": 0 }, "end": { "line": 160, "column": 24 } }, + "160": { "start": { "line": 161, "column": 0 }, "end": { "line": 161, "column": 0 } }, + "161": { "start": { "line": 162, "column": 0 }, "end": { "line": 162, "column": 74 } }, + "162": { "start": { "line": 163, "column": 0 }, "end": { "line": 163, "column": 21 } }, + "163": { "start": { "line": 164, "column": 0 }, "end": { "line": 164, "column": 24 } }, + "164": { "start": { "line": 165, "column": 0 }, "end": { "line": 165, "column": 0 } }, + "165": { "start": { "line": 166, "column": 0 }, "end": { "line": 166, "column": 30 } }, + "166": { "start": { "line": 167, "column": 0 }, "end": { "line": 167, "column": 56 } }, + "167": { "start": { "line": 168, "column": 0 }, "end": { "line": 168, "column": 17 } }, + "168": { "start": { "line": 169, "column": 0 }, "end": { "line": 169, "column": 23 } }, + "169": { "start": { "line": 170, "column": 0 }, "end": { "line": 170, "column": 20 } }, + "170": { "start": { "line": 171, "column": 0 }, "end": { "line": 171, "column": 7 } }, + "171": { "start": { "line": 172, "column": 0 }, "end": { "line": 172, "column": 0 } }, + "172": { "start": { "line": 173, "column": 0 }, "end": { "line": 173, "column": 63 } }, + "173": { "start": { "line": 174, "column": 0 }, "end": { "line": 174, "column": 0 } }, + "174": { "start": { "line": 175, "column": 0 }, "end": { "line": 175, "column": 43 } }, + "175": { "start": { "line": 176, "column": 0 }, "end": { "line": 176, "column": 37 } }, + "176": { "start": { "line": 177, "column": 0 }, "end": { "line": 177, "column": 66 } }, + "177": { "start": { "line": 178, "column": 0 }, "end": { "line": 178, "column": 23 } }, + "178": { "start": { "line": 179, "column": 0 }, "end": { "line": 179, "column": 21 } }, + "179": { "start": { "line": 180, "column": 0 }, "end": { "line": 180, "column": 12 } }, + "180": { "start": { "line": 181, "column": 0 }, "end": { "line": 181, "column": 9 } }, + "181": { "start": { "line": 182, "column": 0 }, "end": { "line": 182, "column": 22 } }, + "182": { "start": { "line": 183, "column": 0 }, "end": { "line": 183, "column": 23 } }, + "183": { "start": { "line": 184, "column": 0 }, "end": { "line": 184, "column": 30 } }, + "184": { "start": { "line": 185, "column": 0 }, "end": { "line": 185, "column": 46 } }, + "185": { "start": { "line": 186, "column": 0 }, "end": { "line": 186, "column": 43 } }, + "186": { "start": { "line": 187, "column": 0 }, "end": { "line": 187, "column": 35 } }, + "187": { "start": { "line": 188, "column": 0 }, "end": { "line": 188, "column": 64 } }, + "188": { "start": { "line": 189, "column": 0 }, "end": { "line": 189, "column": 14 } }, + "189": { "start": { "line": 190, "column": 0 }, "end": { "line": 190, "column": 12 } }, + "190": { "start": { "line": 191, "column": 0 }, "end": { "line": 191, "column": 10 } }, + "191": { "start": { "line": 192, "column": 0 }, "end": { "line": 192, "column": 23 } }, + "192": { "start": { "line": 193, "column": 0 }, "end": { "line": 193, "column": 7 } }, + "193": { "start": { "line": 194, "column": 0 }, "end": { "line": 194, "column": 0 } }, + "194": { "start": { "line": 195, "column": 0 }, "end": { "line": 195, "column": 35 } }, + "195": { "start": { "line": 196, "column": 0 }, "end": { "line": 196, "column": 22 } }, + "196": { "start": { "line": 197, "column": 0 }, "end": { "line": 197, "column": 22 } }, + "197": { "start": { "line": 198, "column": 0 }, "end": { "line": 198, "column": 94 } }, + "198": { "start": { "line": 199, "column": 0 }, "end": { "line": 199, "column": 8 } }, + "199": { "start": { "line": 200, "column": 0 }, "end": { "line": 200, "column": 0 } }, + "200": { "start": { "line": 201, "column": 0 }, "end": { "line": 201, "column": 30 } }, + "201": { "start": { "line": 202, "column": 0 }, "end": { "line": 202, "column": 23 } }, + "202": { "start": { "line": 203, "column": 0 }, "end": { "line": 203, "column": 22 } }, + "203": { "start": { "line": 204, "column": 0 }, "end": { "line": 204, "column": 25 } }, + "204": { "start": { "line": 205, "column": 0 }, "end": { "line": 205, "column": 29 } }, + "205": { "start": { "line": 206, "column": 0 }, "end": { "line": 206, "column": 29 } }, + "206": { "start": { "line": 207, "column": 0 }, "end": { "line": 207, "column": 27 } }, + "207": { "start": { "line": 208, "column": 0 }, "end": { "line": 208, "column": 95 } }, + "208": { "start": { "line": 209, "column": 0 }, "end": { "line": 209, "column": 33 } }, + "209": { "start": { "line": 210, "column": 0 }, "end": { "line": 210, "column": 29 } }, + "210": { "start": { "line": 211, "column": 0 }, "end": { "line": 211, "column": 66 } }, + "211": { "start": { "line": 212, "column": 0 }, "end": { "line": 212, "column": 14 } }, + "212": { "start": { "line": 213, "column": 0 }, "end": { "line": 213, "column": 10 } }, + "213": { "start": { "line": 214, "column": 0 }, "end": { "line": 214, "column": 7 } }, + "214": { "start": { "line": 215, "column": 0 }, "end": { "line": 215, "column": 0 } }, + "215": { "start": { "line": 216, "column": 0 }, "end": { "line": 216, "column": 45 } }, + "216": { "start": { "line": 217, "column": 0 }, "end": { "line": 217, "column": 38 } }, + "217": { "start": { "line": 218, "column": 0 }, "end": { "line": 218, "column": 23 } }, + "218": { "start": { "line": 219, "column": 0 }, "end": { "line": 219, "column": 20 } }, + "219": { "start": { "line": 220, "column": 0 }, "end": { "line": 220, "column": 7 } }, + "220": { "start": { "line": 221, "column": 0 }, "end": { "line": 221, "column": 17 } }, + "221": { "start": { "line": 222, "column": 0 }, "end": { "line": 222, "column": 5 } }, + "222": { "start": { "line": 223, "column": 0 }, "end": { "line": 223, "column": 0 } }, + "223": { "start": { "line": 224, "column": 0 }, "end": { "line": 224, "column": 39 } }, + "224": { "start": { "line": 225, "column": 0 }, "end": { "line": 225, "column": 31 } }, + "225": { "start": { "line": 226, "column": 0 }, "end": { "line": 226, "column": 0 } }, + "226": { "start": { "line": 227, "column": 0 }, "end": { "line": 227, "column": 42 } }, + "227": { "start": { "line": 228, "column": 0 }, "end": { "line": 228, "column": 48 } }, + "228": { "start": { "line": 229, "column": 0 }, "end": { "line": 229, "column": 33 } }, + "229": { "start": { "line": 230, "column": 0 }, "end": { "line": 230, "column": 20 } }, + "230": { "start": { "line": 231, "column": 0 }, "end": { "line": 231, "column": 33 } }, + "231": { "start": { "line": 232, "column": 0 }, "end": { "line": 232, "column": 19 } }, + "232": { "start": { "line": 233, "column": 0 }, "end": { "line": 233, "column": 9 } }, + "233": { "start": { "line": 234, "column": 0 }, "end": { "line": 234, "column": 13 } }, + "234": { "start": { "line": 235, "column": 0 }, "end": { "line": 235, "column": 6 } }, + "235": { "start": { "line": 236, "column": 0 }, "end": { "line": 236, "column": 4 } }, + "236": { "start": { "line": 237, "column": 0 }, "end": { "line": 237, "column": 2 } }, + "237": { "start": { "line": 238, "column": 0 }, "end": { "line": 238, "column": 0 } }, + "238": { "start": { "line": 239, "column": 0 }, "end": { "line": 239, "column": 49 } }, + "239": { "start": { "line": 240, "column": 0 }, "end": { "line": 240, "column": 59 } }, + "240": { "start": { "line": 241, "column": 0 }, "end": { "line": 241, "column": 19 } }, + "241": { "start": { "line": 242, "column": 0 }, "end": { "line": 242, "column": 3 } }, + "242": { "start": { "line": 243, "column": 0 }, "end": { "line": 243, "column": 14 } }, + "243": { "start": { "line": 244, "column": 0 }, "end": { "line": 244, "column": 70 } }, + "244": { "start": { "line": 245, "column": 0 }, "end": { "line": 245, "column": 52 } }, + "245": { "start": { "line": 246, "column": 0 }, "end": { "line": 246, "column": 81 } }, + "246": { "start": { "line": 247, "column": 0 }, "end": { "line": 247, "column": 42 } }, + "247": { "start": { "line": 248, "column": 0 }, "end": { "line": 248, "column": 99 } }, + "248": { "start": { "line": 249, "column": 0 }, "end": { "line": 249, "column": 4 } }, + "249": { "start": { "line": 250, "column": 0 }, "end": { "line": 250, "column": 2 } }, + "250": { "start": { "line": 251, "column": 0 }, "end": { "line": 251, "column": 0 } }, + "251": { "start": { "line": 252, "column": 0 }, "end": { "line": 252, "column": 16 } }, + "252": { "start": { "line": 253, "column": 0 }, "end": { "line": 253, "column": 14 } }, + "253": { "start": { "line": 254, "column": 0 }, "end": { "line": 254, "column": 11 } }, + "254": { "start": { "line": 255, "column": 0 }, "end": { "line": 255, "column": 20 } }, + "255": { "start": { "line": 256, "column": 0 }, "end": { "line": 256, "column": 45 } }, + "256": { "start": { "line": 257, "column": 0 }, "end": { "line": 257, "column": 21 } }, + "257": { "start": { "line": 258, "column": 0 }, "end": { "line": 258, "column": 28 } }, + "258": { "start": { "line": 259, "column": 0 }, "end": { "line": 259, "column": 6 } }, + "259": { "start": { "line": 260, "column": 0 }, "end": { "line": 260, "column": 18 } }, + "260": { "start": { "line": 261, "column": 0 }, "end": { "line": 261, "column": 43 } }, + "261": { "start": { "line": 262, "column": 0 }, "end": { "line": 262, "column": 21 } }, + "262": { "start": { "line": 263, "column": 0 }, "end": { "line": 263, "column": 27 } }, + "263": { "start": { "line": 264, "column": 0 }, "end": { "line": 264, "column": 6 } }, + "264": { "start": { "line": 265, "column": 0 }, "end": { "line": 265, "column": 21 } }, + "265": { "start": { "line": 266, "column": 0 }, "end": { "line": 266, "column": 53 } }, + "266": { "start": { "line": 267, "column": 0 }, "end": { "line": 267, "column": 20 } }, + "267": { "start": { "line": 268, "column": 0 }, "end": { "line": 268, "column": 34 } }, + "268": { "start": { "line": 269, "column": 0 }, "end": { "line": 269, "column": 6 } }, + "269": { "start": { "line": 270, "column": 0 }, "end": { "line": 270, "column": 27 } }, + "270": { "start": { "line": 271, "column": 0 }, "end": { "line": 271, "column": 60 } }, + "271": { "start": { "line": 272, "column": 0 }, "end": { "line": 272, "column": 20 } }, + "272": { "start": { "line": 273, "column": 0 }, "end": { "line": 273, "column": 16 } }, + "273": { "start": { "line": 274, "column": 0 }, "end": { "line": 274, "column": 33 } }, + "274": { "start": { "line": 275, "column": 0 }, "end": { "line": 275, "column": 6 } }, + "275": { "start": { "line": 276, "column": 0 }, "end": { "line": 276, "column": 31 } }, + "276": { "start": { "line": 277, "column": 0 }, "end": { "line": 277, "column": 65 } }, + "277": { "start": { "line": 278, "column": 0 }, "end": { "line": 278, "column": 20 } }, + "278": { "start": { "line": 279, "column": 0 }, "end": { "line": 279, "column": 16 } }, + "279": { "start": { "line": 280, "column": 0 }, "end": { "line": 280, "column": 37 } }, + "280": { "start": { "line": 281, "column": 0 }, "end": { "line": 281, "column": 6 } }, + "281": { "start": { "line": 282, "column": 0 }, "end": { "line": 282, "column": 17 } }, + "282": { "start": { "line": 283, "column": 0 }, "end": { "line": 283, "column": 53 } }, + "283": { "start": { "line": 284, "column": 0 }, "end": { "line": 284, "column": 21 } }, + "284": { "start": { "line": 285, "column": 0 }, "end": { "line": 285, "column": 25 } }, + "285": { "start": { "line": 286, "column": 0 }, "end": { "line": 286, "column": 6 } }, + "286": { "start": { "line": 287, "column": 0 }, "end": { "line": 287, "column": 4 } }, + "287": { "start": { "line": 288, "column": 0 }, "end": { "line": 288, "column": 2 } } + }, + "s": { + "0": 0, + "1": 1, + "2": 1, + "3": 1, + "4": 1, + "5": 1, + "6": 1, + "7": 1, + "8": 1, + "9": 1, + "10": 1, + "11": 0, + "12": 0, + "13": 0, + "14": 1, + "15": 0, + "16": 0, + "17": 0, + "18": 1, + "19": 1, + "20": 1, + "21": 1, + "22": 1, + "23": 1, + "24": 1, + "25": 1, + "26": 1, + "27": 1, + "28": 1, + "29": 0, + "30": 0, + "31": 0, + "32": 1, + "33": 1, + "34": 1, + "35": 1, + "36": 1, + "37": 1, + "38": 1, + "39": 1, + "40": 1, + "41": 0, + "42": 0, + "43": 0, + "44": 1, + "45": 1, + "46": 1, + "47": 1, + "48": 1, + "49": 1, + "50": 1, + "51": 1, + "52": 1, + "53": 0, + "54": 0, + "55": 0, + "56": 0, + "57": 0, + "58": 1, + "59": 1, + "60": 1, + "61": 1, + "62": 1, + "63": 1, + "64": 1, + "65": 1, + "66": 1, + "67": 1, + "68": 1, + "69": 1, + "70": 1, + "71": 0, + "72": 0, + "73": 0, + "74": 0, + "75": 0, + "76": 0, + "77": 0, + "78": 0, + "79": 0, + "80": 0, + "81": 0, + "82": 0, + "83": 0, + "84": 0, + "85": 0, + "86": 0, + "87": 0, + "88": 0, + "89": 0, + "90": 0, + "91": 0, + "92": 0, + "93": 0, + "94": 0, + "95": 0, + "96": 0, + "97": 0, + "98": 0, + "99": 0, + "100": 0, + "101": 0, + "102": 0, + "103": 0, + "104": 0, + "105": 0, + "106": 0, + "107": 0, + "108": 0, + "109": 0, + "110": 0, + "111": 0, + "112": 0, + "113": 0, + "114": 0, + "115": 0, + "116": 0, + "117": 0, + "118": 0, + "119": 0, + "120": 0, + "121": 0, + "122": 0, + "123": 0, + "124": 0, + "125": 0, + "126": 0, + "127": 0, + "128": 0, + "129": 0, + "130": 0, + "131": 0, + "132": 0, + "133": 0, + "134": 0, + "135": 0, + "136": 0, + "137": 0, + "138": 0, + "139": 0, + "140": 0, + "141": 0, + "142": 0, + "143": 0, + "144": 0, + "145": 1, + "146": 1, + "147": 1, + "148": 1, + "149": 1, + "150": 1, + "151": 1, + "152": 1, + "153": 1, + "154": 1, + "155": 1, + "156": 1, + "157": 1, + "158": 0, + "159": 0, + "160": 0, + "161": 0, + "162": 0, + "163": 0, + "164": 0, + "165": 0, + "166": 0, + "167": 0, + "168": 0, + "169": 0, + "170": 0, + "171": 0, + "172": 0, + "173": 0, + "174": 0, + "175": 0, + "176": 0, + "177": 0, + "178": 0, + "179": 0, + "180": 0, + "181": 0, + "182": 0, + "183": 0, + "184": 0, + "185": 0, + "186": 0, + "187": 0, + "188": 0, + "189": 0, + "190": 0, + "191": 0, + "192": 0, + "193": 0, + "194": 0, + "195": 0, + "196": 0, + "197": 0, + "198": 0, + "199": 0, + "200": 0, + "201": 0, + "202": 0, + "203": 0, + "204": 0, + "205": 0, + "206": 0, + "207": 0, + "208": 0, + "209": 0, + "210": 0, + "211": 0, + "212": 0, + "213": 0, + "214": 0, + "215": 0, + "216": 0, + "217": 0, + "218": 0, + "219": 0, + "220": 0, + "221": 0, + "222": 0, + "223": 0, + "224": 0, + "225": 0, + "226": 0, + "227": 0, + "228": 0, + "229": 0, + "230": 0, + "231": 0, + "232": 0, + "233": 0, + "234": 0, + "235": 0, + "236": 1, + "237": 1, + "238": 1, + "239": 1, + "240": 1, + "241": 1, + "242": 1, + "243": 1, + "244": 1, + "245": 1, + "246": 0, + "247": 0, + "248": 0, + "249": 1, + "250": 1, + "251": 1, + "252": 1, + "253": 1, + "254": 1, + "255": 1, + "256": 1, + "257": 1, + "258": 1, + "259": 1, + "260": 1, + "261": 1, + "262": 1, + "263": 1, + "264": 1, + "265": 1, + "266": 1, + "267": 1, + "268": 1, + "269": 1, + "270": 1, + "271": 1, + "272": 1, + "273": 1, + "274": 1, + "275": 1, + "276": 1, + "277": 1, + "278": 1, + "279": 1, + "280": 1, + "281": 1, + "282": 1, + "283": 1, + "284": 1, + "285": 1, + "286": 1, + "287": 1 + }, + "branchMap": { + "0": { + "type": "branch", + "line": 288, + "loc": { "start": { "line": 288, "column": 1 }, "end": { "line": 288, "column": 2 } }, + "locations": [ + { "start": { "line": 288, "column": 1 }, "end": { "line": 288, "column": 2 } } + ] + }, + "1": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }] + }, + "2": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }] + }, + "3": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }] + }, + "4": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }] + }, + "5": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }] + }, + "6": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }] + }, + "7": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }] + } + }, + "b": { "0": [0], "1": [8], "2": [1], "3": [6], "4": [1], "5": [0], "6": [6], "7": [1] }, + "fnMap": { + "0": { + "name": "__name", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "line": 1 + }, + "1": { + "name": "__export", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "line": 1 + }, + "2": { + "name": "__copyProps", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "line": 1 + }, + "3": { + "name": "get", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "line": 1 + }, + "4": { + "name": "__toCommonJS", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "line": 1 + }, + "5": { + "name": "graphStarter", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "line": 1 + }, + "6": { + "name": "workflowRunner", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "line": 1 + }, + "7": { + "name": "workflowStarter", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "line": 1 + }, + "8": { + "name": "workflowStatusChecker", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "line": 1 + }, + "9": { + "name": "workflowStatusStream", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "line": 1 + }, + "10": { + "name": "workflowStatusStreamFull", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 3 } }, + "line": 1 + }, + "11": { + "name": "assertWorkflowService", + "decl": { "start": { "line": 12, "column": 0 }, "end": { "line": 14, "column": 1 } }, + "loc": { "start": { "line": 12, "column": 0 }, "end": { "line": 14, "column": 1 } }, + "line": 12 + }, + "12": { + "name": "assertWorkflowRunService", + "decl": { "start": { "line": 16, "column": 0 }, "end": { "line": 18, "column": 1 } }, + "loc": { "start": { "line": 16, "column": 0 }, "end": { "line": 18, "column": 1 } }, + "line": 16 + } + }, + "f": { + "0": 8, + "1": 1, + "2": 1, + "3": 0, + "4": 1, + "5": 0, + "6": 0, + "7": 0, + "8": 0, + "9": 0, + "10": 0, + "11": 0, + "12": 0 + } + }, + "/Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/wirings/archive-stale-cards.schedule.ts": { + "path": "/Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/wirings/archive-stale-cards.schedule.ts", + "all": false, + "statementMap": { + "0": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 57 } }, + "1": { "start": { "line": 2, "column": 0 }, "end": { "line": 2, "column": 80 } }, + "2": { "start": { "line": 3, "column": 0 }, "end": { "line": 3, "column": 0 } }, + "3": { "start": { "line": 4, "column": 0 }, "end": { "line": 4, "column": 15 } }, + "4": { "start": { "line": 5, "column": 0 }, "end": { "line": 5, "column": 28 } }, + "5": { "start": { "line": 6, "column": 0 }, "end": { "line": 6, "column": 24 } }, + "6": { "start": { "line": 7, "column": 0 }, "end": { "line": 7, "column": 26 } }, + "7": { "start": { "line": 8, "column": 0 }, "end": { "line": 8, "column": 2 } } + }, + "s": { "0": 1, "1": 1, "2": 1, "3": 1, "4": 1, "5": 1, "6": 1, "7": 1 }, + "branchMap": {}, + "b": {}, + "fnMap": {}, + "f": {} + }, + "/Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/wirings/card-events.queue.ts": { + "path": "/Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/wirings/card-events.queue.ts", + "all": false, + "statementMap": { + "0": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 71 } }, + "1": { "start": { "line": 2, "column": 0 }, "end": { "line": 2, "column": 78 } }, + "2": { "start": { "line": 3, "column": 0 }, "end": { "line": 3, "column": 0 } }, + "3": { "start": { "line": 4, "column": 0 }, "end": { "line": 4, "column": 17 } }, + "4": { "start": { "line": 5, "column": 0 }, "end": { "line": 5, "column": 29 } }, + "5": { "start": { "line": 6, "column": 0 }, "end": { "line": 6, "column": 25 } }, + "6": { "start": { "line": 7, "column": 0 }, "end": { "line": 7, "column": 2 } } + }, + "s": { "0": 1, "1": 1, "2": 1, "3": 1, "4": 1, "5": 1, "6": 1 }, + "branchMap": {}, + "b": {}, + "fnMap": {}, + "f": {} + }, + "/Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/wirings/cards.channel.ts": { + "path": "/Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/wirings/cards.channel.ts", + "all": false, + "statementMap": { + "0": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 36 } }, + "1": { "start": { "line": 2, "column": 0 }, "end": { "line": 2, "column": 8 } }, + "2": { "start": { "line": 3, "column": 0 }, "end": { "line": 3, "column": 17 } }, + "3": { "start": { "line": 4, "column": 0 }, "end": { "line": 4, "column": 20 } }, + "4": { "start": { "line": 5, "column": 0 }, "end": { "line": 5, "column": 14 } }, + "5": { "start": { "line": 6, "column": 0 }, "end": { "line": 6, "column": 20 } }, + "6": { "start": { "line": 7, "column": 0 }, "end": { "line": 7, "column": 20 } }, + "7": { "start": { "line": 8, "column": 0 }, "end": { "line": 8, "column": 22 } }, + "8": { "start": { "line": 9, "column": 0 }, "end": { "line": 9, "column": 47 } }, + "9": { "start": { "line": 10, "column": 0 }, "end": { "line": 10, "column": 0 } }, + "10": { "start": { "line": 11, "column": 0 }, "end": { "line": 11, "column": 13 } }, + "11": { "start": { "line": 12, "column": 0 }, "end": { "line": 12, "column": 16 } }, + "12": { "start": { "line": 13, "column": 0 }, "end": { "line": 13, "column": 23 } }, + "13": { "start": { "line": 14, "column": 0 }, "end": { "line": 14, "column": 14 } }, + "14": { "start": { "line": 15, "column": 0 }, "end": { "line": 15, "column": 28 } }, + "15": { "start": { "line": 16, "column": 0 }, "end": { "line": 16, "column": 34 } }, + "16": { "start": { "line": 17, "column": 0 }, "end": { "line": 17, "column": 75 } }, + "17": { "start": { "line": 18, "column": 0 }, "end": { "line": 18, "column": 72 } }, + "18": { "start": { "line": 19, "column": 0 }, "end": { "line": 19, "column": 20 } }, + "19": { "start": { "line": 20, "column": 0 }, "end": { "line": 20, "column": 13 } }, + "20": { "start": { "line": 21, "column": 0 }, "end": { "line": 21, "column": 34 } }, + "21": { "start": { "line": 22, "column": 0 }, "end": { "line": 22, "column": 46 } }, + "22": { "start": { "line": 23, "column": 0 }, "end": { "line": 23, "column": 46 } }, + "23": { "start": { "line": 24, "column": 0 }, "end": { "line": 24, "column": 50 } }, + "24": { "start": { "line": 25, "column": 0 }, "end": { "line": 25, "column": 6 } }, + "25": { "start": { "line": 26, "column": 0 }, "end": { "line": 26, "column": 4 } }, + "26": { "start": { "line": 27, "column": 0 }, "end": { "line": 27, "column": 19 } }, + "27": { "start": { "line": 28, "column": 0 }, "end": { "line": 28, "column": 2 } } + }, + "s": { + "0": 1, + "1": 1, + "2": 1, + "3": 1, + "4": 1, + "5": 1, + "6": 1, + "7": 1, + "8": 1, + "9": 1, + "10": 1, + "11": 1, + "12": 1, + "13": 1, + "14": 1, + "15": 1, + "16": 1, + "17": 1, + "18": 1, + "19": 1, + "20": 1, + "21": 1, + "22": 1, + "23": 1, + "24": 1, + "25": 1, + "26": 1, + "27": 1 + }, + "branchMap": {}, + "b": {}, + "fnMap": {}, + "f": {} + }, + "/Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/wirings/kanban.cli.ts": { + "path": "/Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/wirings/kanban.cli.ts", + "all": false, + "statementMap": { + "0": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 65 } }, + "1": { "start": { "line": 2, "column": 0 }, "end": { "line": 2, "column": 63 } }, + "2": { "start": { "line": 3, "column": 0 }, "end": { "line": 3, "column": 65 } }, + "3": { "start": { "line": 4, "column": 0 }, "end": { "line": 4, "column": 0 } }, + "4": { "start": { "line": 5, "column": 0 }, "end": { "line": 5, "column": 124 } }, + "5": { "start": { "line": 6, "column": 0 }, "end": { "line": 6, "column": 29 } }, + "6": { "start": { "line": 7, "column": 0 }, "end": { "line": 7, "column": 29 } }, + "7": { "start": { "line": 8, "column": 0 }, "end": { "line": 8, "column": 43 } }, + "8": { "start": { "line": 9, "column": 0 }, "end": { "line": 9, "column": 12 } }, + "9": { "start": { "line": 10, "column": 0 }, "end": { "line": 10, "column": 5 } }, + "10": { "start": { "line": 11, "column": 0 }, "end": { "line": 11, "column": 31 } }, + "11": { "start": { "line": 12, "column": 0 }, "end": { "line": 12, "column": 100 } }, + "12": { "start": { "line": 13, "column": 0 }, "end": { "line": 13, "column": 5 } }, + "13": { "start": { "line": 14, "column": 0 }, "end": { "line": 14, "column": 4 } }, + "14": { "start": { "line": 15, "column": 0 }, "end": { "line": 15, "column": 1 } }, + "15": { "start": { "line": 16, "column": 0 }, "end": { "line": 16, "column": 0 } }, + "16": { "start": { "line": 17, "column": 0 }, "end": { "line": 17, "column": 87 } }, + "17": { "start": { "line": 18, "column": 0 }, "end": { "line": 18, "column": 24 } }, + "18": { "start": { "line": 19, "column": 0 }, "end": { "line": 19, "column": 75 } }, + "19": { "start": { "line": 20, "column": 0 }, "end": { "line": 20, "column": 4 } }, + "20": { "start": { "line": 21, "column": 0 }, "end": { "line": 21, "column": 1 } }, + "21": { "start": { "line": 22, "column": 0 }, "end": { "line": 22, "column": 0 } }, + "22": { "start": { "line": 23, "column": 0 }, "end": { "line": 23, "column": 9 } }, + "23": { "start": { "line": 24, "column": 0 }, "end": { "line": 24, "column": 20 } }, + "24": { "start": { "line": 25, "column": 0 }, "end": { "line": 25, "column": 13 } }, + "25": { "start": { "line": 26, "column": 0 }, "end": { "line": 26, "column": 27 } }, + "26": { "start": { "line": 27, "column": 0 }, "end": { "line": 27, "column": 22 } }, + "27": { "start": { "line": 28, "column": 0 }, "end": { "line": 28, "column": 43 } }, + "28": { "start": { "line": 29, "column": 0 }, "end": { "line": 29, "column": 28 } }, + "29": { "start": { "line": 30, "column": 0 }, "end": { "line": 30, "column": 7 } }, + "30": { "start": { "line": 31, "column": 0 }, "end": { "line": 31, "column": 26 } }, + "31": { "start": { "line": 32, "column": 0 }, "end": { "line": 32, "column": 28 } }, + "32": { "start": { "line": 33, "column": 0 }, "end": { "line": 33, "column": 23 } }, + "33": { "start": { "line": 34, "column": 0 }, "end": { "line": 34, "column": 43 } }, + "34": { "start": { "line": 35, "column": 0 }, "end": { "line": 35, "column": 27 } }, + "35": { "start": { "line": 36, "column": 0 }, "end": { "line": 36, "column": 16 } }, + "36": { "start": { "line": 37, "column": 0 }, "end": { "line": 37, "column": 17 } }, + "37": { "start": { "line": 38, "column": 0 }, "end": { "line": 38, "column": 57 } }, + "38": { "start": { "line": 39, "column": 0 }, "end": { "line": 39, "column": 21 } }, + "39": { "start": { "line": 40, "column": 0 }, "end": { "line": 40, "column": 35 } }, + "40": { "start": { "line": 41, "column": 0 }, "end": { "line": 41, "column": 10 } }, + "41": { "start": { "line": 42, "column": 0 }, "end": { "line": 42, "column": 8 } }, + "42": { "start": { "line": 43, "column": 0 }, "end": { "line": 43, "column": 7 } }, + "43": { "start": { "line": 44, "column": 0 }, "end": { "line": 44, "column": 4 } }, + "44": { "start": { "line": 45, "column": 0 }, "end": { "line": 45, "column": 49 } }, + "45": { "start": { "line": 46, "column": 0 }, "end": { "line": 46, "column": 48 } }, + "46": { "start": { "line": 47, "column": 0 }, "end": { "line": 47, "column": 5 } }, + "47": { "start": { "line": 48, "column": 0 }, "end": { "line": 48, "column": 2 } } + }, + "s": { + "0": 1, + "1": 1, + "2": 1, + "3": 1, + "4": 1, + "5": 1, + "6": 0, + "7": 0, + "8": 0, + "9": 0, + "10": 0, + "11": 0, + "12": 0, + "13": 0, + "14": 1, + "15": 1, + "16": 1, + "17": 1, + "18": 0, + "19": 0, + "20": 1, + "21": 1, + "22": 1, + "23": 1, + "24": 1, + "25": 1, + "26": 1, + "27": 1, + "28": 1, + "29": 1, + "30": 1, + "31": 1, + "32": 1, + "33": 1, + "34": 1, + "35": 1, + "36": 1, + "37": 1, + "38": 1, + "39": 1, + "40": 1, + "41": 1, + "42": 1, + "43": 1, + "44": 1, + "45": 0, + "46": 1, + "47": 1 + }, + "branchMap": {}, + "b": {}, + "fnMap": {}, + "f": {} + }, + "/Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/wirings/kanban.http.ts": { + "path": "/Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/wirings/kanban.http.ts", + "all": false, + "statementMap": { + "0": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 57 } }, + "1": { "start": { "line": 2, "column": 0 }, "end": { "line": 2, "column": 63 } }, + "2": { "start": { "line": 3, "column": 0 }, "end": { "line": 3, "column": 65 } }, + "3": { "start": { "line": 4, "column": 0 }, "end": { "line": 4, "column": 88 } }, + "4": { "start": { "line": 5, "column": 0 }, "end": { "line": 5, "column": 70 } }, + "5": { "start": { "line": 6, "column": 0 }, "end": { "line": 6, "column": 0 } }, + "6": { "start": { "line": 7, "column": 0 }, "end": { "line": 7, "column": 46 } }, + "7": { "start": { "line": 8, "column": 0 }, "end": { "line": 8, "column": 14 } }, + "8": { "start": { "line": 9, "column": 0 }, "end": { "line": 9, "column": 11 } }, + "9": { "start": { "line": 10, "column": 0 }, "end": { "line": 10, "column": 67 } }, + "10": { "start": { "line": 11, "column": 0 }, "end": { "line": 11, "column": 70 } }, + "11": { "start": { "line": 12, "column": 0 }, "end": { "line": 12, "column": 121 } }, + "12": { "start": { "line": 13, "column": 0 }, "end": { "line": 13, "column": 114 } }, + "13": { "start": { "line": 14, "column": 0 }, "end": { "line": 14, "column": 4 } }, + "14": { "start": { "line": 15, "column": 0 }, "end": { "line": 15, "column": 2 } }, + "15": { "start": { "line": 16, "column": 0 }, "end": { "line": 16, "column": 0 } }, + "16": { "start": { "line": 17, "column": 0 }, "end": { "line": 17, "column": 52 } } + }, + "s": { + "0": 1, + "1": 1, + "2": 1, + "3": 1, + "4": 1, + "5": 1, + "6": 1, + "7": 1, + "8": 1, + "9": 1, + "10": 1, + "11": 1, + "12": 1, + "13": 1, + "14": 1, + "15": 1, + "16": 1 + }, + "branchMap": { + "0": { + "type": "branch", + "line": 17, + "loc": { "start": { "line": 17, "column": 51 }, "end": { "line": 17, "column": 52 } }, + "locations": [ + { "start": { "line": 17, "column": 51 }, "end": { "line": 17, "column": 52 } } + ] + }, + "1": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 49 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 49 } }] + }, + "2": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 49 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 49 } }] + }, + "3": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 49 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 49 } }] + }, + "4": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 49 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 49 } }] + } + }, + "b": { "0": [0], "1": [1], "2": [1], "3": [0], "4": [1] }, + "fnMap": { + "0": { + "name": "__export", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 49 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 49 } }, + "line": 1 + }, + "1": { + "name": "__copyProps", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 49 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 49 } }, + "line": 1 + }, + "2": { + "name": "get", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 49 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 49 } }, + "line": 1 + }, + "3": { + "name": "__toCommonJS", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 49 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 49 } }, + "line": 1 + }, + "4": { + "name": "kanbanRoutes", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 49 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 49 } }, + "line": 1 + } + }, + "f": { "0": 1, "1": 1, "2": 0, "3": 1, "4": 0 } + }, + "/Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/wirings/kanban.mcp.ts": { + "path": "/Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/wirings/kanban.mcp.ts", + "all": false, + "statementMap": { + "0": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 23 } }, + "1": { "start": { "line": 2, "column": 0 }, "end": { "line": 2, "column": 115 } }, + "2": { "start": { "line": 3, "column": 0 }, "end": { "line": 3, "column": 40 } }, + "3": { "start": { "line": 4, "column": 0 }, "end": { "line": 4, "column": 0 } }, + "4": { "start": { "line": 5, "column": 0 }, "end": { "line": 5, "column": 47 } }, + "5": { "start": { "line": 6, "column": 0 }, "end": { "line": 6, "column": 53 } }, + "6": { "start": { "line": 7, "column": 0 }, "end": { "line": 7, "column": 28 } }, + "7": { "start": { "line": 8, "column": 0 }, "end": { "line": 8, "column": 31 } }, + "8": { "start": { "line": 9, "column": 0 }, "end": { "line": 9, "column": 30 } }, + "9": { "start": { "line": 10, "column": 0 }, "end": { "line": 10, "column": 31 } }, + "10": { "start": { "line": 11, "column": 0 }, "end": { "line": 11, "column": 18 } }, + "11": { "start": { "line": 12, "column": 0 }, "end": { "line": 12, "column": 33 } }, + "12": { "start": { "line": 13, "column": 0 }, "end": { "line": 13, "column": 16 } }, + "13": { "start": { "line": 14, "column": 0 }, "end": { "line": 14, "column": 76 } }, + "14": { "start": { "line": 15, "column": 0 }, "end": { "line": 15, "column": 4 } }, + "15": { "start": { "line": 16, "column": 0 }, "end": { "line": 16, "column": 2 } }, + "16": { "start": { "line": 17, "column": 0 }, "end": { "line": 17, "column": 0 } }, + "17": { "start": { "line": 18, "column": 0 }, "end": { "line": 18, "column": 45 } }, + "18": { "start": { "line": 19, "column": 0 }, "end": { "line": 19, "column": 27 } }, + "19": { "start": { "line": 20, "column": 0 }, "end": { "line": 20, "column": 60 } }, + "20": { "start": { "line": 21, "column": 0 }, "end": { "line": 21, "column": 2 } }, + "21": { "start": { "line": 22, "column": 0 }, "end": { "line": 22, "column": 0 } }, + "22": { "start": { "line": 23, "column": 0 }, "end": { "line": 23, "column": 48 } }, + "23": { "start": { "line": 24, "column": 0 }, "end": { "line": 24, "column": 29 } }, + "24": { "start": { "line": 25, "column": 0 }, "end": { "line": 25, "column": 56 } }, + "25": { "start": { "line": 26, "column": 0 }, "end": { "line": 26, "column": 28 } }, + "26": { "start": { "line": 27, "column": 0 }, "end": { "line": 27, "column": 64 } }, + "27": { "start": { "line": 28, "column": 0 }, "end": { "line": 28, "column": 31 } }, + "28": { "start": { "line": 29, "column": 0 }, "end": { "line": 29, "column": 46 } }, + "29": { "start": { "line": 30, "column": 0 }, "end": { "line": 30, "column": 28 } }, + "30": { "start": { "line": 31, "column": 0 }, "end": { "line": 31, "column": 31 } }, + "31": { "start": { "line": 32, "column": 0 }, "end": { "line": 32, "column": 63 } }, + "32": { "start": { "line": 33, "column": 0 }, "end": { "line": 33, "column": 35 } }, + "33": { "start": { "line": 34, "column": 0 }, "end": { "line": 34, "column": 25 } }, + "34": { "start": { "line": 35, "column": 0 }, "end": { "line": 35, "column": 40 } }, + "35": { "start": { "line": 36, "column": 0 }, "end": { "line": 36, "column": 106 } }, + "36": { "start": { "line": 37, "column": 0 }, "end": { "line": 37, "column": 99 } }, + "37": { "start": { "line": 38, "column": 0 }, "end": { "line": 38, "column": 94 } }, + "38": { "start": { "line": 39, "column": 0 }, "end": { "line": 39, "column": 4 } }, + "39": { "start": { "line": 40, "column": 0 }, "end": { "line": 40, "column": 2 } }, + "40": { "start": { "line": 41, "column": 0 }, "end": { "line": 41, "column": 0 } }, + "41": { "start": { "line": 42, "column": 0 }, "end": { "line": 42, "column": 55 } }, + "42": { "start": { "line": 43, "column": 0 }, "end": { "line": 43, "column": 25 } }, + "43": { "start": { "line": 44, "column": 0 }, "end": { "line": 44, "column": 104 } }, + "44": { "start": { "line": 45, "column": 0 }, "end": { "line": 45, "column": 76 } }, + "45": { "start": { "line": 46, "column": 0 }, "end": { "line": 46, "column": 4 } }, + "46": { "start": { "line": 47, "column": 0 }, "end": { "line": 47, "column": 1 } }, + "47": { "start": { "line": 48, "column": 0 }, "end": { "line": 48, "column": 0 } }, + "48": { "start": { "line": 49, "column": 0 }, "end": { "line": 49, "column": 52 } }, + "49": { "start": { "line": 50, "column": 0 }, "end": { "line": 50, "column": 25 } }, + "50": { "start": { "line": 51, "column": 0 }, "end": { "line": 51, "column": 77 } }, + "51": { "start": { "line": 52, "column": 0 }, "end": { "line": 52, "column": 58 } }, + "52": { "start": { "line": 53, "column": 0 }, "end": { "line": 53, "column": 75 } }, + "53": { "start": { "line": 54, "column": 0 }, "end": { "line": 54, "column": 9 } }, + "54": { "start": { "line": 55, "column": 0 }, "end": { "line": 55, "column": 5 } }, + "55": { "start": { "line": 56, "column": 0 }, "end": { "line": 56, "column": 12 } }, + "56": { "start": { "line": 57, "column": 0 }, "end": { "line": 57, "column": 7 } }, + "57": { "start": { "line": 58, "column": 0 }, "end": { "line": 58, "column": 30 } }, + "58": { "start": { "line": 59, "column": 0 }, "end": { "line": 59, "column": 18 } }, + "59": { "start": { "line": 60, "column": 0 }, "end": { "line": 60, "column": 32 } }, + "60": { "start": { "line": 61, "column": 0 }, "end": { "line": 61, "column": 101 } }, + "61": { "start": { "line": 62, "column": 0 }, "end": { "line": 62, "column": 10 } }, + "62": { "start": { "line": 63, "column": 0 }, "end": { "line": 63, "column": 8 } }, + "63": { "start": { "line": 64, "column": 0 }, "end": { "line": 64, "column": 5 } }, + "64": { "start": { "line": 65, "column": 0 }, "end": { "line": 65, "column": 4 } }, + "65": { "start": { "line": 66, "column": 0 }, "end": { "line": 66, "column": 1 } }, + "66": { "start": { "line": 67, "column": 0 }, "end": { "line": 67, "column": 0 } }, + "67": { "start": { "line": 68, "column": 0 }, "end": { "line": 68, "column": 17 } }, + "68": { "start": { "line": 69, "column": 0 }, "end": { "line": 69, "column": 24 } }, + "69": { "start": { "line": 70, "column": 0 }, "end": { "line": 70, "column": 30 } }, + "70": { "start": { "line": 71, "column": 0 }, "end": { "line": 71, "column": 57 } }, + "71": { "start": { "line": 72, "column": 0 }, "end": { "line": 72, "column": 28 } }, + "72": { "start": { "line": 73, "column": 0 }, "end": { "line": 73, "column": 19 } }, + "73": { "start": { "line": 74, "column": 0 }, "end": { "line": 74, "column": 2 } }, + "74": { "start": { "line": 75, "column": 0 }, "end": { "line": 75, "column": 0 } }, + "75": { "start": { "line": 76, "column": 0 }, "end": { "line": 76, "column": 15 } }, + "76": { "start": { "line": 77, "column": 0 }, "end": { "line": 77, "column": 23 } }, + "77": { "start": { "line": 78, "column": 0 }, "end": { "line": 78, "column": 73 } }, + "78": { "start": { "line": 79, "column": 0 }, "end": { "line": 79, "column": 27 } }, + "79": { "start": { "line": 80, "column": 0 }, "end": { "line": 80, "column": 19 } }, + "80": { "start": { "line": 81, "column": 0 }, "end": { "line": 81, "column": 2 } } + }, + "s": { + "0": 1, + "1": 1, + "2": 1, + "3": 1, + "4": 1, + "5": 1, + "6": 1, + "7": 1, + "8": 0, + "9": 0, + "10": 0, + "11": 0, + "12": 0, + "13": 0, + "14": 0, + "15": 1, + "16": 1, + "17": 1, + "18": 1, + "19": 1, + "20": 1, + "21": 1, + "22": 1, + "23": 1, + "24": 1, + "25": 1, + "26": 1, + "27": 0, + "28": 0, + "29": 0, + "30": 0, + "31": 0, + "32": 0, + "33": 0, + "34": 0, + "35": 0, + "36": 0, + "37": 0, + "38": 0, + "39": 1, + "40": 1, + "41": 1, + "42": 1, + "43": 0, + "44": 0, + "45": 0, + "46": 1, + "47": 1, + "48": 1, + "49": 1, + "50": 0, + "51": 0, + "52": 0, + "53": 0, + "54": 0, + "55": 0, + "56": 0, + "57": 0, + "58": 0, + "59": 0, + "60": 0, + "61": 0, + "62": 0, + "63": 0, + "64": 0, + "65": 1, + "66": 1, + "67": 1, + "68": 1, + "69": 1, + "70": 1, + "71": 1, + "72": 1, + "73": 1, + "74": 1, + "75": 1, + "76": 1, + "77": 1, + "78": 1, + "79": 1, + "80": 1 + }, + "branchMap": { + "0": { + "type": "branch", + "line": 81, + "loc": { "start": { "line": 81, "column": 1 }, "end": { "line": 81, "column": 2 } }, + "locations": [{ "start": { "line": 81, "column": 1 }, "end": { "line": 81, "column": 2 } }] + }, + "1": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "2": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "3": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "4": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "5": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "6": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "7": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "8": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "9": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + }, + "10": { + "type": "branch", + "line": 1, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "locations": [{ "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }] + } + }, + "b": { + "0": [0], + "1": [2], + "2": [1], + "3": [3], + "4": [1], + "5": [0], + "6": [3], + "7": [2], + "8": [1], + "9": [1], + "10": [1] + }, + "fnMap": { + "0": { + "name": "__name", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + }, + "1": { + "name": "__export", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + }, + "2": { + "name": "__copyProps", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + }, + "3": { + "name": "get", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + }, + "4": { + "name": "__toCommonJS", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + }, + "5": { + "name": "CreateCardToolInput", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + }, + "6": { + "name": "createCardTool", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + }, + "7": { + "name": "listCardsTool", + "decl": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "loc": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 18 } }, + "line": 1 + } + }, + "f": { "0": 2, "1": 1, "2": 1, "3": 2, "4": 1, "5": 0, "6": 1, "7": 1 } + }, + "/Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/wirings/kanban.trigger.ts": { + "path": "/Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/wirings/kanban.trigger.ts", + "all": false, + "statementMap": { + "0": { "start": { "line": 1, "column": 0 }, "end": { "line": 1, "column": 36 } }, + "1": { "start": { "line": 2, "column": 0 }, "end": { "line": 2, "column": 83 } }, + "2": { "start": { "line": 3, "column": 0 }, "end": { "line": 3, "column": 0 } }, + "3": { "start": { "line": 4, "column": 0 }, "end": { "line": 4, "column": 13 } }, + "4": { "start": { "line": 5, "column": 0 }, "end": { "line": 5, "column": 21 } }, + "5": { "start": { "line": 6, "column": 0 }, "end": { "line": 6, "column": 27 } }, + "6": { "start": { "line": 7, "column": 0 }, "end": { "line": 7, "column": 2 } } + }, + "s": { "0": 1, "1": 1, "2": 1, "3": 1, "4": 1, "5": 1, "6": 1 }, + "branchMap": {}, + "b": {}, + "fnMap": {}, + "f": {} + } +} diff --git a/packages/functions/coverage/tmp/coverage-57615-1780003237390-1.json b/packages/functions/coverage/tmp/coverage-57615-1780003237390-1.json new file mode 100644 index 0000000..06dc0d6 --- /dev/null +++ b/packages/functions/coverage/tmp/coverage-57615-1780003237390-1.json @@ -0,0 +1,16669 @@ +{ + "result": [ + { + "scriptId": "77", + "url": "node:internal/per_context/primordials", + "functions": [ + { + "functionName": "SafeIterator", + "ranges": [{ "startOffset": 9212, "endOffset": 9283, "count": 90 }], + "isBlockCoverage": false + }, + { + "functionName": "next", + "ranges": [{ "startOffset": 9288, "endOffset": 9337, "count": 1294 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9342, "endOffset": 9387, "count": 88 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 10952, "endOffset": 11019, "count": 10 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "79", + "url": "node:internal/per_context/messageport", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 407, "endOffset": 993, "count": 6 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "80", + "url": "node:internal/bootstrap/realm", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 15448, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "binding", + "ranges": [{ "startOffset": 4712, "endOffset": 5554, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_linkedBinding", + "ranges": [{ "startOffset": 5584, "endOffset": 5792, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "internalBinding", + "ranges": [{ "startOffset": 6034, "endOffset": 6296, "count": 173 }], + "isBlockCoverage": false + }, + { + "functionName": "getOwn", + "ranges": [{ "startOffset": 6562, "endOffset": 6716, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6765, "endOffset": 6861, "count": 368 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6988, "endOffset": 7055, "count": 368 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 7281, "endOffset": 7317, "count": 71 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 7689, "endOffset": 7790, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 7749, "endOffset": 7784, "count": 368 }], + "isBlockCoverage": false + }, + { + "functionName": "BuiltinModule", + "ranges": [{ "startOffset": 7795, "endOffset": 8472, "count": 368 }], + "isBlockCoverage": false + }, + { + "functionName": "allowRequireByUsers", + "ranges": [{ "startOffset": 8483, "endOffset": 8844, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "setRealmAllowRequireByUsers", + "ranges": [{ "startOffset": 8855, "endOffset": 9152, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "exposeInternals", + "ranges": [{ "startOffset": 9302, "endOffset": 9453, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "exists", + "ranges": [{ "startOffset": 9464, "endOffset": 9518, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "canBeRequiredByUsers", + "ranges": [{ "startOffset": 9529, "endOffset": 9604, "count": 20 }], + "isBlockCoverage": false + }, + { + "functionName": "canBeRequiredWithoutScheme", + "ranges": [{ "startOffset": 9615, "endOffset": 9709, "count": 25 }], + "isBlockCoverage": false + }, + { + "functionName": "normalizeRequirableId", + "ranges": [{ "startOffset": 9720, "endOffset": 10065, "count": 14 }], + "isBlockCoverage": false + }, + { + "functionName": "isBuiltin", + "ranges": [{ "startOffset": 10076, "endOffset": 10317, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getSchemeOnlyModuleNames", + "ranges": [{ "startOffset": 10328, "endOffset": 10403, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getAllBuiltinModuleIds", + "ranges": [{ "startOffset": 10414, "endOffset": 10636, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 10587, "endOffset": 10605, "count": 5 }], + "isBlockCoverage": false + }, + { + "functionName": "compileForPublicLoader", + "ranges": [{ "startOffset": 10708, "endOffset": 11371, "count": 10 }], + "isBlockCoverage": false + }, + { + "functionName": "getESMFacade", + "ranges": [{ "startOffset": 11375, "endOffset": 12009, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "syncExports", + "ranges": [{ "startOffset": 12305, "endOffset": 12649, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "compileForInternalLoader", + "ranges": [{ "startOffset": 12653, "endOffset": 13475, "count": 669 }], + "isBlockCoverage": false + }, + { + "functionName": "requireBuiltin", + "ranges": [{ "startOffset": 13670, "endOffset": 14035, "count": 444 }], + "isBlockCoverage": false + }, + { + "functionName": "requireWithFallbackInDeps", + "ranges": [{ "startOffset": 14151, "endOffset": 14427, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setupPrepareStackTrace", + "ranges": [{ "startOffset": 14429, "endOffset": 15299, "count": 1 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "81", + "url": "node:internal/errors", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 69406, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "defaultPrepareStackTrace", + "ranges": [{ "startOffset": 2344, "endOffset": 2811, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setInternalPrepareStackTrace", + "ranges": [{ "startOffset": 2813, "endOffset": 2904, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "prepareStackTraceCallback", + "ranges": [{ "startOffset": 3730, "endOffset": 4861, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ErrorPrepareStackTrace", + "ranges": [{ "startOffset": 4947, "endOffset": 5046, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "aggregateTwoErrors", + "ranges": [{ "startOffset": 5075, "endOffset": 6050, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "NodeAggregateError", + "ranges": [{ "startOffset": 6105, "endOffset": 6223, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6227, "endOffset": 6270, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6274, "endOffset": 6328, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lazyInternalUtil", + "ranges": [{ "startOffset": 6429, "endOffset": 6528, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lazyInternalUtilInspect", + "ranges": [{ "startOffset": 6562, "endOffset": 6690, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lazyUtilColors", + "ranges": [{ "startOffset": 6708, "endOffset": 6808, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lazyBuffer", + "ranges": [{ "startOffset": 6822, "endOffset": 6903, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isErrorStackTraceLimitWritable", + "ranges": [{ "startOffset": 6905, "endOffset": 7412, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inspectWithNoCustomRetry", + "ranges": [{ "startOffset": 7414, "endOffset": 7660, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "SystemError", + "ranges": [{ "startOffset": 8162, "endOffset": 10865, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toString", + "ranges": [{ "startOffset": 10869, "endOffset": 10944, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 10948, "endOffset": 11138, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "makeSystemErrorWithCode", + "ranges": [{ "startOffset": 11142, "endOffset": 11287, "count": 12 }], + "isBlockCoverage": false + }, + { + "functionName": "NodeError", + "ranges": [{ "startOffset": 11233, "endOffset": 11280, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "makeNodeErrorForHideStackFrame", + "ranges": [{ "startOffset": 11405, "endOffset": 11994, "count": 19 }], + "isBlockCoverage": false + }, + { + "functionName": "HideStackFramesError", + "ranges": [{ "startOffset": 11508, "endOffset": 11772, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 11907, "endOffset": 11956, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "makeNodeErrorWithCode", + "ranges": [{ "startOffset": 11996, "endOffset": 14558, "count": 288 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 12249, "endOffset": 12259, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "NodeError", + "ranges": [{ "startOffset": 12270, "endOffset": 12535, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 12682, "endOffset": 12738, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 12748, "endOffset": 12803, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toString", + "ranges": [{ "startOffset": 12813, "endOffset": 12894, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 12993, "endOffset": 13003, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "NodeError", + "ranges": [{ "startOffset": 13014, "endOffset": 13297, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 13444, "endOffset": 13500, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 13510, "endOffset": 13565, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toString", + "ranges": [{ "startOffset": 13575, "endOffset": 13656, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 13756, "endOffset": 13766, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "NodeError", + "ranges": [{ "startOffset": 13777, "endOffset": 14155, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 14302, "endOffset": 14358, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 14368, "endOffset": 14423, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toString", + "ranges": [{ "startOffset": 14433, "endOffset": 14514, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hideStackFrames", + "ranges": [{ "startOffset": 14720, "endOffset": 15017, "count": 49 }], + "isBlockCoverage": false + }, + { + "functionName": "wrappedFn", + "ranges": [{ "startOffset": 14753, "endOffset": 14959, "count": 168 }], + "isBlockCoverage": false + }, + { + "functionName": "E", + "ranges": [{ "startOffset": 15129, "endOffset": 16204, "count": 294 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 15617, "endOffset": 15886, "count": 4 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 15937, "endOffset": 16023, "count": 4 }], + "isBlockCoverage": false + }, + { + "functionName": "getExpectedArgumentLength", + "ranges": [{ "startOffset": 16206, "endOffset": 16400, "count": 244 }], + "isBlockCoverage": false + }, + { + "functionName": "getMessage", + "ranges": [{ "startOffset": 16402, "endOffset": 17164, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lazyUv", + "ranges": [{ "startOffset": 17182, "endOffset": 17262, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "uvErrmapGet", + "ranges": [{ "startOffset": 17319, "endOffset": 17471, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "UVException", + "ranges": [{ "startOffset": 17790, "endOffset": 18484, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 18488, "endOffset": 18533, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "UVExceptionWithHostPort", + "ranges": [{ "startOffset": 18893, "endOffset": 19398, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 19402, "endOffset": 19447, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ErrnoException", + "ranges": [{ "startOffset": 19666, "endOffset": 20227, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 20231, "endOffset": 20276, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ExceptionWithHostPort", + "ranges": [{ "startOffset": 20674, "endOffset": 21480, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 21484, "endOffset": 21529, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "DNSException", + "ranges": [{ "startOffset": 21722, "endOffset": 22841, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 22845, "endOffset": 22890, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ConnResetException", + "ranges": [{ "startOffset": 22937, "endOffset": 23005, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 23009, "endOffset": 23054, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isStackOverflowError", + "ranges": [{ "startOffset": 23344, "endOffset": 23722, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addNumericalSeparator", + "ranges": [{ "startOffset": 23803, "endOffset": 24071, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "beforeInspector", + "ranges": [{ "startOffset": 24350, "endOffset": 24741, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "afterInspector", + "ranges": [{ "startOffset": 24745, "endOffset": 26031, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setArrowMessage", + "ranges": [{ "startOffset": 26186, "endOffset": 26285, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hideInternalStackFrames", + "ranges": [{ "startOffset": 26340, "endOffset": 26818, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "AbortError", + "ranges": [{ "startOffset": 27051, "endOffset": 27360, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "genericNodeError", + "ranges": [{ "startOffset": 27615, "endOffset": 27807, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "determineSpecificType", + "ranges": [{ "startOffset": 27928, "endOffset": 29559, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "formatList", + "ranges": [{ "startOffset": 29881, "endOffset": 30262, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 31768, "endOffset": 31899, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 32529, "endOffset": 32693, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 35897, "endOffset": 36012, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 36301, "endOffset": 36395, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 39277, "endOffset": 39505, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 41329, "endOffset": 41547, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 43402, "endOffset": 43674, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 44593, "endOffset": 44893, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 44935, "endOffset": 45079, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 45122, "endOffset": 47243, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 47306, "endOffset": 47654, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 47984, "endOffset": 48147, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 48543, "endOffset": 48628, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 48915, "endOffset": 49094, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 49142, "endOffset": 49277, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 49323, "endOffset": 49471, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 49515, "endOffset": 50289, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 50577, "endOffset": 50760, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 50813, "endOffset": 50988, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 51032, "endOffset": 51209, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 51743, "endOffset": 51959, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 52003, "endOffset": 52291, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 52602, "endOffset": 52668, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 53013, "endOffset": 53454, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 53596, "endOffset": 53815, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 54994, "endOffset": 55692, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 55765, "endOffset": 55957, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 56006, "endOffset": 56322, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 56564, "endOffset": 56863, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 57607, "endOffset": 58006, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 58083, "endOffset": 59529, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 60108, "endOffset": 60390, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 62234, "endOffset": 62638, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 62690, "endOffset": 62868, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 63139, "endOffset": 63308, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 65121, "endOffset": 65252, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 65747, "endOffset": 65949, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 65995, "endOffset": 66318, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 67464, "endOffset": 67532, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 68058, "endOffset": 68171, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 68749, "endOffset": 69136, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "82", + "url": "node:internal/assert", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 445, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "lazyError", + "ranges": [{ "startOffset": 26, "endOffset": 126, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "assert", + "ranges": [{ "startOffset": 128, "endOffset": 278, "count": 19 }], + "isBlockCoverage": false + }, + { + "functionName": "fail", + "ranges": [{ "startOffset": 280, "endOffset": 397, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "83", + "url": "node:internal/bootstrap/node", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 15776, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3814, "endOffset": 3864, "count": 10 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 3870, "endOffset": 3928, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 4054, "endOffset": 4134, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 4140, "endOffset": 4536, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4758, "endOffset": 5022, "count": 507 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 6639, "endOffset": 6892, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 6898, "endOffset": 6947, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 7122, "endOffset": 7192, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 8678, "endOffset": 8840, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 8942, "endOffset": 9138, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get cached_builtins", + "ranges": [{ "startOffset": 9787, "endOffset": 9854, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get require_module", + "ranges": [{ "startOffset": 9858, "endOffset": 9944, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 11234, "endOffset": 11574, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 13213, "endOffset": 13271, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setSourceMapsEnabled", + "ranges": [{ "startOffset": 13312, "endOffset": 13684, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setupProcessObject", + "ranges": [{ "startOffset": 14066, "endOffset": 14871, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 14731, "endOffset": 14767, "count": 5 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 14773, "endOffset": 14815, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setupGlobalProxy", + "ranges": [{ "startOffset": 14873, "endOffset": 15110, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "setupBuffer", + "ranges": [{ "startOffset": 15112, "endOffset": 15775, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 15637, "endOffset": 15672, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 15678, "endOffset": 15719, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "84", + "url": "node:internal/timers", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 20782, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4379, "endOffset": 4404, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "initAsyncResource", + "ranges": [{ "startOffset": 5884, "endOffset": 6225, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Timeout", + "ranges": [{ "startOffset": 6396, "endOffset": 7895, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 7976, "endOffset": 8172, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "refresh", + "ranges": [{ "startOffset": 8176, "endOffset": 8285, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "unref", + "ranges": [{ "startOffset": 8289, "endOffset": 8428, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ref", + "ranges": [{ "startOffset": 8432, "endOffset": 8569, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hasRef", + "ranges": [{ "startOffset": 8573, "endOffset": 8612, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "TimersList", + "ranges": [{ "startOffset": 8637, "endOffset": 8943, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9024, "endOffset": 9220, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ImmediateList", + "ranges": [{ "startOffset": 9303, "endOffset": 9366, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "append", + "ranges": [{ "startOffset": 9518, "endOffset": 9699, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "remove", + "ranges": [{ "startOffset": 9849, "endOffset": 10210, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "incRefCount", + "ranges": [{ "startOffset": 10320, "endOffset": 10486, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "decRefCount", + "ranges": [{ "startOffset": 10488, "endOffset": 10655, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "active", + "ranges": [{ "startOffset": 10738, "endOffset": 10792, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "unrefActive", + "ranges": [{ "startOffset": 10939, "endOffset": 10999, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "insertGuarded", + "ranges": [{ "startOffset": 11220, "endOffset": 11722, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "insert", + "ranges": [{ "startOffset": 11790, "endOffset": 12529, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setUnrefTimeout", + "ranges": [{ "startOffset": 12531, "endOffset": 12789, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getTimerDuration", + "ranges": [{ "startOffset": 12856, "endOffset": 13384, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "compareTimersLists", + "ranges": [{ "startOffset": 13386, "endOffset": 13540, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setPosition", + "ranges": [{ "startOffset": 13542, "endOffset": 13613, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getTimerCallbacks", + "ranges": [{ "startOffset": 13615, "endOffset": 19344, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "processImmediate", + "ranges": [{ "startOffset": 13927, "endOffset": 15975, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "processTimers", + "ranges": [{ "startOffset": 15980, "endOffset": 16470, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "listOnTimeout", + "ranges": [{ "startOffset": 16474, "endOffset": 19284, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Immediate", + "ranges": [{ "startOffset": 19366, "endOffset": 19688, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ref", + "ranges": [{ "startOffset": 19692, "endOffset": 19958, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "unref", + "ranges": [{ "startOffset": 19962, "endOffset": 20230, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hasRef", + "ranges": [{ "startOffset": 20234, "endOffset": 20275, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "85", + "url": "node:internal/async_hooks", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 20504, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "useDomainTrampoline", + "ranges": [{ "startOffset": 5108, "endOffset": 5162, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "callbackTrampoline", + "ranges": [{ "startOffset": 5164, "endOffset": 5713, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "executionAsyncResource", + "ranges": [{ "startOffset": 5745, "endOffset": 6243, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inspectExceptionValue", + "ranges": [{ "startOffset": 6245, "endOffset": 6372, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fatalError", + "ranges": [{ "startOffset": 6433, "endOffset": 6835, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lookupPublicResource", + "ranges": [{ "startOffset": 6837, "endOffset": 7186, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "emitInitNative", + "ranges": [{ "startOffset": 7377, "endOffset": 8637, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "emitHook", + "ranges": [{ "startOffset": 8738, "endOffset": 9854, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "emitHookFactory", + "ranges": [{ "startOffset": 9856, "endOffset": 10120, "count": 4 }], + "isBlockCoverage": false + }, + { + "functionName": "getHookArrays", + "ranges": [{ "startOffset": 10149, "endOffset": 10639, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "storeActiveHooks", + "ranges": [{ "startOffset": 10642, "endOffset": 10942, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "copyHooks", + "ranges": [{ "startOffset": 10944, "endOffset": 11209, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "restoreActiveHooks", + "ranges": [{ "startOffset": 11324, "endOffset": 11529, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "trackPromise", + "ranges": [{ "startOffset": 11531, "endOffset": 11961, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "promiseInitHook", + "ranges": [{ "startOffset": 11963, "endOffset": 12213, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "promiseInitHookWithDestroyTracking", + "ranges": [{ "startOffset": 12215, "endOffset": 12351, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "destroyTracking", + "ranges": [{ "startOffset": 12353, "endOffset": 12516, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "promiseBeforeHook", + "ranges": [{ "startOffset": 12518, "endOffset": 12735, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "promiseAfterHook", + "ranges": [{ "startOffset": 12737, "endOffset": 13310, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "promiseResolveHook", + "ranges": [{ "startOffset": 13312, "endOffset": 13464, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "enableHooks", + "ranges": [{ "startOffset": 13495, "endOffset": 13601, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "updatePromiseHookMode", + "ranges": [{ "startOffset": 13624, "endOffset": 14203, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "disableHooks", + "ranges": [{ "startOffset": 14205, "endOffset": 14508, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "disablePromiseHookIfNecessary", + "ranges": [{ "startOffset": 14510, "endOffset": 14626, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "newAsyncId", + "ranges": [{ "startOffset": 14827, "endOffset": 14897, "count": 10 }], + "isBlockCoverage": false + }, + { + "functionName": "getOrSetAsyncId", + "ranges": [{ "startOffset": 14899, "endOffset": 15089, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getDefaultTriggerAsyncId", + "ranges": [{ "startOffset": 15272, "endOffset": 15562, "count": 10 }], + "isBlockCoverage": false + }, + { + "functionName": "clearDefaultTriggerAsyncId", + "ranges": [{ "startOffset": 15565, "endOffset": 15654, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "defaultTriggerAsyncIdScope", + "ranges": [{ "startOffset": 15878, "endOffset": 16371, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hasHooks", + "ranges": [{ "startOffset": 16373, "endOffset": 16436, "count": 50 }], + "isBlockCoverage": false + }, + { + "functionName": "enabledHooksExist", + "ranges": [{ "startOffset": 16438, "endOffset": 16497, "count": 10 }], + "isBlockCoverage": false + }, + { + "functionName": "initHooksExist", + "ranges": [{ "startOffset": 16499, "endOffset": 16554, "count": 10 }], + "isBlockCoverage": false + }, + { + "functionName": "afterHooksExist", + "ranges": [{ "startOffset": 16556, "endOffset": 16613, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "destroyHooksExist", + "ranges": [{ "startOffset": 16615, "endOffset": 16676, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "promiseResolveHooksExist", + "ranges": [{ "startOffset": 16678, "endOffset": 16753, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "emitInitScript", + "ranges": [{ "startOffset": 16756, "endOffset": 17202, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "emitBeforeScript", + "ranges": [{ "startOffset": 17205, "endOffset": 17419, "count": 10 }], + "isBlockCoverage": false + }, + { + "functionName": "emitAfterScript", + "ranges": [{ "startOffset": 17422, "endOffset": 17542, "count": 10 }], + "isBlockCoverage": false + }, + { + "functionName": "emitDestroyScript", + "ranges": [{ "startOffset": 17545, "endOffset": 17757, "count": 10 }], + "isBlockCoverage": false + }, + { + "functionName": "hasAsyncIdStack", + "ranges": [{ "startOffset": 17760, "endOffset": 17823, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pushAsyncContext", + "ranges": [{ "startOffset": 17889, "endOffset": 18459, "count": 10 }], + "isBlockCoverage": false + }, + { + "functionName": "popAsyncContext", + "ranges": [{ "startOffset": 18524, "endOffset": 19135, "count": 10 }], + "isBlockCoverage": false + }, + { + "functionName": "executionAsyncId", + "ranges": [{ "startOffset": 19138, "endOffset": 19214, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "triggerAsyncId", + "ranges": [{ "startOffset": 19216, "endOffset": 19288, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "86", + "url": "node:internal/validators", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 19090, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "isInt32", + "ranges": [{ "startOffset": 1165, "endOffset": 1224, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "isUint32", + "ranges": [{ "startOffset": 1276, "endOffset": 1338, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseFileMode", + "ranges": [{ "startOffset": 1959, "endOffset": 2270, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2516, "endOffset": 2897, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3141, "endOffset": 3604, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3835, "endOffset": 4267, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4459, "endOffset": 4571, "count": 77 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4813, "endOffset": 5259, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5447, "endOffset": 5780, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5591, "endOffset": 5652, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5976, "endOffset": 6090, "count": 4 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6672, "endOffset": 7691, "count": 39 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8246, "endOffset": 8426, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8645, "endOffset": 8923, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9132, "endOffset": 9475, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9688, "endOffset": 10044, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "validateAbortSignalArray", + "ranges": [{ "startOffset": 10224, "endOffset": 10573, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 10728, "endOffset": 11077, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 11291, "endOffset": 11521, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 11626, "endOffset": 11938, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 12239, "endOffset": 12600, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 12770, "endOffset": 12987, "count": 12 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 13187, "endOffset": 13303, "count": 27 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 13518, "endOffset": 13660, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 13864, "endOffset": 13973, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "validateUnion", + "ranges": [{ "startOffset": 14066, "endOffset": 14253, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 14730, "endOffset": 15006, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 15236, "endOffset": 15426, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 15529, "endOffset": 16219, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 16402, "endOffset": 16738, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 16884, "endOffset": 17135, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 17365, "endOffset": 17701, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 18005, "endOffset": 18266, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "87", + "url": "node:internal/util", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 28980, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "lazyUv", + "ranges": [{ "startOffset": 2143, "endOffset": 2223, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "removeColors", + "ranges": [{ "startOffset": 2225, "endOffset": 2310, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isError", + "ranges": [{ "startOffset": 2312, "endOffset": 2588, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getDeprecationWarningEmitter", + "ranges": [{ "startOffset": 2764, "endOffset": 3522, "count": 30 }], + "isBlockCoverage": false + }, + { + "functionName": "shouldEmitWarning", + "ranges": [{ "startOffset": 2863, "endOffset": 2873, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2910, "endOffset": 3519, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isPendingDeprecation", + "ranges": [{ "startOffset": 3524, "endOffset": 3652, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "deprecateProperty", + "ranges": [{ "startOffset": 3654, "endOffset": 3938, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pendingDeprecate", + "ranges": [{ "startOffset": 4105, "endOffset": 4531, "count": 3 }], + "isBlockCoverage": false + }, + { + "functionName": "deprecated", + "ranges": [{ "startOffset": 4274, "endOffset": 4379, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "deprecate", + "ranges": [{ "startOffset": 4686, "endOffset": 5989, "count": 26 }], + "isBlockCoverage": false + }, + { + "functionName": "deprecated", + "ranges": [{ "startOffset": 5074, "endOffset": 5302, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "deprecateInstantiation", + "ranges": [{ "startOffset": 5991, "endOffset": 6255, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "decorateErrorStack", + "ranges": [{ "startOffset": 6257, "endOffset": 6523, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "assertCrypto", + "ranges": [{ "startOffset": 6525, "endOffset": 6599, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "assertTypeScript", + "ranges": [{ "startOffset": 6601, "endOffset": 6790, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "normalizeEncoding", + "ranges": [{ "startOffset": 7032, "endOffset": 7163, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "slowCases", + "ranges": [{ "startOffset": 7165, "endOffset": 8965, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "emitExperimentalWarning", + "ranges": [{ "startOffset": 9236, "endOffset": 9597, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "filterDuplicateStrings", + "ranges": [{ "startOffset": 9599, "endOffset": 9938, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cachedResult", + "ranges": [{ "startOffset": 9940, "endOffset": 10096, "count": 3 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9991, "endOffset": 10093, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createClassWrapper", + "ranges": [{ "startOffset": 10361, "endOffset": 10761, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getSignalsToNamesMapping", + "ranges": [{ "startOffset": 10790, "endOffset": 11069, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "convertToValidSignal", + "ranges": [{ "startOffset": 11071, "endOffset": 11392, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "convertProcessSignalToExitCode", + "ranges": [{ "startOffset": 11394, "endOffset": 11769, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getConstructorOf", + "ranges": [{ "startOffset": 11771, "endOffset": 12117, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getCWDURL", + "ranges": [{ "startOffset": 12440, "endOffset": 12950, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getSystemErrorMessage", + "ranges": [{ "startOffset": 12952, "endOffset": 13031, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getSystemErrorName", + "ranges": [{ "startOffset": 13033, "endOffset": 13162, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getSystemErrorMap", + "ranges": [{ "startOffset": 13164, "endOffset": 13229, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "promisify", + "ranges": [{ "startOffset": 13397, "endOffset": 15452, "count": 3 }], + "isBlockCoverage": false + }, + { + "functionName": "fn", + "ranges": [{ "startOffset": 14137, "endOffset": 14850, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "join", + "ranges": [{ "startOffset": 15547, "endOffset": 15869, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "spliceOne", + "ranges": [{ "startOffset": 16010, "endOffset": 16137, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isUnderNodeModules", + "ranges": [{ "startOffset": 16196, "endOffset": 16316, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lazyGetStructuredStack", + "ranges": [{ "startOffset": 16347, "endOffset": 17125, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getStructuredStack", + "ranges": [{ "startOffset": 17127, "endOffset": 17255, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "once", + "ranges": [{ "startOffset": 17257, "endOffset": 17596, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "sleep", + "ranges": [{ "startOffset": 17619, "endOffset": 17834, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "defineOperation", + "ranges": [{ "startOffset": 17894, "endOffset": 18095, "count": 7 }], + "isBlockCoverage": false + }, + { + "functionName": "exposeInterface", + "ranges": [{ "startOffset": 18147, "endOffset": 18367, "count": 5 }], + "isBlockCoverage": false + }, + { + "functionName": "exposeNamespace", + "ranges": [{ "startOffset": 18419, "endOffset": 18639, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "exposeGetterAndSetter", + "ranges": [{ "startOffset": 18641, "endOffset": 18864, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "defineReplaceableLazyAttribute", + "ranges": [{ "startOffset": 18866, "endOffset": 19766, "count": 3 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 19078, "endOffset": 19314, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 19419, "endOffset": 19490, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "exposeLazyInterfaces", + "ranges": [{ "startOffset": 19768, "endOffset": 19868, "count": 18 }], + "isBlockCoverage": false + }, + { + "functionName": "lazyDOMExceptionClass", + "ranges": [{ "startOffset": 19919, "endOffset": 20015, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lazyDOMException", + "ranges": [{ "startOffset": 20043, "endOffset": 20439, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "filterOwnProperties", + "ranges": [{ "startOffset": 20623, "endOffset": 20895, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setOwnProperty", + "ranges": [{ "startOffset": 21063, "endOffset": 21253, "count": 12 }], + "isBlockCoverage": false + }, + { + "functionName": "getInternalGlobal", + "ranges": [{ "startOffset": 21275, "endOffset": 21550, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "SideEffectFreeRegExpPrototypeExec", + "ranges": [{ "startOffset": 21552, "endOffset": 21765, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getCrossRealmRegex", + "ranges": [{ "startOffset": 21812, "endOffset": 22609, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "SideEffectFreeRegExpPrototypeSymbolReplace", + "ranges": [{ "startOffset": 22611, "endOffset": 22766, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "SideEffectFreeRegExpPrototypeSymbolSplit", + "ranges": [{ "startOffset": 22768, "endOffset": 22919, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getLazy", + "ranges": [{ "startOffset": 23120, "endOffset": 23332, "count": 9 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 23201, "endOffset": 23329, "count": 23 }], + "isBlockCoverage": false + }, + { + "functionName": "setupCoverageHooks", + "ranges": [{ "startOffset": 23457, "endOffset": 24134, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "countBinaryOnes", + "ranges": [{ "startOffset": 24221, "endOffset": 24474, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getCIDR", + "ranges": [{ "startOffset": 24476, "endOffset": 25452, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "guessHandleType", + "ranges": [{ "startOffset": 25524, "endOffset": 25621, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 25647, "endOffset": 25756, "count": 21 }], + "isBlockCoverage": false + }, + { + "functionName": "WeakReference", + "ranges": [{ "startOffset": 25760, "endOffset": 25827, "count": 21 }], + "isBlockCoverage": false + }, + { + "functionName": "incRef", + "ranges": [{ "startOffset": 25831, "endOffset": 26049, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "decRef", + "ranges": [{ "startOffset": 26053, "endOffset": 26181, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 26185, "endOffset": 26227, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "assignFunctionName", + "ranges": [{ "startOffset": 26681, "endOffset": 27221, "count": 3 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "88", + "url": "node:internal/options", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 4925, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "getCLIOptionsFromBinding", + "ranges": [{ "startOffset": 722, "endOffset": 809, "count": 60 }], + "isBlockCoverage": false + }, + { + "functionName": "getCLIOptionsInfoFromBinding", + "ranges": [{ "startOffset": 811, "endOffset": 896, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getOptionsAsFlagsFromBinding", + "ranges": [{ "startOffset": 898, "endOffset": 988, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getEmbedderOptions", + "ranges": [{ "startOffset": 990, "endOffset": 1085, "count": 4 }], + "isBlockCoverage": false + }, + { + "functionName": "generateConfigJsonSchema", + "ranges": [{ "startOffset": 1087, "endOffset": 4093, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "refreshOptions", + "ranges": [{ "startOffset": 4095, "endOffset": 4151, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "getOptionValue", + "ranges": [{ "startOffset": 4153, "endOffset": 4241, "count": 60 }], + "isBlockCoverage": false + }, + { + "functionName": "getAllowUnauthorized", + "ranges": [{ "startOffset": 4243, "endOffset": 4708, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "89", + "url": "node:internal/util/types", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2599, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "isTypedArray", + "ranges": [{ "startOffset": 131, "endOffset": 234, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isUint8Array", + "ranges": [{ "startOffset": 236, "endOffset": 342, "count": 5 }], + "isBlockCoverage": false + }, + { + "functionName": "isUint8ClampedArray", + "ranges": [{ "startOffset": 344, "endOffset": 464, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isUint16Array", + "ranges": [{ "startOffset": 466, "endOffset": 574, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isUint32Array", + "ranges": [{ "startOffset": 576, "endOffset": 684, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isInt8Array", + "ranges": [{ "startOffset": 686, "endOffset": 790, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isInt16Array", + "ranges": [{ "startOffset": 792, "endOffset": 898, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isInt32Array", + "ranges": [{ "startOffset": 900, "endOffset": 1006, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isFloat16Array", + "ranges": [{ "startOffset": 1008, "endOffset": 1118, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isFloat32Array", + "ranges": [{ "startOffset": 1120, "endOffset": 1230, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isFloat64Array", + "ranges": [{ "startOffset": 1232, "endOffset": 1342, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isBigInt64Array", + "ranges": [{ "startOffset": 1344, "endOffset": 1456, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isBigUint64Array", + "ranges": [{ "startOffset": 1458, "endOffset": 1572, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "value", + "ranges": [{ "startOffset": 2062, "endOffset": 2277, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "value", + "ranges": [{ "startOffset": 2373, "endOffset": 2588, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "90", + "url": "node:internal/linkedlist", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1128, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "init", + "ranges": [{ "startOffset": 15, "endOffset": 103, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "peek", + "ranges": [{ "startOffset": 133, "endOffset": 225, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "remove", + "ranges": [{ "startOffset": 260, "endOffset": 487, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "append", + "ranges": [{ "startOffset": 543, "endOffset": 995, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isEmpty", + "ranges": [{ "startOffset": 997, "endOffset": 1057, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "91", + "url": "node:internal/priority_queue", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2755, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 384, "endOffset": 473, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "#compare", + "ranges": [{ "startOffset": 395, "endOffset": 410, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "PriorityQueue", + "ranges": [{ "startOffset": 478, "endOffset": 662, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "insert", + "ranges": [{ "startOffset": 666, "endOffset": 795, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "peek", + "ranges": [{ "startOffset": 799, "endOffset": 837, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "peekBottom", + "ranges": [{ "startOffset": 841, "endOffset": 894, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "percolateDown", + "ranges": [{ "startOffset": 898, "endOffset": 1687, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "percolateUp", + "ranges": [{ "startOffset": 1691, "endOffset": 2249, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "removeAt", + "ranges": [{ "startOffset": 2253, "endOffset": 2593, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "shift", + "ranges": [{ "startOffset": 2597, "endOffset": 2751, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "92", + "url": "node:internal/util/inspect", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 92944, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "pathToFileUrlHref", + "ranges": [{ "startOffset": 3904, "endOffset": 4038, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isURL", + "ranges": [{ "startOffset": 4040, "endOffset": 4185, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4294, "endOffset": 4355, "count": 67 }], + "isBlockCoverage": false + }, + { + "functionName": "isUndetectableObject", + "ranges": [{ "startOffset": 4451, "endOffset": 4501, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getUserOptions", + "ranges": [{ "startOffset": 7949, "endOffset": 9493, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inspect", + "ranges": [{ "startOffset": 9785, "endOffset": 11811, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 11922, "endOffset": 11967, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 11971, "endOffset": 12086, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "defineColorAlias", + "ranges": [{ "startOffset": 13810, "endOffset": 14074, "count": 12 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 13926, "endOffset": 13966, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 13972, "endOffset": 14018, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addQuotes", + "ranges": [{ "startOffset": 15086, "endOffset": 15244, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "escapeFn", + "ranges": [{ "startOffset": 15246, "endOffset": 15421, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "strEscape", + "ranges": [{ "startOffset": 15533, "endOffset": 17687, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stylizeWithColor", + "ranges": [{ "startOffset": 17689, "endOffset": 17955, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stylizeNoColor", + "ranges": [{ "startOffset": 17957, "endOffset": 18003, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getEmptyFormatArray", + "ranges": [{ "startOffset": 18082, "endOffset": 18129, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isInstanceof", + "ranges": [{ "startOffset": 18131, "endOffset": 18249, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getConstructorName", + "ranges": [{ "startOffset": 19763, "endOffset": 21522, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addPrototypeProperties", + "ranges": [{ "startOffset": 21709, "endOffset": 23542, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getPrefix", + "ranges": [{ "startOffset": 23637, "endOffset": 24295, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getKeys", + "ranges": [{ "startOffset": 24332, "endOffset": 25323, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getCtxStyle", + "ranges": [{ "startOffset": 25325, "endOffset": 25588, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "formatProxy", + "ranges": [{ "startOffset": 25590, "endOffset": 26040, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "formatValue", + "ranges": [{ "startOffset": 26222, "endOffset": 29022, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "formatRaw", + "ranges": [{ "startOffset": 29024, "endOffset": 40805, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getIteratorBraces", + "ranges": [{ "startOffset": 40807, "endOffset": 40989, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getBoxedBase", + "ranges": [{ "startOffset": 40991, "endOffset": 42179, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getClassBase", + "ranges": [{ "startOffset": 42181, "endOffset": 42781, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getFunctionBase", + "ranges": [{ "startOffset": 42783, "endOffset": 44087, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "identicalSequenceRange", + "ranges": [{ "startOffset": 44089, "endOffset": 44680, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getDuplicateErrorFrameRanges", + "ranges": [{ "startOffset": 44682, "endOffset": 48068, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getStackString", + "ranges": [{ "startOffset": 48070, "endOffset": 48563, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getStackFrames", + "ranges": [{ "startOffset": 48565, "endOffset": 50106, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "improveStack", + "ranges": [{ "startOffset": 50205, "endOffset": 51593, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "markNodeModules", + "ranges": [{ "startOffset": 51595, "endOffset": 53023, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "markCwd", + "ranges": [{ "startOffset": 53025, "endOffset": 54002, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "safeGetCWD", + "ranges": [{ "startOffset": 54004, "endOffset": 54154, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "formatError", + "ranges": [{ "startOffset": 54156, "endOffset": 57854, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "groupArrayElements", + "ranges": [{ "startOffset": 57856, "endOffset": 62195, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "handleMaxCallStackSize", + "ranges": [{ "startOffset": 62197, "endOffset": 62484, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addNumericSeparator", + "ranges": [{ "startOffset": 62486, "endOffset": 62886, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addNumericSeparatorEnd", + "ranges": [{ "startOffset": 62888, "endOffset": 63187, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "remainingText", + "ranges": [{ "startOffset": 63211, "endOffset": 63281, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "formatNumber", + "ranges": [{ "startOffset": 63284, "endOffset": 64271, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "formatBigInt", + "ranges": [{ "startOffset": 64273, "endOffset": 64489, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "formatPrimitive", + "ranges": [{ "startOffset": 64491, "endOffset": 65896, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "formatNamespaceObject", + "ranges": [{ "startOffset": 65898, "endOffset": 67050, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "formatSpecialArray", + "ranges": [{ "startOffset": 67097, "endOffset": 68357, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "formatArrayBuffer", + "ranges": [{ "startOffset": 68359, "endOffset": 69140, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "formatArray", + "ranges": [{ "startOffset": 69142, "endOffset": 69786, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "formatTypedArray", + "ranges": [{ "startOffset": 69788, "endOffset": 70323, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "formatSet", + "ranges": [{ "startOffset": 70325, "endOffset": 70848, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "formatMap", + "ranges": [{ "startOffset": 70850, "endOffset": 71450, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "formatSetIterInner", + "ranges": [{ "startOffset": 71452, "endOffset": 72255, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "formatMapIterInner", + "ranges": [{ "startOffset": 72257, "endOffset": 73565, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "formatWeakCollection", + "ranges": [{ "startOffset": 73567, "endOffset": 73659, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "formatWeakSet", + "ranges": [{ "startOffset": 73661, "endOffset": 73818, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "formatWeakMap", + "ranges": [{ "startOffset": 73820, "endOffset": 73977, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "formatIterator", + "ranges": [{ "startOffset": 73979, "endOffset": 74400, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "formatPromise", + "ranges": [{ "startOffset": 74402, "endOffset": 74876, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "formatExtraProperties", + "ranges": [{ "startOffset": 74878, "endOffset": 75236, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "formatProperty", + "ranges": [{ "startOffset": 75238, "endOffset": 77632, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isBelowBreakLength", + "ranges": [{ "startOffset": 77634, "endOffset": 78592, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "reduceToSingleString", + "ranges": [{ "startOffset": 78594, "endOffset": 81495, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hasBuiltInToString", + "ranges": [{ "startOffset": 81497, "endOffset": 83082, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "returnFalse", + "ranges": [{ "startOffset": 83084, "endOffset": 83126, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "firstErrorLine", + "ranges": [{ "startOffset": 83151, "endOffset": 83209, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "tryStringify", + "ranges": [{ "startOffset": 83239, "endOffset": 83744, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "format", + "ranges": [{ "startOffset": 83746, "endOffset": 83827, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "formatWithOptions", + "ranges": [{ "startOffset": 83829, "endOffset": 84021, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "formatNumberNoColor", + "ranges": [{ "startOffset": 84023, "endOffset": 84205, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "formatBigIntNoColor", + "ranges": [{ "startOffset": 84207, "endOffset": 84389, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "formatWithOptionsInternal", + "ranges": [{ "startOffset": 84391, "endOffset": 88415, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isZeroWidthCodePoint", + "ranges": [{ "startOffset": 88417, "endOffset": 88991, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getStringWidth", + "ranges": [{ "startOffset": 89420, "endOffset": 90011, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getStringWidth", + "ranges": [{ "startOffset": 90200, "endOffset": 90668, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isFullWidthCodePoint", + "ranges": [{ "startOffset": 90886, "endOffset": 92495, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stripVTControlCharacters", + "ranges": [{ "startOffset": 92630, "endOffset": 92757, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "93", + "url": "node:internal/util/debuglog", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 12596, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "initializeDebugEnv", + "ranges": [{ "startOffset": 832, "endOffset": 1305, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "testEnabled", + "ranges": [{ "startOffset": 1199, "endOffset": 1256, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "testEnabled", + "ranges": [{ "startOffset": 1287, "endOffset": 1298, "count": 7 }], + "isBlockCoverage": false + }, + { + "functionName": "emitWarningIfNeeded", + "ranges": [{ "startOffset": 1379, "endOffset": 1718, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "noop", + "ranges": [{ "startOffset": 1733, "endOffset": 1741, "count": 84 }], + "isBlockCoverage": false + }, + { + "functionName": "lazyUtilColors", + "ranges": [{ "startOffset": 1760, "endOffset": 1860, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "debuglogImpl", + "ranges": [{ "startOffset": 1862, "endOffset": 2420, "count": 6 }], + "isBlockCoverage": false + }, + { + "functionName": "debug", + "ranges": [{ "startOffset": 2045, "endOffset": 2338, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "debuglog", + "ranges": [{ "startOffset": 2640, "endOffset": 3993, "count": 12 }], + "isBlockCoverage": false + }, + { + "functionName": "init", + "ranges": [{ "startOffset": 2671, "endOffset": 2767, "count": 6 }], + "isBlockCoverage": false + }, + { + "functionName": "debug", + "ranges": [{ "startOffset": 2782, "endOffset": 3373, "count": 6 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3061, "endOffset": 3104, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "test", + "ranges": [{ "startOffset": 3403, "endOffset": 3472, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "logger", + "ranges": [{ "startOffset": 3491, "endOffset": 3816, "count": 6 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3887, "endOffset": 3921, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pad", + "ranges": [{ "startOffset": 3995, "endOffset": 4072, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "formatTime", + "ranges": [{ "startOffset": 4276, "endOffset": 5058, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "safeTraceLabel", + "ranges": [{ "startOffset": 5060, "endOffset": 5158, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "timeLogImpl", + "ranges": [{ "startOffset": 5451, "endOffset": 5923, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "time", + "ranges": [{ "startOffset": 6138, "endOffset": 6777, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "timeEnd", + "ranges": [{ "startOffset": 7020, "endOffset": 7643, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "timeLog", + "ranges": [{ "startOffset": 7909, "endOffset": 8518, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "debugWithTimer", + "ranges": [{ "startOffset": 9084, "endOffset": 12441, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "logImpl", + "ranges": [{ "startOffset": 9277, "endOffset": 9825, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ensureTimerFlagsAreUpdated", + "ranges": [{ "startOffset": 9994, "endOffset": 10147, "count": 21 }], + "isBlockCoverage": false + }, + { + "functionName": "internalStartTimer", + "ranges": [{ "startOffset": 10187, "endOffset": 10496, "count": 10 }], + "isBlockCoverage": false + }, + { + "functionName": "internalEndTimer", + "ranges": [{ "startOffset": 10534, "endOffset": 10862, "count": 11 }], + "isBlockCoverage": false + }, + { + "functionName": "internalLogTimer", + "ranges": [{ "startOffset": 10900, "endOffset": 11246, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "init", + "ranges": [{ "startOffset": 11250, "endOffset": 11748, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "startTimer", + "ranges": [{ "startOffset": 11807, "endOffset": 11957, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "endTimer", + "ranges": [{ "startOffset": 12013, "endOffset": 12161, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "logTimer", + "ranges": [{ "startOffset": 12217, "endOffset": 12377, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "94", + "url": "node:internal/constants", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1583, "count": 1 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "95", + "url": "node:internal/async_context_frame", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1571, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "get enabled", + "ranges": [{ "startOffset": 281, "endOffset": 317, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "current", + "ranges": [{ "startOffset": 328, "endOffset": 394, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 405, "endOffset": 470, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "exchange", + "ranges": [{ "startOffset": 481, "endOffset": 575, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "disable", + "ranges": [{ "startOffset": 586, "endOffset": 667, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "checkEnabled", + "ranges": [{ "startOffset": 671, "endOffset": 1085, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get enabled", + "ranges": [{ "startOffset": 1146, "endOffset": 1219, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "current", + "ranges": [{ "startOffset": 1230, "endOffset": 1242, "count": 10 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 1252, "endOffset": 1265, "count": 10 }], + "isBlockCoverage": false + }, + { + "functionName": "exchange", + "ranges": [{ "startOffset": 1275, "endOffset": 1293, "count": 10 }], + "isBlockCoverage": false + }, + { + "functionName": "disable", + "ranges": [{ "startOffset": 1303, "endOffset": 1320, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "AsyncContextFrame", + "ranges": [{ "startOffset": 1386, "endOffset": 1483, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "disable", + "ranges": [{ "startOffset": 1487, "endOffset": 1531, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "96", + "url": "node:events", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 35408, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "lazyEventEmitterAsyncResource", + "ranges": [{ "startOffset": 3125, "endOffset": 5655, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "EventEmitter", + "ranges": [{ "startOffset": 5787, "endOffset": 5856, "count": 7 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 6387, "endOffset": 6443, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 6447, "endOffset": 6572, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "checkListener", + "ranges": [{ "startOffset": 7353, "endOffset": 7431, "count": 14 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 7539, "endOffset": 7587, "count": 5 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 7596, "endOffset": 7697, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8250, "endOffset": 9062, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9229, "endOffset": 9877, "count": 7 }], + "isBlockCoverage": false + }, + { + "functionName": "addCatch", + "ranges": [{ "startOffset": 9880, "endOffset": 10439, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "emitUnhandledRejectionOrErr", + "ranges": [{ "startOffset": 10441, "endOffset": 11098, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setMaxListeners", + "ranges": [{ "startOffset": 11250, "endOffset": 11365, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_getMaxListeners", + "ranges": [{ "startOffset": 11368, "endOffset": 11517, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "getMaxListeners", + "ranges": [{ "startOffset": 11654, "endOffset": 11717, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "enhanceStackTrace", + "ranges": [{ "startOffset": 11720, "endOffset": 12479, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "emit", + "ranges": [{ "startOffset": 12674, "endOffset": 14966, "count": 10 }], + "isBlockCoverage": false + }, + { + "functionName": "_addListener", + "ranges": [{ "startOffset": 14969, "endOffset": 16885, "count": 12 }], + "isBlockCoverage": false + }, + { + "functionName": "addListener", + "ranges": [{ "startOffset": 17063, "endOffset": 17155, "count": 12 }], + "isBlockCoverage": false + }, + { + "functionName": "prependListener", + "ranges": [{ "startOffset": 17442, "endOffset": 17545, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "onceWrapper", + "ranges": [{ "startOffset": 17548, "endOffset": 17812, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_onceWrap", + "ranges": [{ "startOffset": 17814, "endOffset": 18055, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "once", + "ranges": [{ "startOffset": 18246, "endOffset": 18372, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "prependOnceListener", + "ranges": [{ "startOffset": 18605, "endOffset": 18775, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "removeListener", + "ranges": [{ "startOffset": 18982, "endOffset": 20299, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "removeAllListeners", + "ranges": [{ "startOffset": 20619, "endOffset": 22016, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_listeners", + "ranges": [{ "startOffset": 22019, "endOffset": 22414, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "listeners", + "ranges": [{ "startOffset": 22604, "endOffset": 22671, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "rawListeners", + "ranges": [{ "startOffset": 22878, "endOffset": 22949, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "listenerCount", + "ranges": [{ "startOffset": 23168, "endOffset": 23873, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "eventNames", + "ranges": [{ "startOffset": 24044, "endOffset": 24137, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "arrayClone", + "ranges": [{ "startOffset": 24140, "endOffset": 24613, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "unwrapListeners", + "ranges": [{ "startOffset": 24615, "endOffset": 24829, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getEventListeners", + "ranges": [{ "startOffset": 25039, "endOffset": 25913, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getMaxListeners", + "ranges": [{ "startOffset": 26033, "endOffset": 26488, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "listenerCount", + "ranges": [{ "startOffset": 26665, "endOffset": 27161, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "once", + "ranges": [{ "startOffset": 27390, "endOffset": 29141, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createIterResult", + "ranges": [{ "startOffset": 29143, "endOffset": 29211, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "eventTargetAgnosticRemoveListener", + "ranges": [{ "startOffset": 29213, "endOffset": 29598, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "eventTargetAgnosticAddListener", + "ranges": [{ "startOffset": 29600, "endOffset": 30032, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "on", + "ranges": [{ "startOffset": 30337, "endOffset": 34959, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "listenersController", + "ranges": [{ "startOffset": 34961, "endOffset": 35407, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "97", + "url": "node:internal/events/abort_listener", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1320, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "addAbortListener", + "ranges": [{ "startOffset": 375, "endOffset": 1257, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "98", + "url": "node:buffer", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 40007, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "validateOffset", + "ranges": [{ "startOffset": 3426, "endOffset": 3510, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createPool", + "ranges": [{ "startOffset": 4175, "endOffset": 4363, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "alignPool", + "ranges": [{ "startOffset": 4379, "endOffset": 4501, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "showFlaggedDeprecation", + "ranges": [{ "startOffset": 4805, "endOffset": 5559, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toInteger", + "ranges": [{ "startOffset": 5561, "endOffset": 5779, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "copyImpl", + "ranges": [{ "startOffset": 5781, "endOffset": 7073, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_copyActual", + "ranges": [{ "startOffset": 7075, "endOffset": 7695, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Buffer", + "ranges": [{ "startOffset": 8292, "endOffset": 8625, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 8737, "endOffset": 8765, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "from", + "ranges": [{ "startOffset": 9145, "endOffset": 10110, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "copyBytesFrom", + "ranges": [{ "startOffset": 10364, "endOffset": 11247, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "of", + "ranges": [{ "startOffset": 11618, "endOffset": 11803, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "alloc", + "ranges": [{ "startOffset": 11989, "endOffset": 12261, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "allocUnsafe", + "ranges": [{ "startOffset": 12465, "endOffset": 12567, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "allocUnsafeSlow", + "ranges": [{ "startOffset": 12867, "endOffset": 12983, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "SlowBuffer", + "ranges": [{ "startOffset": 13079, "endOffset": 13190, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "allocate", + "ranges": [{ "startOffset": 13304, "endOffset": 13636, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fromStringFast", + "ranges": [{ "startOffset": 13638, "endOffset": 14290, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "createFromString", + "ranges": [{ "startOffset": 14292, "endOffset": 14537, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fromString", + "ranges": [{ "startOffset": 14539, "endOffset": 14899, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "fromArrayBuffer", + "ranges": [{ "startOffset": 14901, "endOffset": 15563, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fromArrayLike", + "ranges": [{ "startOffset": 15565, "endOffset": 15959, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fromObject", + "ranges": [{ "startOffset": 15961, "endOffset": 16267, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isBuffer", + "ranges": [{ "startOffset": 16306, "endOffset": 16360, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "compare", + "ranges": [{ "startOffset": 16380, "endOffset": 16705, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isEncoding", + "ranges": [{ "startOffset": 16728, "endOffset": 16879, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "concat", + "ranges": [{ "startOffset": 16945, "endOffset": 18098, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "base64ByteLength", + "ranges": [{ "startOffset": 18101, "endOffset": 18369, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "indexOf", + "ranges": [{ "startOffset": 18550, "endOffset": 18646, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "byteLength", + "ranges": [{ "startOffset": 18740, "endOffset": 18769, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "indexOf", + "ranges": [{ "startOffset": 18828, "endOffset": 18927, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "byteLength", + "ranges": [{ "startOffset": 19027, "endOffset": 19056, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "indexOf", + "ranges": [{ "startOffset": 19115, "endOffset": 19214, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "byteLength", + "ranges": [{ "startOffset": 19311, "endOffset": 19336, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "indexOf", + "ranges": [{ "startOffset": 19399, "endOffset": 19497, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "byteLength", + "ranges": [{ "startOffset": 19591, "endOffset": 19616, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "indexOf", + "ranges": [{ "startOffset": 19677, "endOffset": 19889, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "byteLength", + "ranges": [{ "startOffset": 19986, "endOffset": 20037, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "indexOf", + "ranges": [{ "startOffset": 20100, "endOffset": 20314, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "byteLength", + "ranges": [{ "startOffset": 20420, "endOffset": 20471, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "indexOf", + "ranges": [{ "startOffset": 20540, "endOffset": 20760, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "byteLength", + "ranges": [{ "startOffset": 20848, "endOffset": 20879, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "indexOf", + "ranges": [{ "startOffset": 20936, "endOffset": 21144, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getEncodingOps", + "ranges": [{ "startOffset": 21154, "endOffset": 22978, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "byteLength", + "ranges": [{ "startOffset": 22980, "endOffset": 23706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 23865, "endOffset": 23959, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 24057, "endOffset": 24155, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "copy", + "ranges": [{ "startOffset": 24188, "endOffset": 24324, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toString", + "ranges": [{ "startOffset": 24605, "endOffset": 25222, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "equals", + "ranges": [{ "startOffset": 25251, "endOffset": 25657, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inspect", + "ranges": [{ "startOffset": 25785, "endOffset": 27200, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "compare", + "ranges": [{ "startOffset": 27296, "endOffset": 28445, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "bidirectionalIndexOf", + "ranges": [{ "startOffset": 28873, "endOffset": 30181, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "indexOf", + "ranges": [{ "startOffset": 30210, "endOffset": 30327, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lastIndexOf", + "ranges": [{ "startOffset": 30361, "endOffset": 30483, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "includes", + "ranges": [{ "startOffset": 30514, "endOffset": 30639, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fill", + "ranges": [{ "startOffset": 30817, "endOffset": 30916, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_fill", + "ranges": [{ "startOffset": 30919, "endOffset": 32865, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "write", + "ranges": [{ "startOffset": 32892, "endOffset": 34013, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toJSON", + "ranges": [{ "startOffset": 34042, "endOffset": 34276, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "adjustOffset", + "ranges": [{ "startOffset": 34279, "endOffset": 34713, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "subarray", + "ranges": [{ "startOffset": 34743, "endOffset": 35046, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "slice", + "ranges": [{ "startOffset": 35074, "endOffset": 35140, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "swap", + "ranges": [{ "startOffset": 35143, "endOffset": 35214, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "swap16", + "ranges": [{ "startOffset": 35242, "endOffset": 35646, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "swap32", + "ranges": [{ "startOffset": 35675, "endOffset": 36119, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "swap64", + "ranges": [{ "startOffset": 36148, "endOffset": 36656, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transcode", + "ranges": [{ "startOffset": 36970, "endOffset": 37670, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "btoa", + "ranges": [{ "startOffset": 37675, "endOffset": 38105, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "atob", + "ranges": [{ "startOffset": 38107, "endOffset": 38755, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isUtf8", + "ranges": [{ "startOffset": 38757, "endOffset": 38968, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isAscii", + "ranges": [{ "startOffset": 38970, "endOffset": 39183, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 39688, "endOffset": 39723, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 39729, "endOffset": 39827, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "99", + "url": "node:internal/buffer", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 32967, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "checkBounds", + "ranges": [{ "startOffset": 1200, "endOffset": 1416, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "checkInt", + "ranges": [{ "startOffset": 1418, "endOffset": 2040, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "boundsError", + "ranges": [{ "startOffset": 2042, "endOffset": 2445, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readBigUInt64LE", + "ranges": [{ "startOffset": 2465, "endOffset": 2964, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readBigUInt64BE", + "ranges": [{ "startOffset": 2966, "endOffset": 3465, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readBigInt64LE", + "ranges": [{ "startOffset": 3467, "endOffset": 3968, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readBigInt64BE", + "ranges": [{ "startOffset": 3970, "endOffset": 4465, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readUIntLE", + "ranges": [{ "startOffset": 4467, "endOffset": 5022, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readUInt48LE", + "ranges": [{ "startOffset": 5024, "endOffset": 5407, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readUInt40LE", + "ranges": [{ "startOffset": 5409, "endOffset": 5765, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readUInt32LE", + "ranges": [{ "startOffset": 5767, "endOffset": 6093, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readUInt24LE", + "ranges": [{ "startOffset": 6095, "endOffset": 6383, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readUInt16LE", + "ranges": [{ "startOffset": 6385, "endOffset": 6647, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readUInt8", + "ranges": [{ "startOffset": 6649, "endOffset": 6832, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readUIntBE", + "ranges": [{ "startOffset": 6834, "endOffset": 7389, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readUInt48BE", + "ranges": [{ "startOffset": 7391, "endOffset": 7774, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readUInt40BE", + "ranges": [{ "startOffset": 7776, "endOffset": 8132, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readUInt32BE", + "ranges": [{ "startOffset": 8134, "endOffset": 8460, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readUInt24BE", + "ranges": [{ "startOffset": 8462, "endOffset": 8750, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readUInt16BE", + "ranges": [{ "startOffset": 8752, "endOffset": 9014, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readIntLE", + "ranges": [{ "startOffset": 9016, "endOffset": 9564, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readInt48LE", + "ranges": [{ "startOffset": 9566, "endOffset": 9997, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readInt40LE", + "ranges": [{ "startOffset": 9999, "endOffset": 10386, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readInt32LE", + "ranges": [{ "startOffset": 10388, "endOffset": 10723, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readInt24LE", + "ranges": [{ "startOffset": 10725, "endOffset": 11057, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readInt16LE", + "ranges": [{ "startOffset": 11059, "endOffset": 11367, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readInt8", + "ranges": [{ "startOffset": 11369, "endOffset": 11580, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readIntBE", + "ranges": [{ "startOffset": 11582, "endOffset": 12130, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readInt48BE", + "ranges": [{ "startOffset": 12132, "endOffset": 12561, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readInt40BE", + "ranges": [{ "startOffset": 12563, "endOffset": 12951, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readInt32BE", + "ranges": [{ "startOffset": 12953, "endOffset": 13288, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readInt24BE", + "ranges": [{ "startOffset": 13290, "endOffset": 13622, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readInt16BE", + "ranges": [{ "startOffset": 13624, "endOffset": 13932, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readFloatBackwards", + "ranges": [{ "startOffset": 13949, "endOffset": 14354, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readFloatForwards", + "ranges": [{ "startOffset": 14356, "endOffset": 14760, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readDoubleBackwards", + "ranges": [{ "startOffset": 14762, "endOffset": 15332, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readDoubleForwards", + "ranges": [{ "startOffset": 15334, "endOffset": 15903, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writeBigU_Int64LE", + "ranges": [{ "startOffset": 15924, "endOffset": 16406, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writeBigUInt64LE", + "ranges": [{ "startOffset": 16408, "endOffset": 16530, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writeBigU_Int64BE", + "ranges": [{ "startOffset": 16532, "endOffset": 17030, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writeBigUInt64BE", + "ranges": [{ "startOffset": 17032, "endOffset": 17154, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writeBigInt64LE", + "ranges": [{ "startOffset": 17156, "endOffset": 17300, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writeBigInt64BE", + "ranges": [{ "startOffset": 17302, "endOffset": 17446, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writeUIntLE", + "ranges": [{ "startOffset": 17448, "endOffset": 18057, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writeU_Int48LE", + "ranges": [{ "startOffset": 18059, "endOffset": 18472, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writeU_Int40LE", + "ranges": [{ "startOffset": 18474, "endOffset": 18853, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writeU_Int32LE", + "ranges": [{ "startOffset": 18855, "endOffset": 19162, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writeUInt32LE", + "ranges": [{ "startOffset": 19164, "endOffset": 19270, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writeU_Int24LE", + "ranges": [{ "startOffset": 19272, "endOffset": 19531, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writeU_Int16LE", + "ranges": [{ "startOffset": 19533, "endOffset": 19729, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writeUInt16LE", + "ranges": [{ "startOffset": 19731, "endOffset": 19833, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writeU_Int8", + "ranges": [{ "startOffset": 19835, "endOffset": 20247, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writeUInt8", + "ranges": [{ "startOffset": 20249, "endOffset": 20343, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writeUIntBE", + "ranges": [{ "startOffset": 20345, "endOffset": 20954, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writeU_Int48BE", + "ranges": [{ "startOffset": 20956, "endOffset": 21377, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writeU_Int40BE", + "ranges": [{ "startOffset": 21379, "endOffset": 21741, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writeU_Int32BE", + "ranges": [{ "startOffset": 21743, "endOffset": 22058, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writeUInt32BE", + "ranges": [{ "startOffset": 22060, "endOffset": 22166, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writeU_Int24BE", + "ranges": [{ "startOffset": 22168, "endOffset": 22433, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writeU_Int16BE", + "ranges": [{ "startOffset": 22435, "endOffset": 22631, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writeUInt16BE", + "ranges": [{ "startOffset": 22633, "endOffset": 22735, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writeIntLE", + "ranges": [{ "startOffset": 22737, "endOffset": 23399, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writeInt32LE", + "ranges": [{ "startOffset": 23401, "endOffset": 23516, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writeInt16LE", + "ranges": [{ "startOffset": 23518, "endOffset": 23625, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writeInt8", + "ranges": [{ "startOffset": 23627, "endOffset": 23724, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writeIntBE", + "ranges": [{ "startOffset": 23726, "endOffset": 24388, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writeInt32BE", + "ranges": [{ "startOffset": 24390, "endOffset": 24505, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writeInt16BE", + "ranges": [{ "startOffset": 24507, "endOffset": 24614, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writeDoubleForwards", + "ranges": [{ "startOffset": 24633, "endOffset": 25099, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writeDoubleBackwards", + "ranges": [{ "startOffset": 25101, "endOffset": 25568, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writeFloatForwards", + "ranges": [{ "startOffset": 25570, "endOffset": 25871, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writeFloatBackwards", + "ranges": [{ "startOffset": 25873, "endOffset": 26175, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "asciiWrite", + "ranges": [{ "startOffset": 26217, "endOffset": 26566, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "latin1Write", + "ranges": [{ "startOffset": 26568, "endOffset": 26919, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "utf8Write", + "ranges": [{ "startOffset": 26921, "endOffset": 27268, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "addBufferPrototypeMethods", + "ranges": [{ "startOffset": 27270, "endOffset": 31751, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 27891, "endOffset": 27946, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 27971, "endOffset": 28026, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 28048, "endOffset": 28100, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 28158, "endOffset": 28213, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 28238, "endOffset": 28293, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 28623, "endOffset": 28677, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 28701, "endOffset": 28755, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 28776, "endOffset": 28827, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 28882, "endOffset": 28936, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 28960, "endOffset": 29014, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 30419, "endOffset": 30480, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 30504, "endOffset": 30566, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 30593, "endOffset": 30658, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 30682, "endOffset": 30744, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 30765, "endOffset": 30824, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 30846, "endOffset": 30906, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 30928, "endOffset": 30988, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 31011, "endOffset": 31096, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 31120, "endOffset": 31206, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 31233, "endOffset": 31322, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 31346, "endOffset": 31432, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 31453, "endOffset": 31536, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 31558, "endOffset": 31642, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 31664, "endOffset": 31748, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "markAsUntransferable", + "ranges": [{ "startOffset": 31907, "endOffset": 32156, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "isMarkedAsUntransferable", + "ranges": [{ "startOffset": 32279, "endOffset": 32464, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createUnsafeBuffer", + "ranges": [{ "startOffset": 32466, "endOffset": 32752, "count": 1 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "100", + "url": "node:internal/worker/js_transferable", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 4019, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "setup", + "ranges": [{ "startOffset": 660, "endOffset": 1496, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 941, "endOffset": 1492, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "markTransferMode", + "ranges": [{ "startOffset": 2696, "endOffset": 3094, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "defaultValue", + "ranges": [{ "startOffset": 3300, "endOffset": 3308, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "structuredClone", + "ranges": [{ "startOffset": 3332, "endOffset": 3778, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "101", + "url": "node:internal/webidl", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 10395, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 914, "endOffset": 936, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 959, "endOffset": 1112, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "evenRound", + "ranges": [{ "startOffset": 1577, "endOffset": 1902, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pow2", + "ranges": [{ "startOffset": 1904, "endOffset": 2167, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "modulo", + "ranges": [{ "startOffset": 2279, "endOffset": 2393, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "convertToInt", + "ranges": [{ "startOffset": 2458, "endOffset": 5065, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "DOMString", + "ranges": [{ "startOffset": 5190, "endOffset": 5320, "count": 11 }], + "isBlockCoverage": false + }, + { + "functionName": "codedTypeError", + "ranges": [{ "startOffset": 5401, "endOffset": 5610, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "makeException", + "ranges": [{ "startOffset": 5612, "endOffset": 5931, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createEnumConverter", + "ranges": [{ "startOffset": 5933, "endOffset": 6294, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6021, "endOffset": 6291, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "type", + "ranges": [{ "startOffset": 6361, "endOffset": 7107, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createDictionaryConverter", + "ranges": [{ "startOffset": 7158, "endOffset": 8837, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 7465, "endOffset": 7564, "count": 5 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 7577, "endOffset": 8834, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createSequenceConverter", + "ranges": [{ "startOffset": 8886, "endOffset": 9722, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8941, "endOffset": 9719, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createInterfaceConverter", + "ranges": [{ "startOffset": 9772, "endOffset": 10195, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9826, "endOffset": 10192, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "102", + "url": "node:internal/process/per_thread", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 16578, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "hrtime", + "ranges": [{ "startOffset": 2069, "endOffset": 2571, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hrtimeBigInt", + "ranges": [{ "startOffset": 2573, "endOffset": 2654, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "nop", + "ranges": [{ "startOffset": 2656, "endOffset": 2673, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "wrapProcessMethods", + "ranges": [{ "startOffset": 2751, "endOffset": 11032, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "_rawDebug", + "ranges": [{ "startOffset": 3007, "endOffset": 3097, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cpuUsage", + "ranges": [{ "startOffset": 3308, "endOffset": 4460, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "threadCpuUsage", + "ranges": [{ "startOffset": 4602, "endOffset": 5925, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "previousValueIsValid", + "ranges": [{ "startOffset": 6078, "endOffset": 6215, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "memoryUsage", + "ranges": [{ "startOffset": 6260, "endOffset": 6487, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "exit", + "ranges": [{ "startOffset": 6517, "endOffset": 7513, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "kill", + "ranges": [{ "startOffset": 7517, "endOffset": 8161, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "execve", + "ranges": [{ "startOffset": 8165, "endOffset": 9671, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resourceUsage", + "ranges": [{ "startOffset": 9722, "endOffset": 10456, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "loadEnvFile", + "ranges": [{ "startOffset": 10568, "endOffset": 10879, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "buildAllowedFlags", + "ranges": [{ "startOffset": 11243, "endOffset": 15397, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toggleTraceCategoryState", + "ranges": [{ "startOffset": 15587, "endOffset": 15870, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "ref", + "ranges": [{ "startOffset": 15933, "endOffset": 16158, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "unref", + "ranges": [{ "startOffset": 16177, "endOffset": 16410, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "103", + "url": "node:diagnostics_channel", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 10481, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 845, "endOffset": 1125, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 888, "endOffset": 1124, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 1130, "endOffset": 1247, "count": 21 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1251, "endOffset": 1299, "count": 21 }], + "isBlockCoverage": false + }, + { + "functionName": "has", + "ranges": [{ "startOffset": 1303, "endOffset": 1345, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "incRef", + "ranges": [{ "startOffset": 1349, "endOffset": 1403, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "decRef", + "ranges": [{ "startOffset": 1407, "endOffset": 1461, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "markActive", + "ranges": [{ "startOffset": 1465, "endOffset": 1670, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "maybeMarkInactive", + "ranges": [{ "startOffset": 1672, "endOffset": 2040, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "defaultTransform", + "ranges": [{ "startOffset": 2042, "endOffset": 2092, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "wrapStoreRun", + "ranges": [{ "startOffset": 2094, "endOffset": 2422, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "subscribe", + "ranges": [{ "startOffset": 2504, "endOffset": 2738, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "unsubscribe", + "ranges": [{ "startOffset": 2742, "endOffset": 3189, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "bindStore", + "ranges": [{ "startOffset": 3193, "endOffset": 3361, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "unbindStore", + "ranges": [{ "startOffset": 3365, "endOffset": 3564, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get hasSubscribers", + "ranges": [{ "startOffset": 3568, "endOffset": 3611, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "publish", + "ranges": [{ "startOffset": 3615, "endOffset": 3955, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "runStores", + "ranges": [{ "startOffset": 3959, "endOffset": 4298, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Channel", + "ranges": [{ "startOffset": 4320, "endOffset": 4461, "count": 21 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4472, "endOffset": 4657, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "subscribe", + "ranges": [{ "startOffset": 4661, "endOffset": 4746, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "unsubscribe", + "ranges": [{ "startOffset": 4750, "endOffset": 4787, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "bindStore", + "ranges": [{ "startOffset": 4791, "endOffset": 4884, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "unbindStore", + "ranges": [{ "startOffset": 4888, "endOffset": 4925, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get hasSubscribers", + "ranges": [{ "startOffset": 4929, "endOffset": 4973, "count": 56 }], + "isBlockCoverage": false + }, + { + "functionName": "publish", + "ranges": [{ "startOffset": 4977, "endOffset": 4989, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "runStores", + "ranges": [{ "startOffset": 4993, "endOffset": 5080, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "channel", + "ranges": [{ "startOffset": 5120, "endOffset": 5386, "count": 21 }], + "isBlockCoverage": false + }, + { + "functionName": "subscribe", + "ranges": [{ "startOffset": 5388, "endOffset": 5478, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "unsubscribe", + "ranges": [{ "startOffset": 5480, "endOffset": 5574, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hasSubscribers", + "ranges": [{ "startOffset": 5576, "endOffset": 5711, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "assertChannel", + "ranges": [{ "startOffset": 5800, "endOffset": 5942, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "tracingChannelFrom", + "ranges": [{ "startOffset": 5944, "endOffset": 6469, "count": 10 }], + "isBlockCoverage": false + }, + { + "functionName": "TracingChannel", + "ranges": [{ "startOffset": 6496, "endOffset": 6769, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "get hasSubscribers", + "ranges": [{ "startOffset": 6773, "endOffset": 6988, "count": 11 }], + "isBlockCoverage": false + }, + { + "functionName": "subscribe", + "ranges": [{ "startOffset": 6992, "endOffset": 7192, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "unsubscribe", + "ranges": [{ "startOffset": 7196, "endOffset": 7477, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "traceSync", + "ranges": [{ "startOffset": 7481, "endOffset": 7992, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "tracePromise", + "ranges": [{ "startOffset": 7996, "endOffset": 9182, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "traceCallback", + "ranges": [{ "startOffset": 9186, "endOffset": 10279, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "tracingChannel", + "ranges": [{ "startOffset": 10283, "endOffset": 10371, "count": 2 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "104", + "url": "node:internal/process/task_queues", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 4795, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "hasTickScheduled", + "ranges": [{ "startOffset": 1115, "endOffset": 1190, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setHasTickScheduled", + "ranges": [{ "startOffset": 1192, "endOffset": 1278, "count": 16 }], + "isBlockCoverage": false + }, + { + "functionName": "runNextTicks", + "ranges": [{ "startOffset": 1380, "endOffset": 1576, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "processTicksAndRejections", + "ranges": [{ "startOffset": 1578, "endOffset": 2667, "count": 8 }], + "isBlockCoverage": false + }, + { + "functionName": "nextTick", + "ranges": [{ "startOffset": 2811, "endOffset": 3741, "count": 10 }], + "isBlockCoverage": false + }, + { + "functionName": "runMicrotask", + "ranges": [{ "startOffset": 3743, "endOffset": 3919, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "queueMicrotask", + "ranges": [{ "startOffset": 3991, "endOffset": 4491, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setupTaskQueue", + "ranges": [{ "startOffset": 4514, "endOffset": 4772, "count": 1 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "105", + "url": "node:internal/process/promises", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 13871, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1335, "endOffset": 1447, "count": 3 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1482, "endOffset": 1637, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1723, "endOffset": 1793, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "UnhandledPromiseRejection", + "ranges": [{ "startOffset": 1836, "endOffset": 2130, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2191, "endOffset": 2232, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "UnhandledPromiseRejectionWarning", + "ranges": [{ "startOffset": 2273, "endOffset": 3172, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3231, "endOffset": 3270, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "PromiseRejectionHandledWarning", + "ranges": [{ "startOffset": 3312, "endOffset": 3435, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setHasRejectionToWarn", + "ranges": [{ "startOffset": 4165, "endOffset": 4255, "count": 8 }], + "isBlockCoverage": false + }, + { + "functionName": "hasRejectionToWarn", + "ranges": [{ "startOffset": 4287, "endOffset": 4366, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isErrorLike", + "ranges": [{ "startOffset": 4432, "endOffset": 4576, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "promiseRejectHandler", + "ranges": [{ "startOffset": 4664, "endOffset": 5347, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5396, "endOffset": 5404, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolveErrorResolve", + "ranges": [{ "startOffset": 5537, "endOffset": 6034, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolveErrorReject", + "ranges": [{ "startOffset": 6097, "endOffset": 6398, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "emitUnhandledRejection", + "ranges": [{ "startOffset": 6525, "endOffset": 6712, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "unhandledRejection", + "ranges": [{ "startOffset": 6776, "endOffset": 7037, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "handledRejection", + "ranges": [{ "startOffset": 7075, "endOffset": 7656, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "emitUnhandledRejectionWarning", + "ranges": [{ "startOffset": 7776, "endOffset": 8387, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "strictUnhandledRejectionsMode", + "ranges": [{ "startOffset": 8991, "endOffset": 9604, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ignoreUnhandledRejectionsMode", + "ranges": [{ "startOffset": 9747, "endOffset": 9874, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "alwaysWarnUnhandledRejectionsMode", + "ranges": [{ "startOffset": 10034, "endOffset": 10211, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "throwUnhandledRejectionsMode", + "ranges": [{ "startOffset": 10446, "endOffset": 10881, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "warnWithErrorCodeUnhandledRejectionsMode", + "ranges": [{ "startOffset": 11107, "endOffset": 11373, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getUnhandledRejectionsMode", + "ranges": [{ "startOffset": 11428, "endOffset": 11979, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "processPromiseRejections", + "ranges": [{ "startOffset": 12152, "endOffset": 13663, "count": 8 }], + "isBlockCoverage": false + }, + { + "functionName": "listenForRejections", + "ranges": [{ "startOffset": 13665, "endOffset": 13749, "count": 1 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "106", + "url": "node:internal/fixed_queue", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 4486, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "FixedCircularBuffer", + "ranges": [{ "startOffset": 2981, "endOffset": 3126, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "isEmpty", + "ranges": [{ "startOffset": 3130, "endOffset": 3182, "count": 36 }], + "isBlockCoverage": false + }, + { + "functionName": "isFull", + "ranges": [{ "startOffset": 3186, "endOffset": 3253, "count": 10 }], + "isBlockCoverage": false + }, + { + "functionName": "push", + "ranges": [{ "startOffset": 3257, "endOffset": 3344, "count": 10 }], + "isBlockCoverage": false + }, + { + "functionName": "shift", + "ranges": [{ "startOffset": 3348, "endOffset": 3563, "count": 18 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3605, "endOffset": 3622, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "FixedQueue", + "ranges": [{ "startOffset": 3627, "endOffset": 3727, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "isEmpty", + "ranges": [{ "startOffset": 3731, "endOffset": 3778, "count": 18 }], + "isBlockCoverage": false + }, + { + "functionName": "push", + "ranges": [{ "startOffset": 3782, "endOffset": 4072, "count": 10 }], + "isBlockCoverage": false + }, + { + "functionName": "shift", + "ranges": [{ "startOffset": 4076, "endOffset": 4482, "count": 18 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "107", + "url": "node:async_hooks", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 9057, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "AsyncHook", + "ranges": [{ "startOffset": 1659, "endOffset": 3045, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "enable", + "ranges": [{ "startOffset": 3049, "endOffset": 4335, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "disable", + "ranges": [{ "startOffset": 4339, "endOffset": 5123, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createHook", + "ranges": [{ "startOffset": 5128, "endOffset": 5185, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "AsyncResource", + "ranges": [{ "startOffset": 5330, "endOffset": 6588, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "runInAsyncScope", + "ranges": [{ "startOffset": 6592, "endOffset": 7023, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "emitDestroy", + "ranges": [{ "startOffset": 7027, "endOffset": 7202, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "asyncId", + "ranges": [{ "startOffset": 7206, "endOffset": 7255, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "triggerAsyncId", + "ranges": [{ "startOffset": 7259, "endOffset": 7323, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "bind", + "ranges": [{ "startOffset": 7327, "endOffset": 8391, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "bind", + "ranges": [{ "startOffset": 8402, "endOffset": 8533, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get AsyncLocalStorage", + "ranges": [{ "startOffset": 8663, "endOffset": 8858, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "108", + "url": "node:timers", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 7045, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1806, "endOffset": 1831, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "unenroll", + "ranges": [{ "startOffset": 2106, "endOffset": 3159, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setTimeout", + "ranges": [{ "startOffset": 3358, "endOffset": 3601, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3696, "endOffset": 3796, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "clearTimeout", + "ranges": [{ "startOffset": 3896, "endOffset": 4254, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setInterval", + "ranges": [{ "startOffset": 4448, "endOffset": 4693, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "clearInterval", + "ranges": [{ "startOffset": 4790, "endOffset": 5088, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5116, "endOffset": 5167, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5205, "endOffset": 5241, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5351, "endOffset": 5512, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setImmediate", + "ranges": [{ "startOffset": 5686, "endOffset": 5838, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 5935, "endOffset": 6037, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "clearImmediate", + "ranges": [{ "startOffset": 6128, "endOffset": 6613, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6652, "endOffset": 6690, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 6939, "endOffset": 7034, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "109", + "url": "node:internal/process/execution", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 17264, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "tryGetCwd", + "ranges": [{ "startOffset": 1182, "endOffset": 1512, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "getEvalModuleUrl", + "ranges": [{ "startOffset": 1533, "endOffset": 1629, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "evalModuleEntryPoint", + "ranges": [{ "startOffset": 1878, "endOffset": 2222, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "evalScript", + "ranges": [{ "startOffset": 2224, "endOffset": 3264, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setUncaughtExceptionCaptureCallback", + "ranges": [{ "startOffset": 3342, "endOffset": 4036, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hasUncaughtExceptionCaptureCallback", + "ranges": [{ "startOffset": 4038, "endOffset": 4139, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "noop", + "ranges": [{ "startOffset": 4141, "endOffset": 4159, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createOnGlobalUncaughtException", + "ranges": [{ "startOffset": 4702, "endOffset": 6525, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4971, "endOffset": 6522, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readStdin", + "ranges": [{ "startOffset": 6527, "endOffset": 6732, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "decorateCJSErrorWithTSMessage", + "ranges": [{ "startOffset": 6985, "endOffset": 7310, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "evalTypeScript", + "ranges": [{ "startOffset": 8166, "endOffset": 10303, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "evalTypeScriptModuleEntryPoint", + "ranges": [{ "startOffset": 10712, "endOffset": 12265, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseAndEvalModuleTypeScript", + "ranges": [{ "startOffset": 12406, "endOffset": 12663, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseAndEvalCommonjsTypeScript", + "ranges": [{ "startOffset": 13075, "endOffset": 13406, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "compileScript", + "ranges": [{ "startOffset": 13653, "endOffset": 14540, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "shouldUseModuleEntryPoint", + "ranges": [{ "startOffset": 14740, "endOffset": 14958, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createModule", + "ranges": [{ "startOffset": 15107, "endOffset": 15379, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "runScriptInContext", + "ranges": [{ "startOffset": 15892, "endOffset": 16950, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "110", + "url": "node:path", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 52691, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1961, "endOffset": 2011, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isPathSeparator", + "ranges": [{ "startOffset": 2015, "endOffset": 2119, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isPosixPathSeparator", + "ranges": [{ "startOffset": 2121, "endOffset": 2198, "count": 544 }], + "isBlockCoverage": false + }, + { + "functionName": "isWindowsReservedName", + "ranges": [{ "startOffset": 2485, "endOffset": 2698, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isWindowsDeviceRoot", + "ranges": [{ "startOffset": 2700, "endOffset": 2870, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "normalizeString", + "ranges": [{ "startOffset": 2933, "endOffset": 4873, "count": 10 }], + "isBlockCoverage": false + }, + { + "functionName": "formatExt", + "ranges": [{ "startOffset": 4875, "endOffset": 4960, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_format", + "ranges": [{ "startOffset": 5138, "endOffset": 5473, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolve", + "ranges": [{ "startOffset": 5626, "endOffset": 11032, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "normalize", + "ranges": [{ "startOffset": 11098, "endOffset": 16039, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isAbsolute", + "ranges": [{ "startOffset": 16106, "endOffset": 16522, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "join", + "ranges": [{ "startOffset": 16591, "endOffset": 19629, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "relative", + "ranges": [{ "startOffset": 19925, "endOffset": 24828, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toNamespacedPath", + "ranges": [{ "startOffset": 24894, "endOffset": 26004, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "dirname", + "ranges": [{ "startOffset": 26070, "endOffset": 28616, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "basename", + "ranges": [{ "startOffset": 28712, "endOffset": 31489, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "extname", + "ranges": [{ "startOffset": 31555, "endOffset": 33628, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parse", + "ranges": [{ "startOffset": 33850, "endOffset": 38606, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "matchesGlob", + "ranges": [{ "startOffset": 38611, "endOffset": 38699, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 38785, "endOffset": 39222, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 38966, "endOffset": 39123, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 39200, "endOffset": 39219, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolve", + "ranges": [{ "startOffset": 39344, "endOffset": 40673, "count": 17 }], + "isBlockCoverage": false + }, + { + "functionName": "normalize", + "ranges": [{ "startOffset": 40739, "endOffset": 41352, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isAbsolute", + "ranges": [{ "startOffset": 41419, "endOffset": 41575, "count": 3 }], + "isBlockCoverage": false + }, + { + "functionName": "join", + "ranges": [{ "startOffset": 41644, "endOffset": 42008, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "relative", + "ranges": [{ "startOffset": 42098, "endOffset": 44458, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toNamespacedPath", + "ranges": [{ "startOffset": 44524, "endOffset": 44600, "count": 10 }], + "isBlockCoverage": false + }, + { + "functionName": "dirname", + "ranges": [{ "startOffset": 44666, "endOffset": 45342, "count": 3 }], + "isBlockCoverage": false + }, + { + "functionName": "basename", + "ranges": [{ "startOffset": 45438, "endOffset": 47868, "count": 3 }], + "isBlockCoverage": false + }, + { + "functionName": "extname", + "ranges": [{ "startOffset": 47934, "endOffset": 49577, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parse", + "ranges": [{ "startOffset": 49804, "endOffset": 52276, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "matchesGlob", + "ranges": [{ "startOffset": 52281, "endOffset": 52370, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "111", + "url": "node:internal/url", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 52846, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "lazyBlob", + "ranges": [{ "startOffset": 3122, "endOffset": 3197, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lazyCryptoRandom", + "ranges": [{ "startOffset": 3199, "endOffset": 3433, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3943, "endOffset": 3971, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3976, "endOffset": 4379, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get hasPort", + "ranges": [{ "startOffset": 4384, "endOffset": 4449, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get hasSearch", + "ranges": [{ "startOffset": 4453, "endOffset": 4528, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get hasHash", + "ranges": [{ "startOffset": 4532, "endOffset": 4603, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4757, "endOffset": 4783, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "URLSearchParamsIterator", + "ranges": [{ "startOffset": 4854, "endOffset": 4956, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "next", + "ranges": [{ "startOffset": 4960, "endOffset": 5668, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5672, "endOffset": 6912, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 7333, "endOffset": 7393, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 7398, "endOffset": 7734, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "setURLSearchParamsContext", + "ranges": [{ "startOffset": 7439, "endOffset": 7486, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getURLSearchParamsList", + "ranges": [{ "startOffset": 7517, "endOffset": 7543, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setURLSearchParams", + "ranges": [{ "startOffset": 7570, "endOffset": 7729, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "URLSearchParams", + "ranges": [{ "startOffset": 7998, "endOffset": 12135, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 12139, "endOffset": 13307, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get size", + "ranges": [{ "startOffset": 13311, "endOffset": 13501, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "append", + "ranges": [{ "startOffset": 13505, "endOffset": 13995, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "delete", + "ranges": [{ "startOffset": 13999, "endOffset": 14862, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 14866, "endOffset": 15319, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getAll", + "ranges": [{ "startOffset": 15323, "endOffset": 15810, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "has", + "ranges": [{ "startOffset": 15814, "endOffset": 16447, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 16451, "endOffset": 17579, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "sort", + "ranges": [{ "startOffset": 17583, "endOffset": 18940, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "entries", + "ranges": [{ "startOffset": 19102, "endOffset": 19309, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "forEach", + "ranges": [{ "startOffset": 19313, "endOffset": 19831, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "keys", + "ranges": [{ "startOffset": 19885, "endOffset": 20083, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "values", + "ranges": [{ "startOffset": 20087, "endOffset": 20289, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toString", + "ranges": [{ "startOffset": 20421, "endOffset": 20618, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isURL", + "ranges": [{ "startOffset": 21951, "endOffset": 22076, "count": 5 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 22567, "endOffset": 22636, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 22641, "endOffset": 23176, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "setURLSearchParamsModified", + "ranges": [{ "startOffset": 22683, "endOffset": 23171, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "URL", + "ranges": [{ "startOffset": 23180, "endOffset": 24085, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parse", + "ranges": [{ "startOffset": 24096, "endOffset": 24338, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 24342, "endOffset": 25062, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#getSearchFromContext", + "ranges": [{ "startOffset": 25066, "endOffset": 25400, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#getSearchFromParams", + "ranges": [{ "startOffset": 25404, "endOffset": 25515, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#ensureSearchParamsUpdated", + "ranges": [{ "startOffset": 25519, "endOffset": 25958, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#updateContext", + "ranges": [{ "startOffset": 26206, "endOffset": 27851, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toString", + "ranges": [{ "startOffset": 27855, "endOffset": 28040, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get href", + "ranges": [{ "startOffset": 28044, "endOffset": 28229, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set href", + "ranges": [{ "startOffset": 28233, "endOffset": 28452, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get origin", + "ranges": [{ "startOffset": 28470, "endOffset": 29339, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get protocol", + "ranges": [{ "startOffset": 29343, "endOffset": 29447, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set protocol", + "ranges": [{ "startOffset": 29451, "endOffset": 29624, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get username", + "ranges": [{ "startOffset": 29628, "endOffset": 29855, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set username", + "ranges": [{ "startOffset": 29859, "endOffset": 30032, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get password", + "ranges": [{ "startOffset": 30036, "endOffset": 30259, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set password", + "ranges": [{ "startOffset": 30263, "endOffset": 30436, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get host", + "ranges": [{ "startOffset": 30440, "endOffset": 30871, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set host", + "ranges": [{ "startOffset": 30875, "endOffset": 31040, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get hostname", + "ranges": [{ "startOffset": 31044, "endOffset": 31326, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set hostname", + "ranges": [{ "startOffset": 31330, "endOffset": 31503, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get port", + "ranges": [{ "startOffset": 31507, "endOffset": 31615, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set port", + "ranges": [{ "startOffset": 31619, "endOffset": 31784, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get pathname", + "ranges": [{ "startOffset": 31788, "endOffset": 32080, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set pathname", + "ranges": [{ "startOffset": 32084, "endOffset": 32257, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get search", + "ranges": [{ "startOffset": 32261, "endOffset": 32458, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set search", + "ranges": [{ "startOffset": 32462, "endOffset": 32666, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get searchParams", + "ranges": [{ "startOffset": 32684, "endOffset": 33042, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get hash", + "ranges": [{ "startOffset": 33046, "endOffset": 33261, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set hash", + "ranges": [{ "startOffset": 33265, "endOffset": 33430, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toJSON", + "ranges": [{ "startOffset": 33434, "endOffset": 33617, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "canParse", + "ranges": [{ "startOffset": 33628, "endOffset": 34025, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "installObjectURLMethods", + "ranges": [{ "startOffset": 34840, "endOffset": 35861, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "createObjectURL", + "ranges": [{ "startOffset": 34927, "endOffset": 35346, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "revokeObjectURL", + "ranges": [{ "startOffset": 35350, "endOffset": 35510, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseParams", + "ranges": [{ "startOffset": 35970, "endOffset": 38318, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "serializeParams", + "ranges": [{ "startOffset": 39298, "endOffset": 39858, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "merge", + "ranges": [{ "startOffset": 39878, "endOffset": 40508, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "domainToASCII", + "ranges": [{ "startOffset": 40510, "endOffset": 40711, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "domainToUnicode", + "ranges": [{ "startOffset": 40713, "endOffset": 40918, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "urlToHttpOptions", + "ranges": [{ "startOffset": 41128, "endOffset": 41867, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getPathFromURLWin32", + "ranges": [{ "startOffset": 41869, "endOffset": 43505, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getPathBufferFromURLWin32", + "ranges": [{ "startOffset": 43507, "endOffset": 47291, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getPathFromURLPosix", + "ranges": [{ "startOffset": 47293, "endOffset": 47956, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getPathBufferFromURLPosix", + "ranges": [{ "startOffset": 47958, "endOffset": 49098, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fileURLToPath", + "ranges": [{ "startOffset": 49100, "endOffset": 49512, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fileURLToPathBuffer", + "ranges": [{ "startOffset": 49778, "endOffset": 50224, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pathToFileURL", + "ranges": [{ "startOffset": 50226, "endOffset": 52077, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toPathIfFileURL", + "ranges": [{ "startOffset": 52079, "endOffset": 52216, "count": 5 }], + "isBlockCoverage": false + }, + { + "functionName": "getURLOrigin", + "ranges": [{ "startOffset": 52403, "endOffset": 52469, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "112", + "url": "node:internal/querystring", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3316, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "encodeStr", + "ranges": [{ "startOffset": 1534, "endOffset": 3253, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "113", + "url": "node:internal/data_url", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 10461, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "lazyEncoder", + "ranges": [{ "startOffset": 389, "endOffset": 560, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "dataURLProcessor", + "ranges": [{ "startOffset": 777, "endOffset": 3880, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "URLSerializer", + "ranges": [{ "startOffset": 4022, "endOffset": 4426, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "collectASequenceOfCodePointsFast", + "ranges": [{ "startOffset": 4640, "endOffset": 5015, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stringPercentDecode", + "ranges": [{ "startOffset": 5129, "endOffset": 5341, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isHexCharByte", + "ranges": [{ "startOffset": 5397, "endOffset": 5555, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hexByteToNumber", + "ranges": [{ "startOffset": 5610, "endOffset": 5814, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "percentDecode", + "ranges": [{ "startOffset": 5925, "endOffset": 7201, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "forgivingBase64", + "ranges": [{ "startOffset": 7324, "endOffset": 8458, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isASCIIWhitespace", + "ranges": [{ "startOffset": 8570, "endOffset": 8720, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "removeASCIIWhitespace", + "ranges": [{ "startOffset": 8918, "endOffset": 9055, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "removeChars", + "ranges": [{ "startOffset": 9218, "endOffset": 9641, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isomorphicDecode", + "ranges": [{ "startOffset": 9758, "endOffset": 10400, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "114", + "url": "node:internal/mime", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 11377, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "toASCIILower", + "ranges": [{ "startOffset": 587, "endOffset": 940, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseTypeAndSubtype", + "ranges": [{ "startOffset": 987, "endOffset": 2606, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "removeBackslashes", + "ranges": [{ "startOffset": 2723, "endOffset": 3138, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "escapeQuoteOrSolidus", + "ranges": [{ "startOffset": 3141, "endOffset": 3353, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "encode", + "ranges": [{ "startOffset": 3370, "endOffset": 3609, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3633, "endOffset": 3826, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "instantiateMimeParams", + "ranges": [{ "startOffset": 3990, "endOffset": 4143, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "delete", + "ranges": [{ "startOffset": 4206, "endOffset": 4272, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 4276, "endOffset": 4417, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "has", + "ranges": [{ "startOffset": 4421, "endOffset": 4488, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 4492, "endOffset": 5175, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "entries", + "ranges": [{ "startOffset": 5179, "endOffset": 5247, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "keys", + "ranges": [{ "startOffset": 5251, "endOffset": 5313, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "values", + "ranges": [{ "startOffset": 5317, "endOffset": 5383, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toString", + "ranges": [{ "startOffset": 5387, "endOffset": 5655, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#parse", + "ranges": [{ "startOffset": 5785, "endOffset": 9401, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9882, "endOffset": 9914, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "MIMEType", + "ranges": [{ "startOffset": 9918, "endOffset": 10155, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get type", + "ranges": [{ "startOffset": 10159, "endOffset": 10198, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set type", + "ranges": [{ "startOffset": 10202, "endOffset": 10484, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get subtype", + "ranges": [{ "startOffset": 10488, "endOffset": 10533, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set subtype", + "ranges": [{ "startOffset": 10537, "endOffset": 10837, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get essence", + "ranges": [{ "startOffset": 10841, "endOffset": 10905, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get params", + "ranges": [{ "startOffset": 10909, "endOffset": 10956, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toString", + "ranges": [{ "startOffset": 10960, "endOffset": 11171, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "115", + "url": "node:querystring", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 14576, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "unescapeBuffer", + "ranges": [{ "startOffset": 3146, "endOffset": 4315, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "qsUnescape", + "ranges": [{ "startOffset": 4400, "endOffset": 4565, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "qsEscape", + "ranges": [{ "startOffset": 5418, "endOffset": 5611, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stringifyPrimitive", + "ranges": [{ "startOffset": 5719, "endOffset": 5989, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "encodeStringified", + "ranges": [{ "startOffset": 6110, "endOffset": 6599, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "encodeStringifiedCustom", + "ranges": [{ "startOffset": 6718, "endOffset": 6805, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stringify", + "ranges": [{ "startOffset": 7065, "endOffset": 8122, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "charCodes", + "ranges": [{ "startOffset": 8178, "endOffset": 8446, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addKeyVal", + "ranges": [{ "startOffset": 8509, "endOffset": 9132, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parse", + "ranges": [{ "startOffset": 9385, "endOffset": 14177, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "decodeStr", + "ranges": [{ "startOffset": 14452, "endOffset": 14575, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "116", + "url": "node:internal/modules/typescript", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 8122, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 995, "endOffset": 1132, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1318, "endOffset": 1438, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseTypeScript", + "ranges": [{ "startOffset": 1620, "endOffset": 2723, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "decorateErrorWithSnippet", + "ranges": [{ "startOffset": 2946, "endOffset": 3161, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stripTypeScriptTypes", + "ranges": [{ "startOffset": 3401, "endOffset": 4252, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "processTypeScriptCode", + "ranges": [{ "startOffset": 4780, "endOffset": 5095, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getCachedCodeType", + "ranges": [{ "startOffset": 5289, "endOffset": 5503, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stripTypeScriptModuleTypes", + "ranges": [{ "startOffset": 5786, "endOffset": 7442, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addSourceMap", + "ranges": [{ "startOffset": 7603, "endOffset": 8044, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "117", + "url": "node:internal/vm", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 8860, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "isContext", + "ranges": [{ "startOffset": 1081, "endOffset": 1177, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getHostDefinedOptionId", + "ranges": [{ "startOffset": 1569, "endOffset": 2893, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "registerImportModuleDynamically", + "ranges": [{ "startOffset": 3164, "endOffset": 3851, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "internalCompileFunction", + "ranges": [{ "startOffset": 5214, "endOffset": 6044, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "makeContextifyScript", + "ranges": [{ "startOffset": 6766, "endOffset": 7942, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "runScriptInThisContext", + "ranges": [{ "startOffset": 8319, "endOffset": 8685, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "118", + "url": "node:internal/process/warning", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 5861, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "resetForSerialization", + "ranges": [{ "startOffset": 506, "endOffset": 703, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lazyOption", + "ranges": [{ "startOffset": 705, "endOffset": 1100, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writeOut", + "ranges": [{ "startOffset": 1201, "endOffset": 1303, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "closeFdOnExit", + "ranges": [{ "startOffset": 1305, "endOffset": 1416, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writeToFile", + "ranges": [{ "startOffset": 1418, "endOffset": 1747, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "doEmitWarning", + "ranges": [{ "startOffset": 1749, "endOffset": 1820, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "onWarning", + "ranges": [{ "startOffset": 1846, "endOffset": 3392, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "emitWarning", + "ranges": [{ "startOffset": 3515, "endOffset": 4888, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "emitWarningSync", + "ranges": [{ "startOffset": 4890, "endOffset": 5020, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createWarningObject", + "ranges": [{ "startOffset": 5022, "endOffset": 5765, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "119", + "url": "node:internal/source_map/source_map_cache", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 15946, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 435, "endOffset": 460, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 885, "endOffset": 1013, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getSourceMapsSupport", + "ranges": [{ "startOffset": 1883, "endOffset": 1978, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setSourceMapsSupport", + "ranges": [{ "startOffset": 2182, "endOffset": 2951, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "extractSourceURLMagicComment", + "ranges": [{ "startOffset": 3269, "endOffset": 3869, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "extractSourceMapURLMagicComment", + "ranges": [{ "startOffset": 4182, "endOffset": 4625, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "maybeCacheSourceMap", + "ranges": [{ "startOffset": 5496, "endOffset": 7016, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "maybeCacheGeneratedSourceMap", + "ranges": [{ "startOffset": 7142, "endOffset": 7916, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "dataFromUrl", + "ranges": [{ "startOffset": 8316, "endOffset": 8737, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lineLengths", + "ranges": [{ "startOffset": 8927, "endOffset": 9723, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "sourceMapFromFile", + "ranges": [{ "startOffset": 9875, "endOffset": 10122, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "sourceMapFromDataUrl", + "ranges": [{ "startOffset": 10216, "endOffset": 10994, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "sourcesToAbsolute", + "ranges": [{ "startOffset": 11266, "endOffset": 11670, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "sourceMapCacheToObject", + "ranges": [{ "startOffset": 12087, "endOffset": 12484, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "findSourceMap", + "ranges": [{ "startOffset": 12832, "endOffset": 13860, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getOriginalSource", + "ranges": [{ "startOffset": 14192, "endOffset": 15089, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getSourceLine", + "ranges": [{ "startOffset": 15409, "endOffset": 15759, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "120", + "url": "node:fs", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 88259, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "lazyLoadUtf8Stream", + "ranges": [{ "startOffset": 4202, "endOffset": 4298, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "makeCallback", + "ranges": [{ "startOffset": 4501, "endOffset": 4613, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "makeStatsCallback", + "ranges": [{ "startOffset": 4794, "endOffset": 4961, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isFileType", + "ranges": [{ "startOffset": 4986, "endOffset": 5246, "count": 33 }], + "isBlockCoverage": false + }, + { + "functionName": "access", + "ranges": [{ "startOffset": 5462, "endOffset": 5752, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "accessSync", + "ranges": [{ "startOffset": 5940, "endOffset": 6023, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "exists", + "ranges": [{ "startOffset": 6185, "endOffset": 6418, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "exists", + "ranges": [{ "startOffset": 6505, "endOffset": 6637, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "existsSync", + "ranges": [{ "startOffset": 6808, "endOffset": 7214, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readFileAfterOpen", + "ranges": [{ "startOffset": 7216, "endOffset": 7496, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readFileAfterStat", + "ranges": [{ "startOffset": 7498, "endOffset": 8376, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "checkAborted", + "ranges": [{ "startOffset": 8378, "endOffset": 8550, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readFile", + "ranges": [{ "startOffset": 8883, "endOffset": 9759, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "tryStatSync", + "ranges": [{ "startOffset": 9761, "endOffset": 9963, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "tryCreateBuffer", + "ranges": [{ "startOffset": 9965, "endOffset": 10276, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "tryReadSync", + "ranges": [{ "startOffset": 10278, "endOffset": 10533, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readFileSync", + "ranges": [{ "startOffset": 10757, "endOffset": 12367, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "defaultCloseCallback", + "ranges": [{ "startOffset": 12369, "endOffset": 12437, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "close", + "ranges": [{ "startOffset": 12563, "endOffset": 12789, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "closeSync", + "ranges": [{ "startOffset": 12885, "endOffset": 12932, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "open", + "ranges": [{ "startOffset": 13175, "endOffset": 13678, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "openSync", + "ranges": [{ "startOffset": 13850, "endOffset": 14012, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "openAsBlob", + "ranges": [{ "startOffset": 14141, "endOffset": 14594, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "read", + "ranges": [{ "startOffset": 15055, "endOffset": 17058, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readSync", + "ranges": [{ "startOffset": 17579, "endOffset": 18604, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readv", + "ranges": [{ "startOffset": 18946, "endOffset": 19367, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readvSync", + "ranges": [{ "startOffset": 19769, "endOffset": 19958, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "write", + "ranges": [{ "startOffset": 20365, "endOffset": 21943, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writeSync", + "ranges": [{ "startOffset": 22458, "endOffset": 23564, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writev", + "ranges": [{ "startOffset": 23891, "endOffset": 24417, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writevSync", + "ranges": [{ "startOffset": 24785, "endOffset": 25025, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "rename", + "ranges": [{ "startOffset": 25266, "endOffset": 25530, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "renameSync", + "ranges": [{ "startOffset": 25729, "endOffset": 25877, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "truncate", + "ranges": [{ "startOffset": 26035, "endOffset": 26579, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "truncateSync", + "ranges": [{ "startOffset": 26709, "endOffset": 26957, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ftruncate", + "ranges": [{ "startOffset": 27109, "endOffset": 27419, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ftruncateSync", + "ranges": [{ "startOffset": 27543, "endOffset": 27657, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lazyLoadCp", + "ranges": [{ "startOffset": 27659, "endOffset": 27865, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lazyLoadRimraf", + "ranges": [{ "startOffset": 27867, "endOffset": 27974, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "rmdir", + "ranges": [{ "startOffset": 28152, "endOffset": 28989, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "rmdirSync", + "ranges": [{ "startOffset": 29124, "endOffset": 29538, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "rm", + "ranges": [{ "startOffset": 29876, "endOffset": 30225, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "rmSync", + "ranges": [{ "startOffset": 30520, "endOffset": 30713, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fdatasync", + "ranges": [{ "startOffset": 30944, "endOffset": 31237, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fdatasyncSync", + "ranges": [{ "startOffset": 31440, "endOffset": 31627, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fsync", + "ranges": [{ "startOffset": 31814, "endOffset": 32094, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fsyncSync", + "ranges": [{ "startOffset": 32253, "endOffset": 32428, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mkdir", + "ranges": [{ "startOffset": 32672, "endOffset": 33398, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mkdirSync", + "ranges": [{ "startOffset": 33608, "endOffset": 34206, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readdirRecursive", + "ranges": [{ "startOffset": 34619, "endOffset": 35542, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "processReaddirResult", + "ranges": [{ "startOffset": 35848, "endOffset": 35932, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "handleDirents", + "ranges": [{ "startOffset": 35935, "endOffset": 36546, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "handleFilePaths", + "ranges": [{ "startOffset": 36548, "endOffset": 37016, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readdirSyncRecursive", + "ranges": [{ "startOffset": 37349, "endOffset": 38012, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readdir", + "ranges": [{ "startOffset": 38335, "endOffset": 39189, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readdirSync", + "ranges": [{ "startOffset": 39453, "endOffset": 39932, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fstat", + "ranges": [{ "startOffset": 40175, "endOffset": 40494, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lstat", + "ranges": [{ "startOffset": 40760, "endOffset": 41380, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stat", + "ranges": [{ "startOffset": 41610, "endOffset": 41949, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "statfs", + "ranges": [{ "startOffset": 41951, "endOffset": 42413, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fstatSync", + "ranges": [{ "startOffset": 42591, "endOffset": 42797, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lstatSync", + "ranges": [{ "startOffset": 43057, "endOffset": 43609, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "statSync", + "ranges": [{ "startOffset": 43824, "endOffset": 44120, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "statfsSync", + "ranges": [{ "startOffset": 44122, "endOffset": 44290, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readlink", + "ranges": [{ "startOffset": 44568, "endOffset": 44857, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readlinkSync", + "ranges": [{ "startOffset": 45071, "endOffset": 45213, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "symlink", + "ranges": [{ "startOffset": 45453, "endOffset": 47534, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "symlinkSync", + "ranges": [{ "startOffset": 47749, "endOffset": 48679, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "link", + "ranges": [{ "startOffset": 48906, "endOffset": 49219, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "linkSync", + "ranges": [{ "startOffset": 49418, "endOffset": 49630, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "unlink", + "ranges": [{ "startOffset": 49791, "endOffset": 49974, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "unlinkSync", + "ranges": [{ "startOffset": 50092, "endOffset": 50163, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fchmod", + "ranges": [{ "startOffset": 50326, "endOffset": 50684, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fchmodSync", + "ranges": [{ "startOffset": 50819, "endOffset": 51045, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lchmod", + "ranges": [{ "startOffset": 51226, "endOffset": 51717, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lchmodSync", + "ranges": [{ "startOffset": 51870, "endOffset": 52161, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "chmod", + "ranges": [{ "startOffset": 52357, "endOffset": 52604, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "chmodSync", + "ranges": [{ "startOffset": 52757, "endOffset": 52892, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lchown", + "ranges": [{ "startOffset": 53088, "endOffset": 53400, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lchownSync", + "ranges": [{ "startOffset": 53568, "endOffset": 53768, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fchown", + "ranges": [{ "startOffset": 53938, "endOffset": 54359, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fchownSync", + "ranges": [{ "startOffset": 54501, "endOffset": 54794, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "chown", + "ranges": [{ "startOffset": 55010, "endOffset": 55321, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "chownSync", + "ranges": [{ "startOffset": 55494, "endOffset": 55692, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "utimes", + "ranges": [{ "startOffset": 55961, "endOffset": 56243, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "utimesSync", + "ranges": [{ "startOffset": 56484, "endOffset": 56634, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "futimes", + "ranges": [{ "startOffset": 56915, "endOffset": 57340, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "futimesSync", + "ranges": [{ "startOffset": 57596, "endOffset": 57875, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lutimes", + "ranges": [{ "startOffset": 58159, "endOffset": 58443, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lutimesSync", + "ranges": [{ "startOffset": 58703, "endOffset": 58855, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writeAll", + "ranges": [{ "startOffset": 58857, "endOffset": 60299, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writeFile", + "ranges": [{ "startOffset": 60678, "endOffset": 61686, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writeFileSync", + "ranges": [{ "startOffset": 61995, "endOffset": 63232, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "appendFile", + "ranges": [{ "startOffset": 63559, "endOffset": 64010, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "appendFileSync", + "ranges": [{ "startOffset": 64272, "endOffset": 64651, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "watch", + "ranges": [{ "startOffset": 65019, "endOffset": 66821, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "watchFile", + "ranges": [{ "startOffset": 67171, "endOffset": 68195, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "unwatchFile", + "ranges": [{ "startOffset": 68345, "endOffset": 69084, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "splitRoot", + "ranges": [{ "startOffset": 69300, "endOffset": 69396, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "splitRoot", + "ranges": [{ "startOffset": 69421, "endOffset": 69631, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "encodeRealpathResult", + "ranges": [{ "startOffset": 69636, "endOffset": 69923, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "nextPart", + "ranges": [{ "startOffset": 70046, "endOffset": 70305, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "nextPart", + "ranges": [{ "startOffset": 70329, "endOffset": 70404, "count": 25 }], + "isBlockCoverage": false + }, + { + "functionName": "realpathSync", + "ranges": [{ "startOffset": 70578, "endOffset": 74269, "count": 3 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 74458, "endOffset": 74595, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "realpath", + "ranges": [{ "startOffset": 74902, "endOffset": 78462, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 78789, "endOffset": 79048, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mkdtemp", + "ranges": [{ "startOffset": 79293, "endOffset": 79652, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mkdtempSync", + "ranges": [{ "startOffset": 79833, "endOffset": 80044, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mkdtempDisposableSync", + "ranges": [{ "startOffset": 80377, "endOffset": 80927, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "copyFile", + "ranges": [{ "startOffset": 81202, "endOffset": 81549, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "copyFileSync", + "ranges": [{ "startOffset": 81781, "endOffset": 81928, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cp", + "ranges": [{ "startOffset": 82232, "endOffset": 82579, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cpSync", + "ranges": [{ "startOffset": 82840, "endOffset": 83046, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lazyLoadStreams", + "ranges": [{ "startOffset": 83048, "endOffset": 83239, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createReadStream", + "ranges": [{ "startOffset": 83702, "endOffset": 83807, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createWriteStream", + "ranges": [{ "startOffset": 84227, "endOffset": 84334, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 84361, "endOffset": 84399, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "glob", + "ranges": [{ "startOffset": 84403, "endOffset": 84737, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "globSync", + "ranges": [{ "startOffset": 84739, "endOffset": 84853, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get ReadStream", + "ranges": [{ "startOffset": 86143, "endOffset": 86211, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set ReadStream", + "ranges": [{ "startOffset": 86216, "endOffset": 86263, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get WriteStream", + "ranges": [{ "startOffset": 86268, "endOffset": 86338, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set WriteStream", + "ranges": [{ "startOffset": 86343, "endOffset": 86392, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get FileReadStream", + "ranges": [{ "startOffset": 86530, "endOffset": 86606, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set FileReadStream", + "ranges": [{ "startOffset": 86611, "endOffset": 86666, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get FileWriteStream", + "ranges": [{ "startOffset": 86671, "endOffset": 86749, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set FileWriteStream", + "ranges": [{ "startOffset": 86754, "endOffset": 86811, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get Utf8Stream", + "ranges": [{ "startOffset": 86816, "endOffset": 86887, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 87145, "endOffset": 87195, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 87368, "endOffset": 87418, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 87591, "endOffset": 87641, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 87814, "endOffset": 87864, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 88152, "endOffset": 88248, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "121", + "url": "node:internal/blob", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 13538, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "lazyReadableStream", + "ranges": [{ "startOffset": 1933, "endOffset": 2145, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isBlob", + "ranges": [{ "startOffset": 2195, "endOffset": 2264, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getSource", + "ranges": [{ "startOffset": 2266, "endOffset": 2945, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Blob", + "ranges": [{ "startOffset": 3195, "endOffset": 4261, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4265, "endOffset": 4535, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4539, "endOffset": 4985, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4989, "endOffset": 5115, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get type", + "ranges": [{ "startOffset": 5166, "endOffset": 5271, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get size", + "ranges": [{ "startOffset": 5322, "endOffset": 5429, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "slice", + "ranges": [{ "startOffset": 5557, "endOffset": 6489, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "arrayBuffer", + "ranges": [{ "startOffset": 6542, "endOffset": 6673, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "text", + "ranges": [{ "startOffset": 6721, "endOffset": 6944, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "bytes", + "ranges": [{ "startOffset": 6996, "endOffset": 7192, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stream", + "ranges": [{ "startOffset": 7239, "endOffset": 7380, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "TransferableBlob", + "ranges": [{ "startOffset": 7384, "endOffset": 7599, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createBlob", + "ranges": [{ "startOffset": 7714, "endOffset": 7987, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolveObjectURL", + "ranges": [{ "startOffset": 8370, "endOffset": 8984, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createBlobFromFilePath", + "ranges": [{ "startOffset": 9107, "endOffset": 9466, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "arrayBuffer", + "ranges": [{ "startOffset": 9468, "endOffset": 10355, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createBlobReaderStream", + "ranges": [{ "startOffset": 10357, "endOffset": 13379, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "122", + "url": "node:internal/encoding", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 18147, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "validateEncoder", + "ranges": [{ "startOffset": 1595, "endOffset": 1720, "count": 59 }], + "isBlockCoverage": false + }, + { + "functionName": "validateDecoder", + "ranges": [{ "startOffset": 1722, "endOffset": 1847, "count": 24 }], + "isBlockCoverage": false + }, + { + "functionName": "trimAsciiWhitespace", + "ranges": [{ "startOffset": 9143, "endOffset": 9641, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getEncodingFromLabel", + "ranges": [{ "startOffset": 9643, "endOffset": 9822, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "TextEncoder", + "ranges": [{ "startOffset": 9846, "endOffset": 9892, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "get encoding", + "ranges": [{ "startOffset": 9896, "endOffset": 9963, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "encode", + "ranges": [{ "startOffset": 9967, "endOffset": 10059, "count": 59 }], + "isBlockCoverage": false + }, + { + "functionName": "encodeInto", + "ranges": [{ "startOffset": 10063, "endOffset": 10469, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 10473, "endOffset": 10870, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseInput", + "ranges": [{ "startOffset": 11131, "endOffset": 11553, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lazyStringDecoder", + "ranges": [{ "startOffset": 11757, "endOffset": 11901, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "TextDecoder", + "ranges": [{ "startOffset": 11925, "endOffset": 13100, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "#prepareConverter", + "ranges": [{ "startOffset": 13104, "endOffset": 13772, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "decode", + "ranges": [{ "startOffset": 13776, "endOffset": 16506, "count": 24 }], + "isBlockCoverage": false + }, + { + "functionName": "get encoding", + "ranges": [{ "startOffset": 16605, "endOffset": 16680, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get fatal", + "ranges": [{ "startOffset": 16685, "endOffset": 16806, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get ignoreBOM", + "ranges": [{ "startOffset": 16811, "endOffset": 16960, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 16965, "endOffset": 17548, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "123", + "url": "node:internal/encoding/single-byte", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 13576, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "it", + "ranges": [{ "startOffset": 763, "endOffset": 794, "count": 76 }], + "isBlockCoverage": false + }, + { + "functionName": "e", + "ranges": [{ "startOffset": 866, "endOffset": 912, "count": 70 }], + "isBlockCoverage": false + }, + { + "functionName": "h", + "ranges": [{ "startOffset": 924, "endOffset": 970, "count": 5 }], + "isBlockCoverage": false + }, + { + "functionName": "getEncoding", + "ranges": [{ "startOffset": 11222, "endOffset": 11818, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isSinglebyteEncoding", + "ranges": [{ "startOffset": 11949, "endOffset": 11976, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createSinglebyteDecoder", + "ranges": [{ "startOffset": 12054, "endOffset": 13473, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "124", + "url": "node:internal/encoding/util", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3059, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "unfinishedBytesUtf8", + "ranges": [{ "startOffset": 546, "endOffset": 1311, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mergePrefixUtf8", + "ranges": [{ "startOffset": 1849, "endOffset": 2998, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "125", + "url": "node:internal/fs/utils", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 27046, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "lazyLoadFs", + "ranges": [{ "startOffset": 3454, "endOffset": 3510, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "assertEncoding", + "ranges": [{ "startOffset": 3512, "endOffset": 3712, "count": 4 }], + "isBlockCoverage": false + }, + { + "functionName": "Dirent", + "ranges": [{ "startOffset": 3731, "endOffset": 3840, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isDirectory", + "ranges": [{ "startOffset": 3844, "endOffset": 3905, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isFile", + "ranges": [{ "startOffset": 3909, "endOffset": 3966, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isBlockDevice", + "ranges": [{ "startOffset": 3970, "endOffset": 4035, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isCharacterDevice", + "ranges": [{ "startOffset": 4039, "endOffset": 4107, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isSymbolicLink", + "ranges": [{ "startOffset": 4111, "endOffset": 4176, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isFIFO", + "ranges": [{ "startOffset": 4180, "endOffset": 4237, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isSocket", + "ranges": [{ "startOffset": 4241, "endOffset": 4302, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "DirentFromStats", + "ranges": [{ "startOffset": 4347, "endOffset": 4438, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4583, "endOffset": 4632, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "copyObject", + "ranges": [{ "startOffset": 4637, "endOffset": 4765, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "join", + "ranges": [{ "startOffset": 4815, "endOffset": 5422, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getDirents", + "ranges": [{ "startOffset": 5424, "endOffset": 6539, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getDirent", + "ranges": [{ "startOffset": 6541, "endOffset": 7318, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getOptions", + "ranges": [{ "startOffset": 7320, "endOffset": 7946, "count": 4 }], + "isBlockCoverage": false + }, + { + "functionName": "handleErrorFromBinding", + "ranges": [{ "startOffset": 8004, "endOffset": 8537, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "preprocessSymlinkDestination", + "ranges": [{ "startOffset": 8539, "endOffset": 9245, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "StatsBase", + "ranges": [{ "startOffset": 9278, "endOffset": 9585, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9621, "endOffset": 9678, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9710, "endOffset": 9767, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9806, "endOffset": 9863, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9906, "endOffset": 9963, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 10003, "endOffset": 10060, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 10092, "endOffset": 10149, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 10183, "endOffset": 10241, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "msFromTimeSpec", + "ranges": [{ "startOffset": 10372, "endOffset": 10454, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "nsFromTimeSpecBigInt", + "ranges": [{ "startOffset": 10456, "endOffset": 10539, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "dateFromMs", + "ranges": [{ "startOffset": 10941, "endOffset": 11052, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 11180, "endOffset": 11245, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 11251, "endOffset": 11356, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 11445, "endOffset": 11510, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 11516, "endOffset": 11621, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 11710, "endOffset": 11775, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 11781, "endOffset": 11886, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 11979, "endOffset": 12052, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 12058, "endOffset": 12167, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "BigIntStats", + "ranges": [{ "startOffset": 12178, "endOffset": 12743, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 12964, "endOffset": 13210, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Stats", + "ranges": [{ "startOffset": 13213, "endOffset": 13603, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 13800, "endOffset": 14030, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getStatsFromBinding", + "ranges": [{ "startOffset": 14148, "endOffset": 15227, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "StatFs", + "ranges": [{ "startOffset": 15246, "endOffset": 15483, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getStatFsFromBinding", + "ranges": [{ "startOffset": 15487, "endOffset": 15627, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stringToFlags", + "ranges": [{ "startOffset": 15629, "endOffset": 16885, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 16931, "endOffset": 17140, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toUnixTimestamp", + "ranges": [{ "startOffset": 17202, "endOffset": 17657, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 17711, "endOffset": 18174, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 18233, "endOffset": 18718, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 18761, "endOffset": 19473, "count": 5 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 19518, "endOffset": 19653, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 19696, "endOffset": 19817, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 19865, "endOffset": 20238, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "warnOnNonPortableTemplate", + "ranges": [{ "startOffset": 20279, "endOffset": 20879, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 21304, "endOffset": 22212, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 22258, "endOffset": 22982, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 23032, "endOffset": 23706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "emitRecursiveRmdirWarning", + "ranges": [{ "startOffset": 23736, "endOffset": 24242, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 24292, "endOffset": 24761, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 24802, "endOffset": 25188, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 25251, "endOffset": 25456, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 25501, "endOffset": 26114, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "126", + "url": "node:internal/process/permission", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1110, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "isEnabled", + "ranges": [{ "startOffset": 321, "endOffset": 519, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "has", + "ranges": [{ "startOffset": 523, "endOffset": 879, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "availableFlags", + "ranges": [{ "startOffset": 883, "endOffset": 1104, "count": 1 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "127", + "url": "node:internal/modules/helpers", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 15131, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 975, "endOffset": 1003, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1344, "endOffset": 1369, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "toRealPath", + "ranges": [{ "startOffset": 1859, "endOffset": 1991, "count": 3 }], + "isBlockCoverage": false + }, + { + "functionName": "initializeCjsConditions", + "ranges": [{ "startOffset": 2175, "endOffset": 2751, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "getCjsConditions", + "ranges": [{ "startOffset": 2844, "endOffset": 2971, "count": 3 }], + "isBlockCoverage": false + }, + { + "functionName": "getCjsConditionsArray", + "ranges": [{ "startOffset": 2973, "endOffset": 3115, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "loadBuiltinModule", + "ranges": [{ "startOffset": 3291, "endOffset": 3657, "count": 10 }], + "isBlockCoverage": false + }, + { + "functionName": "lazyModule", + "ranges": [{ "startOffset": 3771, "endOffset": 3864, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "makeRequireFunction", + "ranges": [{ "startOffset": 4066, "endOffset": 5190, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "require", + "ranges": [{ "startOffset": 4261, "endOffset": 4319, "count": 10 }], + "isBlockCoverage": false + }, + { + "functionName": "resolve", + "ranges": [{ "startOffset": 4523, "endOffset": 4669, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "paths", + "ranges": [{ "startOffset": 4837, "endOffset": 4959, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stripBOM", + "ranges": [{ "startOffset": 5423, "endOffset": 5578, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addBuiltinLibsToObject", + "ranges": [{ "startOffset": 5851, "endOffset": 7790, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "normalizeReferrerURL", + "ranges": [{ "startOffset": 8059, "endOffset": 8558, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "urlToFilename", + "ranges": [{ "startOffset": 8913, "endOffset": 9510, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getBuiltinModule", + "ranges": [{ "startOffset": 10453, "endOffset": 10637, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lazyTypes", + "ranges": [{ "startOffset": 10792, "endOffset": 10908, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "assertBufferSource", + "ranges": [{ "startOffset": 11410, "endOffset": 11831, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stringify", + "ranges": [{ "startOffset": 12076, "endOffset": 12343, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "enableCompileCache", + "ranges": [{ "startOffset": 13187, "endOffset": 13892, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getCompileCacheDir", + "ranges": [{ "startOffset": 14369, "endOffset": 14447, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hasStartedUserCJSExecution", + "ranges": [{ "startOffset": 14795, "endOffset": 14869, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "setHasStartedUserCJSExecution", + "ranges": [{ "startOffset": 14873, "endOffset": 14950, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "hasStartedUserESMExecution", + "ranges": [{ "startOffset": 14954, "endOffset": 15028, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "setHasStartedUserESMExecution", + "ranges": [{ "startOffset": 15032, "endOffset": 15109, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "128", + "url": "node:internal/bootstrap/web/exposed-wildcard", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3120, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "createGlobalConsole", + "ranges": [{ "startOffset": 1579, "endOffset": 2118, "count": 1 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "129", + "url": "node:internal/console/global", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1880, "count": 1 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "130", + "url": "node:internal/console/constructor", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 21776, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "lazyUtilColors", + "ranges": [{ "startOffset": 1959, "endOffset": 2059, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Console", + "ranges": [{ "startOffset": 2760, "endOffset": 5056, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "value", + "ranges": [{ "startOffset": 5285, "endOffset": 5339, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "value", + "ranges": [{ "startOffset": 5677, "endOffset": 5918, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "value", + "ranges": [{ "startOffset": 6143, "endOffset": 6722, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 6352, "endOffset": 6416, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 6428, "endOffset": 6458, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 6588, "endOffset": 6652, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 6664, "endOffset": 6694, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "value", + "ranges": [{ "startOffset": 6814, "endOffset": 8272, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "value", + "ranges": [{ "startOffset": 8364, "endOffset": 9827, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "value", + "ranges": [{ "startOffset": 9922, "endOffset": 10440, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "value", + "ranges": [{ "startOffset": 10533, "endOffset": 10961, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "value", + "ranges": [{ "startOffset": 11054, "endOffset": 11482, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createWriteErrorHandler", + "ranges": [{ "startOffset": 11572, "endOffset": 12461, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 11640, "endOffset": 12458, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "timeLogImpl", + "ranges": [{ "startOffset": 12463, "endOffset": 12694, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "log", + "ranges": [{ "startOffset": 12723, "endOffset": 12875, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "info", + "ranges": [{ "startOffset": 12880, "endOffset": 13035, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "debug", + "ranges": [{ "startOffset": 13040, "endOffset": 13198, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "warn", + "ranges": [{ "startOffset": 13203, "endOffset": 13358, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 13363, "endOffset": 13521, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "dir", + "ranges": [{ "startOffset": 13526, "endOffset": 13712, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "time", + "ranges": [{ "startOffset": 13717, "endOffset": 13842, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "timeEnd", + "ranges": [{ "startOffset": 13847, "endOffset": 14052, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "timeLog", + "ranges": [{ "startOffset": 14057, "endOffset": 14277, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "trace", + "ranges": [{ "startOffset": 14289, "endOffset": 14476, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "assert", + "ranges": [{ "startOffset": 14538, "endOffset": 14886, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "clear", + "ranges": [{ "startOffset": 14947, "endOffset": 15419, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "count", + "ranges": [{ "startOffset": 15480, "endOffset": 15936, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "countReset", + "ranges": [{ "startOffset": 16002, "endOffset": 16290, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "group", + "ranges": [{ "startOffset": 16295, "endOffset": 16591, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "groupEnd", + "ranges": [{ "startOffset": 16596, "endOffset": 16882, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "table", + "ranges": [{ "startOffset": 16931, "endOffset": 20249, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isArray", + "ranges": [{ "startOffset": 20387, "endOffset": 20443, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "noop", + "ranges": [{ "startOffset": 20446, "endOffset": 20464, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "initializeGlobalConsole", + "ranges": [{ "startOffset": 20685, "endOffset": 21675, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 21570, "endOffset": 21671, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "131", + "url": "node:internal/util/inspector", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3929, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "isUsingInspector", + "ranges": [{ "startOffset": 698, "endOffset": 1081, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getInspectPort", + "ranges": [{ "startOffset": 1108, "endOffset": 1485, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "sendInspectorCommand", + "ranges": [{ "startOffset": 1500, "endOffset": 2046, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isInspectorMessage", + "ranges": [{ "startOffset": 2048, "endOffset": 2174, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "installConsoleExtensions", + "ranges": [{ "startOffset": 2248, "endOffset": 2891, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "wrapConsole", + "ranges": [{ "startOffset": 2970, "endOffset": 3778, "count": 1 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "132", + "url": "node:internal/event_target", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 31993, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "get isTrusted", + "ranges": [{ "startOffset": 2088, "endOffset": 2144, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isEvent", + "ranges": [{ "startOffset": 2282, "endOffset": 2354, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2372, "endOffset": 2514, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Event", + "ranges": [{ "startOffset": 2672, "endOffset": 3188, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "initEvent", + "ranges": [{ "startOffset": 3297, "endOffset": 3583, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3587, "endOffset": 4102, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stopImmediatePropagation", + "ranges": [{ "startOffset": 4106, "endOffset": 4465, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "preventDefault", + "ranges": [{ "startOffset": 4469, "endOffset": 4656, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get target", + "ranges": [{ "startOffset": 4697, "endOffset": 4808, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get currentTarget", + "ranges": [{ "startOffset": 4849, "endOffset": 5001, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get srcElement", + "ranges": [{ "startOffset": 5042, "endOffset": 5157, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get type", + "ranges": [{ "startOffset": 5193, "endOffset": 5300, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get cancelable", + "ranges": [{ "startOffset": 5337, "endOffset": 5455, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get defaultPrevented", + "ranges": [{ "startOffset": 5492, "endOffset": 5642, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get timeStamp", + "ranges": [{ "startOffset": 5678, "endOffset": 5794, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "composedPath", + "ranges": [{ "startOffset": 6012, "endOffset": 6159, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get returnValue", + "ranges": [{ "startOffset": 6196, "endOffset": 6343, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set returnValue", + "ranges": [{ "startOffset": 6380, "endOffset": 6602, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get bubbles", + "ranges": [{ "startOffset": 6639, "endOffset": 6751, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get composed", + "ranges": [{ "startOffset": 6788, "endOffset": 6902, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get eventPhase", + "ranges": [{ "startOffset": 6938, "endOffset": 7095, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get cancelBubble", + "ranges": [{ "startOffset": 7132, "endOffset": 7260, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set cancelBubble", + "ranges": [{ "startOffset": 7297, "endOffset": 7455, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stopPropagation", + "ranges": [{ "startOffset": 7459, "endOffset": 7586, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8869, "endOffset": 9079, "count": 4 }], + "isBlockCoverage": false + }, + { + "functionName": "isCustomEvent", + "ranges": [{ "startOffset": 9090, "endOffset": 9184, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "CustomEvent", + "ranges": [{ "startOffset": 9396, "endOffset": 9588, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get detail", + "ranges": [{ "startOffset": 9621, "endOffset": 9744, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "weakListeners", + "ranges": [{ "startOffset": 10223, "endOffset": 10550, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Listener", + "ranges": [{ "startOffset": 11230, "endOffset": 12694, "count": 11 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 12521, "endOffset": 12651, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get once", + "ranges": [{ "startOffset": 12698, "endOffset": 12758, "count": 6 }], + "isBlockCoverage": false + }, + { + "functionName": "get capture", + "ranges": [{ "startOffset": 12761, "endOffset": 12827, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get passive", + "ranges": [{ "startOffset": 12830, "endOffset": 12896, "count": 12 }], + "isBlockCoverage": false + }, + { + "functionName": "get isNodeStyleListener", + "ranges": [{ "startOffset": 12899, "endOffset": 12979, "count": 12 }], + "isBlockCoverage": false + }, + { + "functionName": "get weak", + "ranges": [{ "startOffset": 12982, "endOffset": 13042, "count": 17 }], + "isBlockCoverage": false + }, + { + "functionName": "get resistStopPropagation", + "ranges": [{ "startOffset": 13045, "endOffset": 13139, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get removed", + "ranges": [{ "startOffset": 13142, "endOffset": 13208, "count": 6 }], + "isBlockCoverage": false + }, + { + "functionName": "set removed", + "ranges": [{ "startOffset": 13211, "endOffset": 13328, "count": 11 }], + "isBlockCoverage": false + }, + { + "functionName": "same", + "ranges": [{ "startOffset": 13332, "endOffset": 13499, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "remove", + "ranges": [{ "startOffset": 13503, "endOffset": 13760, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "initEventTarget", + "ranges": [{ "startOffset": 13764, "endOffset": 13983, "count": 4 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 14191, "endOffset": 14221, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "EventTarget", + "ranges": [{ "startOffset": 14226, "endOffset": 14272, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 14276, "endOffset": 15132, "count": 11 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 15135, "endOffset": 15186, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addEventListener", + "ranges": [{ "startOffset": 15575, "endOffset": 18556, "count": 11 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 16627, "endOffset": 16705, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "removeEventListener", + "ranges": [{ "startOffset": 18714, "endOffset": 19555, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 19559, "endOffset": 20180, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "dispatchEvent", + "ranges": [{ "startOffset": 20246, "endOffset": 20706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 20710, "endOffset": 23225, "count": 6 }], + "isBlockCoverage": false + }, + { + "functionName": "createEvent", + "ranges": [{ "startOffset": 20778, "endOffset": 20978, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "iterationCondition", + "ranges": [{ "startOffset": 21361, "endOffset": 21526, "count": 12 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 23229, "endOffset": 23323, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 23326, "endOffset": 23626, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "initNodeEventTarget", + "ranges": [{ "startOffset": 23951, "endOffset": 24014, "count": 4 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 24062, "endOffset": 24131, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "NodeEventTarget", + "ranges": [{ "startOffset": 24136, "endOffset": 24199, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setMaxListeners", + "ranges": [{ "startOffset": 24238, "endOffset": 24392, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getMaxListeners", + "ranges": [{ "startOffset": 24431, "endOffset": 24584, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "eventNames", + "ranges": [{ "startOffset": 24625, "endOffset": 24774, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "listenerCount", + "ranges": [{ "startOffset": 24839, "endOffset": 25048, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "off", + "ranges": [{ "startOffset": 25238, "endOffset": 25431, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "removeListener", + "ranges": [{ "startOffset": 25621, "endOffset": 25825, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "on", + "ranges": [{ "startOffset": 25956, "endOffset": 26161, "count": 11 }], + "isBlockCoverage": false + }, + { + "functionName": "addListener", + "ranges": [{ "startOffset": 26292, "endOffset": 26506, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "emit", + "ranges": [{ "startOffset": 26594, "endOffset": 26854, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "once", + "ranges": [{ "startOffset": 26985, "endOffset": 27230, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "removeAllListeners", + "ranges": [{ "startOffset": 27306, "endOffset": 27561, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "validateEventListener", + "ranges": [{ "startOffset": 28026, "endOffset": 28398, "count": 11 }], + "isBlockCoverage": false + }, + { + "functionName": "validateEventListenerOptions", + "ranges": [{ "startOffset": 28400, "endOffset": 28958, "count": 11 }], + "isBlockCoverage": false + }, + { + "functionName": "isEventTarget", + "ranges": [{ "startOffset": 29263, "endOffset": 29339, "count": 11 }], + "isBlockCoverage": false + }, + { + "functionName": "isNodeEventTarget", + "ranges": [{ "startOffset": 29341, "endOffset": 29425, "count": 11 }], + "isBlockCoverage": false + }, + { + "functionName": "addCatch", + "ranges": [{ "startOffset": 29427, "endOffset": 29741, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "emitUncaughtException", + "ranges": [{ "startOffset": 29743, "endOffset": 29824, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "makeEventHandler", + "ranges": [{ "startOffset": 29826, "endOffset": 30235, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "defineEventHandler", + "ranges": [{ "startOffset": 30237, "endOffset": 31711, "count": 5 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 30397, "endOffset": 30537, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 30636, "endOffset": 31478, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "133", + "url": "node:util", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 16456, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "lazyUtilColors", + "ranges": [{ "startOffset": 2273, "endOffset": 2373, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lazyAbortController", + "ranges": [{ "startOffset": 2757, "endOffset": 2877, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "escapeStyleCode", + "ranges": [{ "startOffset": 2958, "endOffset": 3057, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "styleText", + "ranges": [{ "startOffset": 3327, "endOffset": 5723, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inherits", + "ranges": [{ "startOffset": 6450, "endOffset": 7088, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_extend", + "ranges": [{ "startOffset": 7227, "endOffset": 7515, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "callbackifyOnRejected", + "ranges": [{ "startOffset": 7547, "endOffset": 8052, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "callbackify", + "ranges": [{ "startOffset": 8175, "endOffset": 9672, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getSystemErrorMessage", + "ranges": [{ "startOffset": 9726, "endOffset": 9948, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getSystemErrorName", + "ranges": [{ "startOffset": 10002, "endOffset": 10218, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_errnoException", + "ranges": [{ "startOffset": 10220, "endOffset": 10553, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_exceptionWithHostPort", + "ranges": [{ "startOffset": 10555, "endOffset": 10916, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseEnv", + "ranges": [{ "startOffset": 11030, "endOffset": 11134, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 11166, "endOffset": 11219, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "reconstructCallSite", + "ranges": [{ "startOffset": 11879, "endOffset": 12514, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mapCallSite", + "ranges": [{ "startOffset": 12670, "endOffset": 12929, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getCallSites", + "ranges": [{ "startOffset": 13187, "endOffset": 14410, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "deprecate", + "ranges": [{ "startOffset": 14442, "endOffset": 14576, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isDeepStrictEqual", + "ranges": [{ "startOffset": 15342, "endOffset": 15568, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toUSVString", + "ranges": [{ "startOffset": 15613, "endOffset": 15689, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get transferableAbortSignal", + "ranges": [{ "startOffset": 15693, "endOffset": 15786, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get transferableAbortController", + "ranges": [{ "startOffset": 15790, "endOffset": 15891, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get aborted", + "ranges": [{ "startOffset": 15895, "endOffset": 15956, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "134", + "url": "node:internal/streams/utils", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 8930, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "isReadableNodeStream", + "ranges": [{ "startOffset": 1125, "endOffset": 1542, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isWritableNodeStream", + "ranges": [{ "startOffset": 1544, "endOffset": 1764, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isDuplexNodeStream", + "ranges": [{ "startOffset": 1766, "endOffset": 1965, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isNodeStream", + "ranges": [{ "startOffset": 1967, "endOffset": 2238, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isReadableStream", + "ranges": [{ "startOffset": 2240, "endOffset": 2454, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isWritableStream", + "ranges": [{ "startOffset": 2456, "endOffset": 2624, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isTransformStream", + "ranges": [{ "startOffset": 2626, "endOffset": 2793, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isWebStream", + "ranges": [{ "startOffset": 2795, "endOffset": 2907, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isIterable", + "ranges": [{ "startOffset": 2909, "endOffset": 3239, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isDestroyed", + "ranges": [{ "startOffset": 3241, "endOffset": 3504, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isWritableEnded", + "ranges": [{ "startOffset": 3528, "endOffset": 3819, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isWritableFinished", + "ranges": [{ "startOffset": 3847, "endOffset": 4244, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isReadableEnded", + "ranges": [{ "startOffset": 4273, "endOffset": 4574, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isReadableFinished", + "ranges": [{ "startOffset": 4599, "endOffset": 4947, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isReadable", + "ranges": [{ "startOffset": 4949, "endOffset": 5249, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isWritable", + "ranges": [{ "startOffset": 5251, "endOffset": 5548, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isFinished", + "ranges": [{ "startOffset": 5550, "endOffset": 5864, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isWritableErrored", + "ranges": [{ "startOffset": 5866, "endOffset": 6078, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isReadableErrored", + "ranges": [{ "startOffset": 6080, "endOffset": 6292, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isClosed", + "ranges": [{ "startOffset": 6294, "endOffset": 6799, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isOutgoingMessage", + "ranges": [{ "startOffset": 6801, "endOffset": 7053, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isServerResponse", + "ranges": [{ "startOffset": 7055, "endOffset": 7182, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isServerRequest", + "ranges": [{ "startOffset": 7184, "endOffset": 7372, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "willEmitClose", + "ranges": [{ "startOffset": 7374, "endOffset": 7700, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isDisturbed", + "ranges": [{ "startOffset": 7702, "endOffset": 7847, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isErrored", + "ranges": [{ "startOffset": 7849, "endOffset": 8154, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "135", + "url": "node:internal/perf/utils", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 810, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "getTimeOrigin", + "ranges": [{ "startOffset": 199, "endOffset": 377, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getMilestoneTimestamp", + "ranges": [{ "startOffset": 456, "endOffset": 612, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getTimeOriginTimestamp", + "ranges": [{ "startOffset": 614, "endOffset": 728, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "136", + "url": "node:internal/bootstrap/web/exposed-window-or-worker", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 4553, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "fetch", + "ranges": [{ "startOffset": 2615, "endOffset": 2932, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3678, "endOffset": 3785, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cryptoThisCheck", + "ranges": [{ "startOffset": 3963, "endOffset": 4131, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get crypto", + "ranges": [{ "startOffset": 4414, "endOffset": 4509, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "137", + "url": "node:internal/bootstrap/switches/is_not_main_thread", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1410, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "defineStream", + "ranges": [{ "startOffset": 122, "endOffset": 291, "count": 3 }], + "isBlockCoverage": false + }, + { + "functionName": "lazyWorkerStdio", + "ranges": [{ "startOffset": 936, "endOffset": 1102, "count": 3 }], + "isBlockCoverage": false + }, + { + "functionName": "flushSync", + "ranges": [{ "startOffset": 1104, "endOffset": 1234, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getStdout", + "ranges": [{ "startOffset": 1236, "endOffset": 1293, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "getStderr", + "ranges": [{ "startOffset": 1295, "endOffset": 1352, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "getStdin", + "ranges": [{ "startOffset": 1354, "endOffset": 1409, "count": 1 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "138", + "url": "node:internal/process/signal", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1180, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "isSignal", + "ranges": [{ "startOffset": 238, "endOffset": 334, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "startListeningIfSignal", + "ranges": [{ "startOffset": 398, "endOffset": 908, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stopListeningIfSignal", + "ranges": [{ "startOffset": 910, "endOffset": 1105, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "139", + "url": "node:internal/worker/io", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 14151, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "lazyMessageEvent", + "ranges": [{ "startOffset": 2368, "endOffset": 2546, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hasRef", + "ranges": [{ "startOffset": 3854, "endOffset": 3944, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4144, "endOffset": 4462, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "oninit", + "ranges": [{ "startOffset": 4602, "endOffset": 4745, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "MessagePortCloseEvent", + "ranges": [{ "startOffset": 5047, "endOffset": 5086, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "onclose", + "ranges": [{ "startOffset": 5159, "endOffset": 5232, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "close", + "ranges": [{ "startOffset": 5413, "endOffset": 5554, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inspect", + "ranges": [{ "startOffset": 5687, "endOffset": 6315, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setupPortReferencing", + "ranges": [{ "startOffset": 6322, "endOffset": 7685, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6683, "endOffset": 6778, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6817, "endOffset": 6915, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 7017, "endOffset": 7162, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 7273, "endOffset": 7420, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "newListener", + "ranges": [{ "startOffset": 7426, "endOffset": 7567, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "removeListener", + "ranges": [{ "startOffset": 7571, "endOffset": 7683, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ReadableWorkerStdio", + "ranges": [{ "startOffset": 7735, "endOffset": 8084, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 7913, "endOffset": 8078, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_read", + "ranges": [{ "startOffset": 8088, "endOffset": 8394, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "WritableWorkerStdio", + "ranges": [{ "startOffset": 8445, "endOffset": 8595, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "_writev", + "ranges": [{ "startOffset": 8599, "endOffset": 9253, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_final", + "ranges": [{ "startOffset": 9257, "endOffset": 9437, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 9441, "endOffset": 9665, "count": 2 }, + { "startOffset": 9527, "endOffset": 9661, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "createWorkerStdio", + "ranges": [{ "startOffset": 9669, "endOffset": 9939, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "receiveMessageOnPort", + "ranges": [{ "startOffset": 9941, "endOffset": 10121, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "onMessageEvent", + "ranges": [{ "startOffset": 10123, "endOffset": 10218, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isBroadcastChannel", + "ranges": [{ "startOffset": 10220, "endOffset": 10306, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "BroadcastChannel", + "ranges": [{ "startOffset": 10393, "endOffset": 10907, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 10911, "endOffset": 11324, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get name", + "ranges": [{ "startOffset": 11360, "endOffset": 11489, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "close", + "ranges": [{ "startOffset": 11526, "endOffset": 11924, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "postMessage", + "ranges": [{ "startOffset": 11992, "endOffset": 12423, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ref", + "ranges": [{ "startOffset": 12706, "endOffset": 12873, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "unref", + "ranges": [{ "startOffset": 13158, "endOffset": 13329, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "markAsUncloneable", + "ranges": [{ "startOffset": 13610, "endOffset": 13793, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "140", + "url": "node:stream", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 5099, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "fn", + "ranges": [{ "startOffset": 2556, "endOffset": 2716, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fn", + "ranges": [{ "startOffset": 3218, "endOffset": 3356, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 4404, "endOffset": 4436, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 4534, "endOffset": 4575, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 4668, "endOffset": 4709, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_uint8ArrayToBuffer", + "ranges": [{ "startOffset": 4890, "endOffset": 5097, "count": 3 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "141", + "url": "node:internal/streams/operators", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 8832, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "map", + "ranges": [{ "startOffset": 721, "endOffset": 3732, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "some", + "ranges": [{ "startOffset": 3734, "endOffset": 3882, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "every", + "ranges": [{ "startOffset": 3884, "endOffset": 4120, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "find", + "ranges": [{ "startOffset": 4122, "endOffset": 4264, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "forEach", + "ranges": [{ "startOffset": 4266, "endOffset": 4544, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "filter", + "ranges": [{ "startOffset": 4546, "endOffset": 4781, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ReduceAwareErrMissingArgs", + "ranges": [{ "startOffset": 4997, "endOffset": 5111, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "reduce", + "ranges": [{ "startOffset": 5115, "endOffset": 6460, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toArray", + "ranges": [{ "startOffset": 6462, "endOffset": 6891, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "flatMap", + "ranges": [{ "startOffset": 6893, "endOffset": 7087, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toIntegerOrInfinity", + "ranges": [{ "startOffset": 7089, "endOffset": 7411, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "drop", + "ranges": [{ "startOffset": 7413, "endOffset": 7961, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "take", + "ranges": [{ "startOffset": 7963, "endOffset": 8633, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "142", + "url": "node:internal/abort_controller", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 16475, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "lazyMessageChannel", + "ranges": [{ "startOffset": 1723, "endOffset": 1856, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2000, "endOffset": 2249, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2363, "endOffset": 2776, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "customInspect", + "ranges": [{ "startOffset": 3131, "endOffset": 3390, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "validateThisAbortSignal", + "ranges": [{ "startOffset": 3392, "endOffset": 3517, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setWeakAbortSignalTimeout", + "ranges": [{ "startOffset": 4099, "endOffset": 4499, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "AbortSignal", + "ranges": [{ "startOffset": 4759, "endOffset": 5270, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get aborted", + "ranges": [{ "startOffset": 5307, "endOffset": 5390, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get reason", + "ranges": [{ "startOffset": 5423, "endOffset": 5502, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "throwIfAborted", + "ranges": [{ "startOffset": 5506, "endOffset": 5622, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5626, "endOffset": 5755, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "abort", + "ranges": [{ "startOffset": 5833, "endOffset": 5993, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "timeout", + "ranges": [{ "startOffset": 6071, "endOffset": 6351, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "any", + "ranges": [{ "startOffset": 6438, "endOffset": 9063, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9067, "endOffset": 9835, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9839, "endOffset": 10193, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 10197, "endOffset": 10804, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 10808, "endOffset": 11060, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 11064, "endOffset": 11512, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ClonedAbortSignal", + "ranges": [{ "startOffset": 11693, "endOffset": 11793, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ClonedAbortSignal.", + "ranges": [{ "startOffset": 11838, "endOffset": 11846, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "abortSignal", + "ranges": [{ "startOffset": 12216, "endOffset": 14011, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "runAbort", + "ranges": [{ "startOffset": 14065, "endOffset": 14193, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 14221, "endOffset": 14228, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get signal", + "ranges": [{ "startOffset": 14270, "endOffset": 14370, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "abort", + "ranges": [{ "startOffset": 14413, "endOffset": 14572, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 14576, "endOffset": 14703, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 14714, "endOffset": 14894, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transferableAbortSignal", + "ranges": [{ "startOffset": 15044, "endOffset": 15255, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transferableAbortController", + "ranges": [{ "startOffset": 15357, "endOffset": 15446, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "aborted", + "ranges": [{ "startOffset": 15540, "endOffset": 16026, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "143", + "url": "node:internal/streams/end-of-stream", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 8882, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "isRequest", + "ranges": [{ "startOffset": 916, "endOffset": 1011, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "nop", + "ranges": [{ "startOffset": 1025, "endOffset": 1033, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "bindAsyncResource", + "ranges": [{ "startOffset": 1036, "endOffset": 1268, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "eos", + "ranges": [{ "startOffset": 1270, "endOffset": 7468, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "eosWeb", + "ranges": [{ "startOffset": 7470, "endOffset": 8379, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "finished", + "ranges": [{ "startOffset": 8381, "endOffset": 8839, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "144", + "url": "node:internal/streams/compose", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 5515, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "compose", + "ranges": [{ "startOffset": 596, "endOffset": 5513, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "145", + "url": "node:internal/streams/pipeline", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 12689, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "destroyer", + "ranges": [{ "startOffset": 1093, "endOffset": 1522, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "popCallback", + "ranges": [{ "startOffset": 1524, "endOffset": 1852, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "makeAsyncIterable", + "ranges": [{ "startOffset": 1854, "endOffset": 2140, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fromReadable", + "ranges": [{ "startOffset": 2142, "endOffset": 2292, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pumpToNode", + "ranges": [{ "startOffset": 2294, "endOffset": 3338, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pumpToWeb", + "ranges": [{ "startOffset": 3340, "endOffset": 3938, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pipeline", + "ranges": [{ "startOffset": 3940, "endOffset": 4033, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pipelineImpl", + "ranges": [{ "startOffset": 4035, "endOffset": 10810, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pipe", + "ranges": [{ "startOffset": 10812, "endOffset": 12642, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "146", + "url": "node:internal/streams/destroy", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 7355, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "checkError", + "ranges": [{ "startOffset": 488, "endOffset": 799, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "destroy", + "ranges": [{ "startOffset": 909, "endOffset": 1786, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_destroy", + "ranges": [{ "startOffset": 1788, "endOffset": 2412, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "emitErrorCloseNT", + "ranges": [{ "startOffset": 2414, "endOffset": 2501, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "emitCloseNT", + "ranges": [{ "startOffset": 2503, "endOffset": 2823, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "emitErrorNT", + "ranges": [{ "startOffset": 2825, "endOffset": 3172, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "undestroy", + "ranges": [{ "startOffset": 3174, "endOffset": 3864, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "errorOrDestroy", + "ranges": [{ "startOffset": 3866, "endOffset": 5005, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "construct", + "ranges": [{ "startOffset": 5007, "endOffset": 5423, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "constructNT", + "ranges": [{ "startOffset": 5425, "endOffset": 6164, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isRequest", + "ranges": [{ "startOffset": 6166, "endOffset": 6262, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "emitCloseLegacy", + "ranges": [{ "startOffset": 6264, "endOffset": 6324, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "emitErrorCloseLegacy", + "ranges": [{ "startOffset": 6326, "endOffset": 6446, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "destroyer", + "ranges": [{ "startOffset": 6481, "endOffset": 7263, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "147", + "url": "node:internal/streams/duplex", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 6547, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "Duplex", + "ranges": [ + { "startOffset": 2315, "endOffset": 4278, "count": 2 }, + { "startOffset": 2379, "endOffset": 2406, "count": 0 }, + { "startOffset": 3093, "endOffset": 3229, "count": 1 }, + { "startOffset": 3267, "endOffset": 3442, "count": 0 }, + { "startOffset": 3494, "endOffset": 3520, "count": 0 }, + { "startOffset": 3573, "endOffset": 3601, "count": 0 }, + { "startOffset": 3655, "endOffset": 3685, "count": 0 }, + { "startOffset": 3740, "endOffset": 3772, "count": 0 }, + { "startOffset": 3825, "endOffset": 3853, "count": 0 }, + { "startOffset": 3910, "endOffset": 3946, "count": 0 }, + { "startOffset": 3978, "endOffset": 4015, "count": 0 }, + { "startOffset": 4019, "endOffset": 4061, "count": 0 }, + { "startOffset": 4125, "endOffset": 4276, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4159, "endOffset": 4270, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [ + { "startOffset": 5426, "endOffset": 5638, "count": 4 }, + { "startOffset": 5524, "endOffset": 5555, "count": 0 }, + { "startOffset": 5599, "endOffset": 5631, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 5644, "endOffset": 5905, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lazyWebStreams", + "ranges": [{ "startOffset": 5979, "endOffset": 6143, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Duplex.fromWeb", + "ranges": [{ "startOffset": 6162, "endOffset": 6280, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Duplex.toWeb", + "ranges": [{ "startOffset": 6298, "endOffset": 6405, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Duplex.from", + "ranges": [{ "startOffset": 6438, "endOffset": 6545, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "148", + "url": "node:internal/streams/legacy", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3328, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "Stream", + "ranges": [{ "startOffset": 130, "endOffset": 178, "count": 5 }], + "isBlockCoverage": true + }, + { + "functionName": "Stream.pipe", + "ranges": [{ "startOffset": 292, "endOffset": 2171, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "eventNames", + "ranges": [{ "startOffset": 2204, "endOffset": 2470, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "prependListener", + "ranges": [{ "startOffset": 2473, "endOffset": 3280, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "149", + "url": "node:internal/streams/readable", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 51947, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1874, "endOffset": 1899, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "nop", + "ranges": [{ "startOffset": 2887, "endOffset": 2895, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "makeBitMapDescriptor", + "ranges": [{ "startOffset": 3791, "endOffset": 4013, "count": 19 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3866, "endOffset": 3910, "count": 6 }], + "isBlockCoverage": true + }, + { + "functionName": "set", + "ranges": [ + { "startOffset": 3916, "endOffset": 4005, "count": 18 }, + { "startOffset": 3946, "endOffset": 3966, "count": 6 }, + { "startOffset": 3966, "endOffset": 3999, "count": 12 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 6187, "endOffset": 6275, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [ + { "startOffset": 6281, "endOffset": 6447, "count": 2 }, + { "startOffset": 6311, "endOffset": 6391, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 6524, "endOffset": 6624, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 6630, "endOffset": 6860, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 6929, "endOffset": 7017, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 7023, "endOffset": 7189, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 7259, "endOffset": 7349, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 7355, "endOffset": 7524, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 7593, "endOffset": 7696, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 7702, "endOffset": 7969, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ReadableState", + "ranges": [ + { "startOffset": 7982, "endOffset": 9948, "count": 3 }, + { "startOffset": 8354, "endOffset": 8366, "count": 2 }, + { "startOffset": 8372, "endOffset": 8400, "count": 0 }, + { "startOffset": 8417, "endOffset": 8447, "count": 2 }, + { "startOffset": 8453, "endOffset": 8481, "count": 0 }, + { "startOffset": 8656, "endOffset": 8728, "count": 2 }, + { "startOffset": 8729, "endOffset": 8765, "count": 1 }, + { "startOffset": 8924, "endOffset": 8954, "count": 2 }, + { "startOffset": 8956, "endOffset": 8984, "count": 2 }, + { "startOffset": 9073, "endOffset": 9105, "count": 2 }, + { "startOffset": 9107, "endOffset": 9137, "count": 0 }, + { "startOffset": 9367, "endOffset": 9384, "count": 2 }, + { "startOffset": 9416, "endOffset": 9445, "count": 0 }, + { "startOffset": 9446, "endOffset": 9476, "count": 0 }, + { "startOffset": 9525, "endOffset": 9684, "count": 0 }, + { "startOffset": 9835, "endOffset": 9845, "count": 2 }, + { "startOffset": 9847, "endOffset": 9946, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "onConstructed", + "ranges": [{ "startOffset": 9992, "endOffset": 10109, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Readable", + "ranges": [ + { "startOffset": 10112, "endOffset": 11146, "count": 1 }, + { "startOffset": 10180, "endOffset": 10209, "count": 0 }, + { "startOffset": 10647, "endOffset": 10978, "count": 0 }, + { "startOffset": 11042, "endOffset": 11144, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 11076, "endOffset": 11138, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Readable._destroy", + "ranges": [{ "startOffset": 11283, "endOffset": 11315, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Readable.", + "ranges": [{ "startOffset": 11366, "endOffset": 11404, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Readable.", + "ranges": [{ "startOffset": 11448, "endOffset": 11709, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Readable.push", + "ranges": [ + { "startOffset": 11938, "endOffset": 12207, "count": 5 }, + { "startOffset": 12138, "endOffset": 12204, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "Readable.unshift", + "ranges": [{ "startOffset": 12303, "endOffset": 12570, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readableAddChunkUnshiftByteMode", + "ranges": [{ "startOffset": 12574, "endOffset": 13630, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readableAddChunkUnshiftObjectMode", + "ranges": [{ "startOffset": 13632, "endOffset": 13872, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readableAddChunkUnshiftValue", + "ranges": [{ "startOffset": 13874, "endOffset": 14207, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readableAddChunkPushByteMode", + "ranges": [ + { "startOffset": 14209, "endOffset": 15591, "count": 5 }, + { "startOffset": 14303, "endOffset": 14389, "count": 1 }, + { "startOffset": 14389, "endOffset": 14424, "count": 4 }, + { "startOffset": 14424, "endOffset": 14579, "count": 0 }, + { "startOffset": 14579, "endOffset": 14932, "count": 4 }, + { "startOffset": 14638, "endOffset": 14932, "count": 0 }, + { "startOffset": 14932, "endOffset": 14967, "count": 4 }, + { "startOffset": 14969, "endOffset": 15072, "count": 0 }, + { "startOffset": 15072, "endOffset": 15112, "count": 4 }, + { "startOffset": 15112, "endOffset": 15196, "count": 0 }, + { "startOffset": 15196, "endOffset": 15253, "count": 4 }, + { "startOffset": 15253, "endOffset": 15276, "count": 0 }, + { "startOffset": 15276, "endOffset": 15347, "count": 4 }, + { "startOffset": 15347, "endOffset": 15359, "count": 0 }, + { "startOffset": 15361, "endOffset": 15518, "count": 0 }, + { "startOffset": 15518, "endOffset": 15590, "count": 4 } + ], + "isBlockCoverage": true + }, + { + "functionName": "readableAddChunkPushObjectMode", + "ranges": [{ "startOffset": 15593, "endOffset": 16190, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "canPushMore", + "ranges": [ + { "startOffset": 16192, "endOffset": 16522, "count": 4 }, + { "startOffset": 16497, "endOffset": 16518, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "addChunk", + "ranges": [ + { "startOffset": 16524, "endOffset": 17468, "count": 4 }, + { "startOffset": 16839, "endOffset": 16885, "count": 0 }, + { "startOffset": 17008, "endOffset": 17434, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "Readable.isPaused", + "ranges": [{ "startOffset": 17500, "endOffset": 17655, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Readable.setEncoding", + "ranges": [{ "startOffset": 17719, "endOffset": 18289, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "computeNewHighWaterMark", + "ranges": [{ "startOffset": 18350, "endOffset": 18701, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "howMuchToRead", + "ranges": [ + { "startOffset": 18814, "endOffset": 19295, "count": 6 }, + { "startOffset": 18862, "endOffset": 18919, "count": 1 }, + { "startOffset": 18925, "endOffset": 18934, "count": 5 }, + { "startOffset": 18934, "endOffset": 18982, "count": 1 }, + { "startOffset": 18982, "endOffset": 18991, "count": 0 }, + { "startOffset": 18991, "endOffset": 19194, "count": 1 }, + { "startOffset": 19119, "endOffset": 19165, "count": 0 }, + { "startOffset": 19194, "endOffset": 19288, "count": 0 }, + { "startOffset": 19289, "endOffset": 19292, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "Readable.read", + "ranges": [ + { "startOffset": 19392, "endOffset": 24067, "count": 6 }, + { "startOffset": 19576, "endOffset": 19594, "count": 1 }, + { "startOffset": 19594, "endOffset": 19661, "count": 5 }, + { "startOffset": 19625, "endOffset": 19661, "count": 0 }, + { "startOffset": 19826, "endOffset": 19875, "count": 0 }, + { "startOffset": 19896, "endOffset": 19931, "count": 1 }, + { "startOffset": 20117, "endOffset": 20163, "count": 5 }, + { "startOffset": 20164, "endOffset": 20316, "count": 4 }, + { "startOffset": 20247, "endOffset": 20273, "count": 0 }, + { "startOffset": 20318, "endOffset": 20495, "count": 0 }, + { "startOffset": 20639, "endOffset": 20714, "count": 0 }, + { "startOffset": 22009, "endOffset": 22050, "count": 0 }, + { "startOffset": 22437, "endOffset": 22515, "count": 1 }, + { "startOffset": 22515, "endOffset": 23139, "count": 5 }, + { "startOffset": 22824, "endOffset": 22876, "count": 0 }, + { "startOffset": 23103, "endOffset": 23135, "count": 0 }, + { "startOffset": 23169, "endOffset": 23194, "count": 0 }, + { "startOffset": 23314, "endOffset": 23317, "count": 0 }, + { "startOffset": 23333, "endOffset": 23515, "count": 0 }, + { "startOffset": 23838, "endOffset": 23871, "count": 1 }, + { "startOffset": 23879, "endOffset": 23897, "count": 0 }, + { "startOffset": 23922, "endOffset": 23980, "count": 0 }, + { "startOffset": 23982, "endOffset": 24050, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "onEofChunk", + "ranges": [ + { "startOffset": 24070, "endOffset": 25024, "count": 1 }, + { "startOffset": 24168, "endOffset": 24175, "count": 0 }, + { "startOffset": 24227, "endOffset": 24249, "count": 0 }, + { "startOffset": 24273, "endOffset": 24452, "count": 0 }, + { "startOffset": 24720, "endOffset": 25022, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "emitReadable", + "ranges": [{ "startOffset": 25225, "endOffset": 25556, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "emitReadable_", + "ranges": [ + { "startOffset": 25558, "endOffset": 26230, "count": 1 }, + { "startOffset": 26149, "endOffset": 26191, "count": 0 }, + { "startOffset": 26192, "endOffset": 26207, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "maybeReadMore", + "ranges": [{ "startOffset": 26580, "endOffset": 26798, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "maybeReadMore_", + "ranges": [ + { "startOffset": 26800, "endOffset": 28629, "count": 4 }, + { "startOffset": 28343, "endOffset": 28412, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "Readable._read", + "ranges": [{ "startOffset": 28900, "endOffset": 28966, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Readable.pipe", + "ranges": [{ "startOffset": 28995, "endOffset": 33581, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pipeOnDrain", + "ranges": [{ "startOffset": 33584, "endOffset": 34261, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Readable.unpipe", + "ranges": [{ "startOffset": 34292, "endOffset": 34993, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Readable.on", + "ranges": [ + { "startOffset": 35119, "endOffset": 36128, "count": 7 }, + { "startOffset": 35251, "endOffset": 35680, "count": 1 }, + { "startOffset": 35480, "endOffset": 35500, "count": 0 }, + { "startOffset": 35680, "endOffset": 36111, "count": 6 }, + { "startOffset": 35709, "endOffset": 36111, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "Readable.removeListener", + "ranges": [{ "startOffset": 36223, "endOffset": 36930, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Readable.removeAllListeners", + "ranges": [{ "startOffset": 37033, "endOffset": 37627, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "updateReadableListening", + "ranges": [{ "startOffset": 37630, "endOffset": 38332, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "nReadingNextTick", + "ranges": [{ "startOffset": 38334, "endOffset": 38422, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Readable.resume", + "ranges": [ + { "startOffset": 38576, "endOffset": 39081, "count": 1 }, + { "startOffset": 38928, "endOffset": 38975, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "resume", + "ranges": [{ "startOffset": 39084, "endOffset": 39257, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "resume_", + "ranges": [ + { "startOffset": 39259, "endOffset": 39573, "count": 1 }, + { "startOffset": 39386, "endOffset": 39411, "count": 0 }, + { "startOffset": 39556, "endOffset": 39571, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "Readable.pause", + "ranges": [{ "startOffset": 39602, "endOffset": 39914, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "flow", + "ranges": [ + { "startOffset": 39917, "endOffset": 40068, "count": 2 }, + { "startOffset": 40039, "endOffset": 40064, "count": 1 }, + { "startOffset": 40065, "endOffset": 40066, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "Readable.wrap", + "ranges": [{ "startOffset": 40252, "endOffset": 41273, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Readable.", + "ranges": [{ "startOffset": 41318, "endOffset": 41370, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Readable.iterator", + "ranges": [{ "startOffset": 41403, "endOffset": 41546, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "streamToAsyncIterator", + "ranges": [{ "startOffset": 41549, "endOffset": 41798, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createAsyncIterator", + "ranges": [{ "startOffset": 41800, "endOffset": 42876, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "compose", + "ranges": [{ "startOffset": 42925, "endOffset": 43425, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 43645, "endOffset": 44034, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 44040, "endOffset": 44170, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 44252, "endOffset": 44316, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 44398, "endOffset": 44606, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 44694, "endOffset": 44760, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 44841, "endOffset": 44901, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 44983, "endOffset": 45043, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 45054, "endOffset": 45163, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 45239, "endOffset": 45293, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 45373, "endOffset": 45461, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 45539, "endOffset": 45624, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 45693, "endOffset": 45777, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 45822, "endOffset": 45906, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 45977, "endOffset": 46064, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 46070, "endOffset": 46359, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 46434, "endOffset": 46522, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 46663, "endOffset": 46708, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 46788, "endOffset": 46846, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 46852, "endOffset": 47013, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fromList", + "ranges": [{ "startOffset": 47319, "endOffset": 49772, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "endReadable", + "ranges": [{ "startOffset": 49774, "endOffset": 50000, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "endReadableNT", + "ranges": [{ "startOffset": 50002, "endOffset": 50895, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "endWritableNT", + "ranges": [{ "startOffset": 50897, "endOffset": 51057, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Readable.from", + "ranges": [{ "startOffset": 51075, "endOffset": 51144, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lazyWebStreams", + "ranges": [{ "startOffset": 51209, "endOffset": 51373, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Readable.fromWeb", + "ranges": [{ "startOffset": 51394, "endOffset": 51528, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Readable.toWeb", + "ranges": [{ "startOffset": 51548, "endOffset": 51682, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Readable.wrap", + "ranges": [{ "startOffset": 51701, "endOffset": 51945, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "150", + "url": "node:internal/streams/add-abort-signal", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1725, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "validateAbortSignal", + "ranges": [{ "startOffset": 554, "endOffset": 713, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addAbortSignal", + "ranges": [{ "startOffset": 748, "endOffset": 1059, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "module.exports.addAbortSignalNoValidate", + "ranges": [{ "startOffset": 1104, "endOffset": 1723, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "151", + "url": "node:internal/streams/state", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1440, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "highWaterMarkFrom", + "ranges": [ + { "startOffset": 395, "endOffset": 562, "count": 6 }, + { "startOffset": 493, "endOffset": 516, "count": 0 }, + { "startOffset": 532, "endOffset": 552, "count": 4 }, + { "startOffset": 553, "endOffset": 559, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "getDefaultHighWaterMark", + "ranges": [ + { "startOffset": 564, "endOffset": 694, "count": 7 }, + { "startOffset": 631, "endOffset": 663, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "setDefaultHighWaterMark", + "ranges": [{ "startOffset": 696, "endOffset": 907, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getHighWaterMark", + "ranges": [ + { "startOffset": 909, "endOffset": 1342, "count": 6 }, + { "startOffset": 1056, "endOffset": 1268, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "152", + "url": "node:string_decoder", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 4518, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "StringDecoder", + "ranges": [{ "startOffset": 1929, "endOffset": 2215, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "write", + "ranges": [{ "startOffset": 2538, "endOffset": 2923, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "end", + "ranges": [{ "startOffset": 3200, "endOffset": 3385, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "text", + "ranges": [{ "startOffset": 3596, "endOffset": 3753, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3891, "endOffset": 4104, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 4196, "endOffset": 4259, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 4352, "endOffset": 4467, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "153", + "url": "node:internal/streams/from", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 4321, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "from", + "ranges": [{ "startOffset": 241, "endOffset": 4296, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "154", + "url": "node:internal/streams/writable", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 33563, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "nop", + "ranges": [{ "startOffset": 2745, "endOffset": 2762, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "makeBitMapDescriptor", + "ranges": [{ "startOffset": 3818, "endOffset": 4040, "count": 20 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3893, "endOffset": 3937, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "set", + "ranges": [ + { "startOffset": 3943, "endOffset": 4032, "count": 20 }, + { "startOffset": 3973, "endOffset": 3993, "count": 2 }, + { "startOffset": 3993, "endOffset": 4026, "count": 18 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 7004, "endOffset": 7082, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [ + { "startOffset": 7088, "endOffset": 7254, "count": 2 }, + { "startOffset": 7118, "endOffset": 7198, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [ + { "startOffset": 7324, "endOffset": 7424, "count": 6 }, + { "startOffset": 7375, "endOffset": 7409, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 7430, "endOffset": 7703, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 7780, "endOffset": 7880, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 7886, "endOffset": 8116, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 8257, "endOffset": 8334, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [ + { "startOffset": 8340, "endOffset": 8504, "count": 6 }, + { "startOffset": 8405, "endOffset": 8498, "count": 3 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 8691, "endOffset": 8791, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 8797, "endOffset": 8994, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 9064, "endOffset": 9142, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 9148, "endOffset": 9315, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "WritableState", + "ranges": [ + { "startOffset": 9328, "endOffset": 11610, "count": 4 }, + { "startOffset": 9596, "endOffset": 9624, "count": 0 }, + { "startOffset": 9641, "endOffset": 9671, "count": 2 }, + { "startOffset": 9677, "endOffset": 9705, "count": 0 }, + { "startOffset": 9996, "endOffset": 10032, "count": 0 }, + { "startOffset": 10086, "endOffset": 10117, "count": 0 }, + { "startOffset": 10224, "endOffset": 10252, "count": 2 }, + { "startOffset": 10375, "endOffset": 10405, "count": 0 }, + { "startOffset": 10662, "endOffset": 10668, "count": 0 }, + { "startOffset": 10700, "endOffset": 10729, "count": 0 }, + { "startOffset": 10730, "endOffset": 10760, "count": 0 }, + { "startOffset": 10809, "endOffset": 11018, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "resetBuffer", + "ranges": [{ "startOffset": 11612, "endOffset": 11776, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "getBuffer", + "ranges": [{ "startOffset": 11814, "endOffset": 11943, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 12039, "endOffset": 12150, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "onConstructed", + "ranges": [{ "startOffset": 12199, "endOffset": 12385, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Writable", + "ranges": [ + { "startOffset": 12388, "endOffset": 13494, "count": 2 }, + { "startOffset": 12456, "endOffset": 12485, "count": 0 }, + { "startOffset": 12880, "endOffset": 12908, "count": 0 }, + { "startOffset": 12962, "endOffset": 12992, "count": 0 }, + { "startOffset": 13047, "endOffset": 13079, "count": 0 }, + { "startOffset": 13132, "endOffset": 13160, "count": 0 }, + { "startOffset": 13217, "endOffset": 13253, "count": 0 }, + { "startOffset": 13285, "endOffset": 13322, "count": 0 }, + { "startOffset": 13390, "endOffset": 13492, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 13424, "endOffset": 13486, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "value", + "ranges": [ + { "startOffset": 13576, "endOffset": 13780, "count": 2 }, + { "startOffset": 13665, "endOffset": 13775, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "Writable.pipe", + "ranges": [{ "startOffset": 13881, "endOffset": 13949, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_write", + "ranges": [ + { "startOffset": 13952, "endOffset": 15350, "count": 3 }, + { "startOffset": 14085, "endOffset": 14104, "count": 0 }, + { "startOffset": 14128, "endOffset": 14173, "count": 0 }, + { "startOffset": 14312, "endOffset": 14335, "count": 0 }, + { "startOffset": 14342, "endOffset": 14462, "count": 0 }, + { "startOffset": 14499, "endOffset": 14641, "count": 0 }, + { "startOffset": 14676, "endOffset": 14710, "count": 0 }, + { "startOffset": 14837, "endOffset": 14961, "count": 0 }, + { "startOffset": 15017, "endOffset": 15066, "count": 0 }, + { "startOffset": 15112, "endOffset": 15162, "count": 0 }, + { "startOffset": 15175, "endOffset": 15266, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "Writable.write", + "ranges": [{ "startOffset": 15379, "endOffset": 15570, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "Writable.cork", + "ranges": [{ "startOffset": 15599, "endOffset": 15697, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Writable.uncork", + "ranges": [{ "startOffset": 15728, "endOffset": 15966, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setDefaultEncoding", + "ranges": [{ "startOffset": 16009, "endOffset": 16334, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writeOrBuffer", + "ranges": [ + { "startOffset": 16524, "endOffset": 17728, "count": 3 }, + { "startOffset": 16641, "endOffset": 16644, "count": 0 }, + { "startOffset": 16775, "endOffset": 17182, "count": 0 }, + { "startOffset": 17472, "endOffset": 17493, "count": 0 }, + { "startOffset": 17508, "endOffset": 17546, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "doWrite", + "ranges": [{ "startOffset": 17730, "endOffset": 18167, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "onwriteError", + "ranges": [{ "startOffset": 18169, "endOffset": 18554, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "onwrite", + "ranges": [ + { "startOffset": 18556, "endOffset": 21162, "count": 3 }, + { "startOffset": 18673, "endOffset": 18747, "count": 0 }, + { "startOffset": 18864, "endOffset": 18869, "count": 0 }, + { "startOffset": 19012, "endOffset": 19626, "count": 0 }, + { "startOffset": 19677, "endOffset": 19718, "count": 0 }, + { "startOffset": 19795, "endOffset": 19816, "count": 0 }, + { "startOffset": 20180, "endOffset": 20531, "count": 0 }, + { "startOffset": 20585, "endOffset": 20646, "count": 0 }, + { "startOffset": 20648, "endOffset": 20706, "count": 0 }, + { "startOffset": 20954, "endOffset": 21097, "count": 0 }, + { "startOffset": 21103, "endOffset": 21156, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "afterWriteTick", + "ranges": [{ "startOffset": 21164, "endOffset": 21351, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "afterWrite", + "ranges": [ + { "startOffset": 21353, "endOffset": 21861, "count": 3 }, + { "startOffset": 21531, "endOffset": 21552, "count": 0 }, + { "startOffset": 21571, "endOffset": 21636, "count": 0 }, + { "startOffset": 21746, "endOffset": 21775, "count": 0 }, + { "startOffset": 21816, "endOffset": 21859, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "errorBuffer", + "ranges": [{ "startOffset": 21933, "endOffset": 22484, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "clearBuffer", + "ranges": [{ "startOffset": 22550, "endOffset": 24220, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Writable._write", + "ranges": [{ "startOffset": 24250, "endOffset": 24419, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Writable.end", + "ranges": [{ "startOffset": 24483, "endOffset": 26123, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "needFinish", + "ranges": [{ "startOffset": 26126, "endOffset": 26555, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "onFinish", + "ranges": [{ "startOffset": 26557, "endOffset": 27189, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "prefinish", + "ranges": [{ "startOffset": 27191, "endOffset": 27715, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "finishMaybe", + "ranges": [{ "startOffset": 27717, "endOffset": 28216, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "finish", + "ranges": [{ "startOffset": 28218, "endOffset": 28861, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "callFinishedCallbacks", + "ranges": [{ "startOffset": 28863, "endOffset": 29181, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 29265, "endOffset": 29368, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 29416, "endOffset": 29522, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 29528, "endOffset": 29778, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 29825, "endOffset": 30228, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 30234, "endOffset": 30368, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 30423, "endOffset": 30541, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 30598, "endOffset": 30718, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 30771, "endOffset": 30866, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 30918, "endOffset": 31034, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 31090, "endOffset": 31243, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 31303, "endOffset": 31392, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 31445, "endOffset": 31538, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 31591, "endOffset": 31673, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 31742, "endOffset": 31839, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 31898, "endOffset": 32155, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Writable.destroy", + "ranges": [{ "startOffset": 32233, "endOffset": 32513, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Writable._destroy", + "ranges": [{ "startOffset": 32601, "endOffset": 32633, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Writable.", + "ranges": [{ "startOffset": 32684, "endOffset": 32722, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lazyWebStreams", + "ranges": [{ "startOffset": 32787, "endOffset": 32951, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Writable.fromWeb", + "ranges": [{ "startOffset": 32972, "endOffset": 33106, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Writable.toWeb", + "ranges": [{ "startOffset": 33126, "endOffset": 33233, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Writable.", + "ranges": [{ "startOffset": 33277, "endOffset": 33561, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "155", + "url": "node:stream/promises", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 917, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "pipeline", + "ranges": [{ "startOffset": 318, "endOffset": 869, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "156", + "url": "node:internal/streams/transform", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 7123, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "Transform", + "ranges": [{ "startOffset": 3920, "endOffset": 5500, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "final", + "ranges": [{ "startOffset": 5502, "endOffset": 5946, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "prefinish", + "ranges": [{ "startOffset": 5948, "endOffset": 6029, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Transform._transform", + "ranges": [{ "startOffset": 6101, "endOffset": 6196, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Transform._write", + "ranges": [{ "startOffset": 6228, "endOffset": 6965, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Transform._read", + "ranges": [{ "startOffset": 6996, "endOffset": 7121, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "157", + "url": "node:internal/streams/passthrough", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1762, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "PassThrough", + "ranges": [{ "startOffset": 1529, "endOffset": 1671, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "PassThrough._transform", + "ranges": [{ "startOffset": 1708, "endOffset": 1760, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "158", + "url": "node:internal/streams/duplexpair", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1373, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 255, "endOffset": 272, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "DuplexSide", + "ranges": [{ "startOffset": 277, "endOffset": 379, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 383, "endOffset": 613, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_read", + "ranges": [{ "startOffset": 617, "endOffset": 742, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_write", + "ranges": [{ "startOffset": 746, "endOffset": 1035, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_final", + "ranges": [{ "startOffset": 1039, "endOffset": 1134, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "duplexPair", + "ranges": [{ "startOffset": 1138, "endOffset": 1343, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "159", + "url": "node:internal/bootstrap/switches/does_not_own_process_state", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1285, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "wrappedUmask", + "ranges": [{ "startOffset": 1054, "endOffset": 1284, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "160", + "url": "node:internal/process/worker_thread_only", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 433, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "unavailable", + "ranges": [{ "startOffset": 201, "endOffset": 394, "count": 8 }], + "isBlockCoverage": true + }, + { + "functionName": "unavailableInWorker", + "ranges": [{ "startOffset": 232, "endOffset": 322, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "161", + "url": "node:internal/main/worker_thread", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 9007, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1239, "endOffset": 1264, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2399, "endOffset": 7502, "count": 3 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3277, "endOffset": 3513, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6056, "endOffset": 6126, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6413, "endOffset": 6543, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6596, "endOffset": 6666, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 7204, "endOffset": 7281, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "workerOnGlobalUncaughtException", + "ranges": [{ "startOffset": 7506, "endOffset": 8698, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "162", + "url": "node:internal/process/pre_execution", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 24099, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "prepareMainThreadExecution", + "ranges": [{ "startOffset": 853, "endOffset": 1134, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "prepareTestRunnerMainExecution", + "ranges": [{ "startOffset": 1136, "endOffset": 1407, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "prepareWorkerThreadExecution", + "ranges": [{ "startOffset": 1409, "endOffset": 1745, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "prepareShadowRealmExecution", + "ranges": [{ "startOffset": 1747, "endOffset": 2842, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "prepareExecution", + "ranges": [{ "startOffset": 2844, "endOffset": 5151, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "setupVmModules", + "ranges": [{ "startOffset": 5153, "endOffset": 5652, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "setupHttpProxy", + "ranges": [{ "startOffset": 5654, "endOffset": 6628, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "initializeModuleLoaders", + "ranges": [{ "startOffset": 6630, "endOffset": 7949, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "refreshRuntimeOptions", + "ranges": [{ "startOffset": 7951, "endOffset": 8007, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "patchProcessObject", + "ranges": [{ "startOffset": 8457, "endOffset": 10794, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "addReadOnlyProcessAlias", + "ranges": [{ "startOffset": 10796, "endOffset": 11077, "count": 13 }], + "isBlockCoverage": false + }, + { + "functionName": "setupWarningHandler", + "ranges": [{ "startOffset": 11079, "endOffset": 11599, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 11483, "endOffset": 11585, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setupWebsocket", + "ranges": [{ "startOffset": 11640, "endOffset": 11795, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "setupEventsource", + "ranges": [{ "startOffset": 11863, "endOffset": 11988, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "setupNavigator", + "ranges": [{ "startOffset": 12092, "endOffset": 12493, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "setupSQLite", + "ranges": [{ "startOffset": 12495, "endOffset": 12702, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "initializeConfigFileSupport", + "ranges": [{ "startOffset": 12704, "endOffset": 12925, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "setupQuic", + "ranges": [{ "startOffset": 12927, "endOffset": 13126, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "setupWebStorage", + "ranges": [{ "startOffset": 13128, "endOffset": 13533, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "setupCodeCoverage", + "ranges": [{ "startOffset": 13535, "endOffset": 14056, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "setupStacktracePrinterOnSigint", + "ranges": [{ "startOffset": 14058, "endOffset": 14224, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "initializeReport", + "ranges": [{ "startOffset": 14226, "endOffset": 14475, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 14371, "endOffset": 14466, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setupDebugEnv", + "ranges": [{ "startOffset": 14477, "endOffset": 14708, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "initializeReportSignalHandlers", + "ranges": [{ "startOffset": 14770, "endOffset": 14958, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "initializeHeapSnapshotSignalHandlers", + "ranges": [{ "startOffset": 14960, "endOffset": 15694, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setupTraceCategoryState", + "ranges": [{ "startOffset": 15696, "endOffset": 15955, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "setupInspectorHooks", + "ranges": [{ "startOffset": 15957, "endOffset": 16539, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "setupNetworkInspection", + "ranges": [{ "startOffset": 16541, "endOffset": 16854, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "initializeDeprecations", + "ranges": [{ "startOffset": 17049, "endOffset": 18951, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "setupChildProcessIpcChannel", + "ranges": [{ "startOffset": 18953, "endOffset": 19470, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "initializeClusterIPC", + "ranges": [{ "startOffset": 19472, "endOffset": 19742, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "initializePermission", + "ranges": [{ "startOffset": 19744, "endOffset": 21540, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "binding", + "ranges": [{ "startOffset": 19873, "endOffset": 19960, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 21385, "endOffset": 21532, "count": 7 }], + "isBlockCoverage": false + }, + { + "functionName": "initializeSourceMapsHandlers", + "ranges": [{ "startOffset": 21542, "endOffset": 22048, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "initializeFrozenIntrinsics", + "ranges": [{ "startOffset": 22050, "endOffset": 22237, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "runEmbedderPreload", + "ranges": [{ "startOffset": 22239, "endOffset": 22342, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "loadPreloadModules", + "ranges": [{ "startOffset": 22344, "endOffset": 22692, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "markBootstrapComplete", + "ranges": [{ "startOffset": 22694, "endOffset": 22788, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "getHeapSnapshotFilename", + "ranges": [{ "startOffset": 22943, "endOffset": 23844, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "163", + "url": "node:internal/v8/startup_snapshot", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3760, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "isBuildingSnapshot", + "ranges": [{ "startOffset": 433, "endOffset": 504, "count": 5 }], + "isBlockCoverage": false + }, + { + "functionName": "throwIfNotBuildingSnapshot", + "ranges": [{ "startOffset": 506, "endOffset": 625, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "throwIfBuildingSnapshot", + "ranges": [{ "startOffset": 627, "endOffset": 758, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "runDeserializeCallbacks", + "ranges": [{ "startOffset": 831, "endOffset": 1004, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addDeserializeCallback", + "ranges": [{ "startOffset": 1006, "endOffset": 1541, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "runSerializeCallbacks", + "ranges": [{ "startOffset": 1656, "endOffset": 1972, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addSerializeCallback", + "ranges": [{ "startOffset": 1974, "endOffset": 2142, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addAfterUserSerializeCallback", + "ranges": [{ "startOffset": 2144, "endOffset": 2256, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "initializeCallbacks", + "ranges": [{ "startOffset": 2258, "endOffset": 2467, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "setDeserializeMainFunction", + "ranges": [{ "startOffset": 2503, "endOffset": 3450, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "164", + "url": "node:internal/worker/messaging", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 6680, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "handleMessageFromThread", + "ranges": [{ "startOffset": 1568, "endOffset": 2603, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "handleMessageFromMainThread", + "ranges": [{ "startOffset": 2605, "endOffset": 2827, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "sendMessageToWorker", + "ranges": [{ "startOffset": 2829, "endOffset": 3626, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "receiveMessageFromWorker", + "ranges": [{ "startOffset": 3628, "endOffset": 4186, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createMainThreadPort", + "ranges": [{ "startOffset": 4188, "endOffset": 4737, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "destroyMainThreadPort", + "ranges": [{ "startOffset": 4739, "endOffset": 5033, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setupMainThreadPort", + "ranges": [{ "startOffset": 5035, "endOffset": 5228, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "postMessageToThread", + "ranges": [{ "startOffset": 5230, "endOffset": 6561, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "165", + "url": "node:internal/inspector_async_hook", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1645, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "lazyHookCreation", + "ranges": [{ "startOffset": 38, "endOffset": 929, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "enable", + "ranges": [{ "startOffset": 931, "endOffset": 1512, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "disable", + "ranges": [{ "startOffset": 1514, "endOffset": 1600, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "166", + "url": "node:internal/dns/utils", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 10116, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "lazyBinding", + "ranges": [{ "startOffset": 602, "endOffset": 691, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "validateTimeout", + "ranges": [{ "startOffset": 946, "endOffset": 1093, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "validateMaxTimeout", + "ranges": [{ "startOffset": 1095, "endOffset": 1253, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "validateTries", + "ranges": [{ "startOffset": 1255, "endOffset": 1390, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ResolverBase", + "ranges": [{ "startOffset": 1785, "endOffset": 2210, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2214, "endOffset": 2374, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cancel", + "ranges": [{ "startOffset": 2378, "endOffset": 2419, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getServers", + "ranges": [{ "startOffset": 2423, "endOffset": 2691, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setServers", + "ranges": [{ "startOffset": 2695, "endOffset": 4097, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4101, "endOffset": 4720, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setLocalAddress", + "ranges": [{ "startOffset": 4725, "endOffset": 5010, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5130, "endOffset": 5350, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5354, "endOffset": 5727, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "initializeDns", + "ranges": [{ "startOffset": 5863, "endOffset": 6320, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6260, "endOffset": 6316, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getDefaultResolver", + "ranges": [{ "startOffset": 6598, "endOffset": 6879, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setDefaultResolver", + "ranges": [{ "startOffset": 6881, "endOffset": 6952, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "bindDefaultResolver", + "ranges": [{ "startOffset": 6954, "endOffset": 7176, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "validateHints", + "ranges": [{ "startOffset": 7178, "endOffset": 7397, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "emitInvalidHostnameWarning", + "ranges": [{ "startOffset": 7442, "endOffset": 7796, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setDefaultResultOrder", + "ranges": [{ "startOffset": 7798, "endOffset": 7911, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getDefaultResultOrder", + "ranges": [{ "startOffset": 7913, "endOffset": 7968, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createResolverClass", + "ranges": [{ "startOffset": 7970, "endOffset": 9154, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "167", + "url": "node:internal/net", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2984, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "isIPv4", + "ranges": [{ "startOffset": 1086, "endOffset": 1359, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isIPv6", + "ranges": [{ "startOffset": 1412, "endOffset": 1685, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isIP", + "ranges": [{ "startOffset": 1736, "endOffset": 1822, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "makeSyncWrite", + "ranges": [{ "startOffset": 1824, "endOffset": 2235, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isLoopback", + "ranges": [{ "startOffset": 2575, "endOffset": 2797, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "168", + "url": "node:worker_threads", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1005, "count": 1 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "169", + "url": "node:internal/worker", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 19911, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2631, "endOffset": 2656, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "process.chdir", + "ranges": [{ "startOffset": 2960, "endOffset": 3039, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setEnvironmentData", + "ranges": [{ "startOffset": 3044, "endOffset": 3191, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getEnvironmentData", + "ranges": [{ "startOffset": 3193, "endOffset": 3264, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "assignEnvironmentData", + "ranges": [ + { "startOffset": 3266, "endOffset": 3416, "count": 1 }, + { "startOffset": 3331, "endOffset": 3338, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3354, "endOffset": 3412, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3445, "endOffset": 3492, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "CPUProfileHandle", + "ranges": [{ "startOffset": 3497, "endOffset": 3572, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stop", + "ranges": [{ "startOffset": 3576, "endOffset": 3994, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3999, "endOffset": 4056, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4088, "endOffset": 4121, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "HeapProfileHandle", + "ranges": [{ "startOffset": 4126, "endOffset": 4178, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stop", + "ranges": [{ "startOffset": 4182, "endOffset": 4593, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4598, "endOffset": 4655, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Worker", + "ranges": [{ "startOffset": 4697, "endOffset": 10414, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 10418, "endOffset": 11092, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 11096, "endOffset": 11192, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 11196, "endOffset": 11365, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 11369, "endOffset": 12344, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 12348, "endOffset": 12816, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "postMessage", + "ranges": [{ "startOffset": 12820, "endOffset": 12965, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "terminate", + "ranges": [{ "startOffset": 12969, "endOffset": 13803, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 13807, "endOffset": 13869, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ref", + "ranges": [{ "startOffset": 13873, "endOffset": 13979, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "unref", + "ranges": [{ "startOffset": 13983, "endOffset": 14095, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get threadId", + "ranges": [{ "startOffset": 14099, "endOffset": 14198, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get threadName", + "ranges": [{ "startOffset": 14202, "endOffset": 14307, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get stdin", + "ranges": [{ "startOffset": 14311, "endOffset": 14369, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get stdout", + "ranges": [{ "startOffset": 14373, "endOffset": 14433, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get stderr", + "ranges": [{ "startOffset": 14437, "endOffset": 14497, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get resourceLimits", + "ranges": [{ "startOffset": 14501, "endOffset": 14637, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getHeapSnapshot", + "ranges": [{ "startOffset": 14641, "endOffset": 15148, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getHeapStatistics", + "ranges": [{ "startOffset": 15152, "endOffset": 15418, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cpuUsage", + "ranges": [{ "startOffset": 15422, "endOffset": 16338, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "startCpuProfile", + "ranges": [{ "startOffset": 16419, "endOffset": 16779, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "startHeapProfile", + "ranges": [{ "startOffset": 16783, "endOffset": 17138, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "InternalWorker", + "ranges": [{ "startOffset": 17331, "endOffset": 17410, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "receiveMessageSync", + "ranges": [{ "startOffset": 17414, "endOffset": 17492, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pipeWithoutWarning", + "ranges": [{ "startOffset": 17496, "endOffset": 17818, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseResourceLimits", + "ranges": [{ "startOffset": 17892, "endOffset": 18506, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "makeResourceLimits", + "ranges": [{ "startOffset": 18508, "endOffset": 18795, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "eventLoopUtilization", + "ranges": [{ "startOffset": 18797, "endOffset": 19600, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "170", + "url": "node:internal/perf/event_loop_utilization", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1527, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "eventLoopUtilization", + "ranges": [{ "startOffset": 153, "endOffset": 446, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "internalEventLoopUtilization", + "ranges": [{ "startOffset": 448, "endOffset": 1447, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "171", + "url": "node:internal/error_serdes", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 6023, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "TryGetAllProperties", + "ranges": [{ "startOffset": 1067, "endOffset": 2210, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "GetConstructors", + "ranges": [{ "startOffset": 2212, "endOffset": 2648, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "GetName", + "ranges": [{ "startOffset": 2650, "endOffset": 2763, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inspect", + "ranges": [{ "startOffset": 2790, "endOffset": 2926, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "serializeError", + "ranges": [{ "startOffset": 2943, "endOffset": 4399, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fromBuffer", + "ranges": [{ "startOffset": 4401, "endOffset": 4622, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "deserializeError", + "ranges": [{ "startOffset": 4641, "endOffset": 5966, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "172", + "url": "node:internal/locks", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 8340, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "defaultValue", + "ranges": [{ "startOffset": 1044, "endOffset": 1061, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "converter", + "ranges": [{ "startOffset": 1111, "endOffset": 1129, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "defaultValue", + "ranges": [{ "startOffset": 1149, "endOffset": 1160, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "converter", + "ranges": [{ "startOffset": 1204, "endOffset": 1222, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "defaultValue", + "ranges": [{ "startOffset": 1242, "endOffset": 1253, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Lock", + "ranges": [{ "startOffset": 1387, "endOffset": 1570, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get name", + "ranges": [{ "startOffset": 1574, "endOffset": 1694, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get mode", + "ranges": [{ "startOffset": 1698, "endOffset": 1818, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createLock", + "ranges": [{ "startOffset": 2125, "endOffset": 2266, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "convertLockError", + "ranges": [{ "startOffset": 2324, "endOffset": 2504, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "LockManager", + "ranges": [ + { "startOffset": 2581, "endOffset": 2711, "count": 1 }, + { "startOffset": 2657, "endOffset": 2707, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "request", + "ranges": [{ "startOffset": 3591, "endOffset": 7592, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "query", + "ranges": [{ "startOffset": 7843, "endOffset": 7982, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "173", + "url": "node:internal/modules/cjs/loader", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 72050, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5438, "endOffset": 5481, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6206, "endOffset": 6265, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6354, "endOffset": 6392, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "wrapModuleLoad", + "ranges": [{ "startOffset": 6648, "endOffset": 7335, "count": 11 }], + "isBlockCoverage": false + }, + { + "functionName": "stat", + "ranges": [{ "startOffset": 7494, "endOffset": 8053, "count": 10 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 8134, "endOffset": 8157, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 8161, "endOffset": 8256, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "updateChildren", + "ranges": [{ "startOffset": 8563, "endOffset": 8765, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "reportModuleToWatchMode", + "ranges": [{ "startOffset": 8901, "endOffset": 9057, "count": 11 }], + "isBlockCoverage": false + }, + { + "functionName": "reportModuleNotFoundToWatchMode", + "ranges": [{ "startOffset": 9260, "endOffset": 9499, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9446, "endOffset": 9488, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Module", + "ranges": [{ "startOffset": 9609, "endOffset": 9913, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "wrap", + "ranges": [{ "startOffset": 10436, "endOffset": 10547, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 10713, "endOffset": 10835, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "defineProperty", + "ranges": [{ "startOffset": 10840, "endOffset": 10973, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 11040, "endOffset": 11068, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 11073, "endOffset": 11127, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 11197, "endOffset": 11233, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 11238, "endOffset": 11300, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 11334, "endOffset": 11364, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getModuleParent", + "ranges": [{ "startOffset": 11627, "endOffset": 11692, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setModuleParent", + "ranges": [{ "startOffset": 11818, "endOffset": 11889, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 11922, "endOffset": 11947, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "initializeCJS", + "ranges": [{ "startOffset": 12686, "endOffset": 13285, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 12943, "endOffset": 12967, "count": 73 }], + "isBlockCoverage": false + }, + { + "functionName": "_readPackage", + "ranges": [{ "startOffset": 13532, "endOffset": 13614, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 13684, "endOffset": 13714, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 13718, "endOffset": 13841, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "tryPackage", + "ranges": [{ "startOffset": 14240, "endOffset": 15438, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "tryFile", + "ranges": [{ "startOffset": 15830, "endOffset": 16093, "count": 3 }], + "isBlockCoverage": false + }, + { + "functionName": "tryExtensions", + "ranges": [{ "startOffset": 16385, "endOffset": 16605, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "findLongestRegisteredExtension", + "ranges": [{ "startOffset": 16810, "endOffset": 17286, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "trySelfParentPath", + "ranges": [{ "startOffset": 17441, "endOffset": 17734, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "trySelf", + "ranges": [{ "startOffset": 18000, "endOffset": 18914, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "resolveExports", + "ranges": [{ "startOffset": 19366, "endOffset": 20188, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 20481, "endOffset": 24100, "count": 3 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 24459, "endOffset": 26024, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 26227, "endOffset": 27415, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 27578, "endOffset": 28865, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "emitCircularRequireWarning", + "ranges": [{ "startOffset": 29066, "endOffset": 29250, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 29463, "endOffset": 29839, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getOwnPropertyDescriptor", + "ranges": [{ "startOffset": 29844, "endOffset": 30093, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getExportsForCircularRequire", + "ranges": [{ "startOffset": 30361, "endOffset": 31365, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolveForCJSWithHooks", + "ranges": [{ "startOffset": 31695, "endOffset": 34856, "count": 11 }], + "isBlockCoverage": false + }, + { + "functionName": "defaultResolveImpl", + "ranges": [{ "startOffset": 31853, "endOffset": 32559, "count": 11 }], + "isBlockCoverage": false + }, + { + "functionName": "defaultResolve", + "ranges": [{ "startOffset": 33148, "endOffset": 34217, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "defaultLoadImpl", + "ranges": [{ "startOffset": 35261, "endOffset": 35791, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "getDefaultLoad", + "ranges": [{ "startOffset": 36060, "endOffset": 36656, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "loadBuiltinWithHooks", + "ranges": [{ "startOffset": 37209, "endOffset": 38223, "count": 10 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 38989, "endOffset": 44507, "count": 11 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 45072, "endOffset": 48098, "count": 12 }], + "isBlockCoverage": false + }, + { + "functionName": "finalizeEsmResolution", + "ranges": [{ "startOffset": 48561, "endOffset": 49058, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createEsmNotFoundErr", + "ranges": [{ "startOffset": 49282, "endOffset": 49578, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getExtensionForFormat", + "ranges": [{ "startOffset": 49580, "endOffset": 49758, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 49926, "endOffset": 50633, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 50855, "endOffset": 51156, "count": 10 }], + "isBlockCoverage": false + }, + { + "functionName": "loadESMFromCJS", + "ranges": [{ "startOffset": 51565, "endOffset": 54258, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "populateCJSExportsFromESM", + "ranges": [{ "startOffset": 54524, "endOffset": 56606, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "wrapSafe", + "ranges": [{ "startOffset": 56979, "endOffset": 59004, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 59473, "endOffset": 61205, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "loadSource", + "ranges": [{ "startOffset": 61630, "endOffset": 62695, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "reconstructErrorStack", + "ranges": [{ "startOffset": 62697, "endOffset": 63226, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getRequireESMError", + "ranges": [{ "startOffset": 63577, "endOffset": 64505, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 64684, "endOffset": 66271, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 66453, "endOffset": 66715, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 66915, "endOffset": 67052, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createRequireFromPath", + "ranges": [{ "startOffset": 67222, "endOffset": 67846, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createRequire", + "ranges": [{ "startOffset": 68298, "endOffset": 69111, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isRelative", + "ranges": [{ "startOffset": 69261, "endOffset": 69602, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 69722, "endOffset": 70687, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 70821, "endOffset": 71409, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "syncBuiltinESMExports", + "ranges": [{ "startOffset": 71609, "endOffset": 71790, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 71875, "endOffset": 71910, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "174", + "url": "node:internal/modules/customization_hooks", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 13456, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 679, "endOffset": 704, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ModuleHooks", + "ranges": [{ "startOffset": 1757, "endOffset": 2144, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "deregister", + "ranges": [{ "startOffset": 2512, "endOffset": 2885, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "registerHooks", + "ranges": [{ "startOffset": 3058, "endOffset": 3296, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "convertCJSFilenameToURL", + "ranges": [{ "startOffset": 3355, "endOffset": 3891, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "convertURLToCJSFilename", + "ranges": [{ "startOffset": 3945, "endOffset": 4221, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "buildHooks", + "ranges": [{ "startOffset": 4895, "endOffset": 6448, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "validateResolve", + "ranges": [{ "startOffset": 7104, "endOffset": 7834, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "validateLoadStrict", + "ranges": [{ "startOffset": 8398, "endOffset": 8554, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "validateLoadSloppy", + "ranges": [{ "startOffset": 8556, "endOffset": 8716, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "validateSourceStrict", + "ranges": [{ "startOffset": 8718, "endOffset": 9393, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "validateSourcePermissive", + "ranges": [{ "startOffset": 9395, "endOffset": 9807, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "validateFormat", + "ranges": [{ "startOffset": 9809, "endOffset": 10069, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ModuleResolveContext", + "ranges": [{ "startOffset": 10325, "endOffset": 10574, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ModuleLoadContext", + "ranges": [{ "startOffset": 10817, "endOffset": 10978, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "loadWithHooks", + "ranges": [{ "startOffset": 11458, "endOffset": 12406, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolveWithHooks", + "ranges": [{ "startOffset": 12779, "endOffset": 13251, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "175", + "url": "node:internal/modules/package_json_reader", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 10998, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "deserializePackageJSON", + "ranges": [{ "startOffset": 1133, "endOffset": 2579, "count": 3 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1877, "endOffset": 2103, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2272, "endOffset": 2498, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "requiresJSONParse", + "ranges": [{ "startOffset": 2830, "endOffset": 2904, "count": 3 }], + "isBlockCoverage": false + }, + { + "functionName": "read", + "ranges": [{ "startOffset": 3139, "endOffset": 3685, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "getNearestParentPackageJSON", + "ranges": [{ "startOffset": 4761, "endOffset": 5493, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "getPackageScopeConfig", + "ranges": [{ "startOffset": 5721, "endOffset": 6241, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getPackageType", + "ranges": [{ "startOffset": 6376, "endOffset": 6489, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parsePackageName", + "ranges": [{ "startOffset": 6719, "endOffset": 7777, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getPackageJSONURL", + "ranges": [{ "startOffset": 7779, "endOffset": 9096, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "findPackageJSON", + "ranges": [{ "startOffset": 9384, "endOffset": 10852, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "176", + "url": "node:internal/modules/run_main", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 6356, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "resolveMainPath", + "ranges": [{ "startOffset": 749, "endOffset": 1347, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "shouldUseESMLoader", + "ranges": [{ "startOffset": 1530, "endOffset": 2844, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "asyncRunEntryPointWithESMLoader", + "ranges": [{ "startOffset": 2919, "endOffset": 3672, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "runEntryPointWithESMLoader", + "ranges": [{ "startOffset": 4056, "endOffset": 4469, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "executeUserEntryPoint", + "ranges": [{ "startOffset": 5151, "endOffset": 6277, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6019, "endOffset": 6269, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "177", + "url": "node:internal/modules/esm/utils", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 13208, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "getDefaultConditions", + "ranges": [{ "startOffset": 1170, "endOffset": 1276, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getDefaultConditionsSet", + "ranges": [{ "startOffset": 1429, "endOffset": 1544, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "initializeDefaultConditions", + "ranges": [{ "startOffset": 1713, "endOffset": 2218, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "getConditionsSet", + "ranges": [{ "startOffset": 2288, "endOffset": 2647, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "registerModule", + "ranges": [{ "startOffset": 4963, "endOffset": 5625, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "defaultInitializeImportMetaForModule", + "ranges": [{ "startOffset": 5932, "endOffset": 6182, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "initializeImportMetaObject", + "ranges": [{ "startOffset": 6496, "endOffset": 6951, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "defaultImportModuleDynamicallyForModule", + "ranges": [{ "startOffset": 7414, "endOffset": 7683, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "defaultImportModuleDynamicallyForScript", + "ranges": [{ "startOffset": 8133, "endOffset": 8455, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "importModuleDynamicallyCallback", + "ranges": [{ "startOffset": 9140, "endOffset": 10699, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "initializeESM", + "ranges": [{ "startOffset": 10902, "endOffset": 11314, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "shouldSpawnLoaderHookWorker", + "ranges": [{ "startOffset": 11457, "endOffset": 11538, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "compileSourceTextModule", + "ranges": [{ "startOffset": 12077, "endOffset": 12643, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "178", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/tsx/node_modules/esbuild/lib/main.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 97214, "count": 1 }, + { "startOffset": 5563, "endOffset": 5894, "count": 0 }, + { "startOffset": 5942, "endOffset": 6270, "count": 0 }, + { "startOffset": 82246, "endOffset": 82257, "count": 0 }, + { "startOffset": 82386, "endOffset": 82400, "count": 0 }, + { "startOffset": 82418, "endOffset": 82432, "count": 0 }, + { "startOffset": 82437, "endOffset": 82471, "count": 0 }, + { "startOffset": 82541, "endOffset": 82549, "count": 0 }, + { "startOffset": 82587, "endOffset": 82595, "count": 0 }, + { "startOffset": 97010, "endOffset": 97212, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 300, "endOffset": 411, "count": 1 }, + { "startOffset": 347, "endOffset": 409, "count": 13 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 431, "endOffset": 777, "count": 1 }, + { "startOffset": 500, "endOffset": 529, "count": 0 }, + { "startOffset": 584, "endOffset": 758, "count": 13 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 669, "endOffset": 684, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toESM", + "ranges": [{ "startOffset": 793, "endOffset": 1302, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 1323, "endOffset": 1394, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "analyzeMetafile", + "ranges": [{ "startOffset": 1483, "endOffset": 1504, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "analyzeMetafileSync", + "ranges": [{ "startOffset": 1529, "endOffset": 1554, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "build", + "ranges": [{ "startOffset": 1565, "endOffset": 1576, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "buildSync", + "ranges": [{ "startOffset": 1591, "endOffset": 1606, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "context", + "ranges": [{ "startOffset": 1619, "endOffset": 1632, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default", + "ranges": [{ "startOffset": 1645, "endOffset": 1663, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "formatMessages", + "ranges": [{ "startOffset": 1683, "endOffset": 1703, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "formatMessagesSync", + "ranges": [{ "startOffset": 1727, "endOffset": 1751, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "initialize", + "ranges": [{ "startOffset": 1767, "endOffset": 1783, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stop", + "ranges": [{ "startOffset": 1793, "endOffset": 1803, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transform", + "ranges": [{ "startOffset": 1818, "endOffset": 1833, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformSync", + "ranges": [{ "startOffset": 1852, "endOffset": 1871, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "version", + "ranges": [{ "startOffset": 1884, "endOffset": 1897, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "encodePacket", + "ranges": [{ "startOffset": 1980, "endOffset": 3020, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "visit", + "ranges": [ + { "startOffset": 2026, "endOffset": 2820, "count": 55 }, + { "startOffset": 2063, "endOffset": 2090, "count": 0 }, + { "startOffset": 2128, "endOffset": 2180, "count": 3 }, + { "startOffset": 2180, "endOffset": 2816, "count": 52 }, + { "startOffset": 2217, "endOffset": 2273, "count": 0 }, + { "startOffset": 2310, "endOffset": 2372, "count": 43 }, + { "startOffset": 2372, "endOffset": 2816, "count": 9 }, + { "startOffset": 2411, "endOffset": 2461, "count": 3 }, + { "startOffset": 2461, "endOffset": 2816, "count": 6 }, + { "startOffset": 2495, "endOffset": 2615, "count": 3 }, + { "startOffset": 2579, "endOffset": 2609, "count": 40 }, + { "startOffset": 2615, "endOffset": 2816, "count": 3 }, + { "startOffset": 2739, "endOffset": 2810, "count": 12 } + ], + "isBlockCoverage": true + }, + { + "functionName": "decodePacket", + "ranges": [ + { "startOffset": 3021, "endOffset": 4018, "count": 3 }, + { "startOffset": 3937, "endOffset": 3981, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "visit", + "ranges": [ + { "startOffset": 3066, "endOffset": 3776, "count": 21 }, + { "startOffset": 3106, "endOffset": 3134, "count": 0 }, + { "startOffset": 3141, "endOffset": 3177, "count": 6 }, + { "startOffset": 3184, "endOffset": 3219, "count": 0 }, + { "startOffset": 3226, "endOffset": 3271, "count": 6 }, + { "startOffset": 3278, "endOffset": 3311, "count": 0 }, + { "startOffset": 3318, "endOffset": 3500, "count": 6 }, + { "startOffset": 3426, "endOffset": 3469, "count": 0 }, + { "startOffset": 3507, "endOffset": 3708, "count": 3 }, + { "startOffset": 3615, "endOffset": 3677, "count": 18 }, + { "startOffset": 3715, "endOffset": 3766, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "ByteBuffer", + "ranges": [{ "startOffset": 4046, "endOffset": 4147, "count": 6 }], + "isBlockCoverage": true + }, + { + "functionName": "_write", + "ranges": [ + { "startOffset": 4150, "endOffset": 4382, "count": 128 }, + { "startOffset": 4210, "endOffset": 4326, "count": 4 } + ], + "isBlockCoverage": true + }, + { + "functionName": "write8", + "ranges": [{ "startOffset": 4385, "endOffset": 4467, "count": 58 }], + "isBlockCoverage": true + }, + { + "functionName": "write32", + "ranges": [{ "startOffset": 4470, "endOffset": 4567, "count": 12 }], + "isBlockCoverage": true + }, + { + "functionName": "write", + "ranges": [{ "startOffset": 4570, "endOffset": 4724, "count": 58 }], + "isBlockCoverage": true + }, + { + "functionName": "_read", + "ranges": [ + { "startOffset": 4727, "endOffset": 4890, "count": 87 }, + { "startOffset": 4786, "endOffset": 4834, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "read8", + "ranges": [{ "startOffset": 4893, "endOffset": 4942, "count": 27 }], + "isBlockCoverage": true + }, + { + "functionName": "read32", + "ranges": [{ "startOffset": 4945, "endOffset": 5009, "count": 36 }], + "isBlockCoverage": true + }, + { + "functionName": "read", + "ranges": [{ "startOffset": 5012, "endOffset": 5207, "count": 24 }], + "isBlockCoverage": true + }, + { + "functionName": "encodeUTF8", + "ranges": [{ "startOffset": 5429, "endOffset": 5459, "count": 59 }], + "isBlockCoverage": true + }, + { + "functionName": "decodeUTF8", + "ranges": [{ "startOffset": 5476, "endOffset": 5508, "count": 24 }], + "isBlockCoverage": true + }, + { + "functionName": "encodeUTF8", + "ranges": [{ "startOffset": 5621, "endOffset": 5648, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "decodeUTF8", + "ranges": [{ "startOffset": 5665, "endOffset": 5800, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readUInt32LE", + "ranges": [{ "startOffset": 6271, "endOffset": 6421, "count": 40 }], + "isBlockCoverage": true + }, + { + "functionName": "writeUInt32LE", + "ranges": [{ "startOffset": 6422, "endOffset": 6600, "count": 73 }], + "isBlockCoverage": true + }, + { + "functionName": "throwSyntaxError", + "ranges": [{ "startOffset": 6682, "endOffset": 7296, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "JSON_parse", + "ranges": [{ "startOffset": 7297, "endOffset": 14928, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "validateAndJoinStringArray", + "ranges": [ + { "startOffset": 15061, "endOffset": 15339, "count": 3 }, + { "startOffset": 15237, "endOffset": 15282, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "canBeAnything", + "ranges": [{ "startOffset": 15360, "endOffset": 15370, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mustBeBoolean", + "ranges": [ + { "startOffset": 15392, "endOffset": 15450, "count": 9 }, + { "startOffset": 15437, "endOffset": 15450, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "mustBeString", + "ranges": [ + { "startOffset": 15471, "endOffset": 15527, "count": 18 }, + { "startOffset": 15515, "endOffset": 15527, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "mustBeRegExp", + "ranges": [{ "startOffset": 15548, "endOffset": 15609, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mustBeInteger", + "ranges": [{ "startOffset": 15631, "endOffset": 15714, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mustBeValidPortNumber", + "ranges": [{ "startOffset": 15744, "endOffset": 15868, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mustBeFunction", + "ranges": [{ "startOffset": 15891, "endOffset": 15951, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mustBeArray", + "ranges": [{ "startOffset": 15971, "endOffset": 16022, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mustBeArrayOfStrings", + "ranges": [{ "startOffset": 16051, "endOffset": 16158, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mustBeObject", + "ranges": [{ "startOffset": 16179, "endOffset": 16279, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mustBeEntryPoints", + "ranges": [{ "startOffset": 16305, "endOffset": 16392, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mustBeWebAssemblyModule", + "ranges": [{ "startOffset": 16424, "endOffset": 16502, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mustBeObjectOrNull", + "ranges": [{ "startOffset": 16529, "endOffset": 16619, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mustBeStringOrBoolean", + "ranges": [ + { "startOffset": 16649, "endOffset": 16748, "count": 3 }, + { "startOffset": 16723, "endOffset": 16748, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "mustBeStringOrObject", + "ranges": [ + { "startOffset": 16777, "endOffset": 16918, "count": 1 }, + { "startOffset": 16893, "endOffset": 16918, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "mustBeStringOrArrayOfStrings", + "ranges": [ + { "startOffset": 16955, "endOffset": 17103, "count": 3 }, + { "startOffset": 16992, "endOffset": 17060, "count": 0 }, + { "startOffset": 17068, "endOffset": 17103, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 17031, "endOffset": 17059, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mustBeStringOrUint8Array", + "ranges": [{ "startOffset": 17136, "endOffset": 17239, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mustBeStringOrURL", + "ranges": [{ "startOffset": 17265, "endOffset": 17354, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getFlag", + "ranges": [ + { "startOffset": 17356, "endOffset": 17619, "count": 126 }, + { "startOffset": 17480, "endOffset": 17494, "count": 92 }, + { "startOffset": 17494, "endOffset": 17550, "count": 34 }, + { "startOffset": 17550, "endOffset": 17601, "count": 0 }, + { "startOffset": 17601, "endOffset": 17618, "count": 34 } + ], + "isBlockCoverage": true + }, + { + "functionName": "checkForInvalidFlags", + "ranges": [ + { "startOffset": 17620, "endOffset": 17803, "count": 3 }, + { "startOffset": 17699, "endOffset": 17801, "count": 36 }, + { "startOffset": 17725, "endOffset": 17797, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "validateInitializeOptions", + "ranges": [{ "startOffset": 17804, "endOffset": 18236, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "validateMangleCache", + "ranges": [ + { "startOffset": 18237, "endOffset": 18700, "count": 3 }, + { "startOffset": 18328, "endOffset": 18678, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "pushLogFlags", + "ranges": [ + { "startOffset": 18701, "endOffset": 19179, "count": 3 }, + { "startOffset": 18993, "endOffset": 19024, "count": 0 }, + { "startOffset": 19044, "endOffset": 19071, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "validateStringValue", + "ranges": [ + { "startOffset": 19180, "endOffset": 19421, "count": 3 }, + { "startOffset": 19262, "endOffset": 19403, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "pushCommonFlags", + "ranges": [ + { "startOffset": 19422, "endOffset": 24829, "count": 3 }, + { "startOffset": 21899, "endOffset": 21947, "count": 0 }, + { "startOffset": 21977, "endOffset": 22019, "count": 0 }, + { "startOffset": 22190, "endOffset": 22198, "count": 0 }, + { "startOffset": 22291, "endOffset": 22333, "count": 0 }, + { "startOffset": 22407, "endOffset": 22515, "count": 1 }, + { "startOffset": 22468, "endOffset": 22481, "count": 0 }, + { "startOffset": 22530, "endOffset": 22553, "count": 0 }, + { "startOffset": 22574, "endOffset": 22604, "count": 0 }, + { "startOffset": 22689, "endOffset": 22724, "count": 0 }, + { "startOffset": 22742, "endOffset": 22782, "count": 0 }, + { "startOffset": 22798, "endOffset": 22833, "count": 0 }, + { "startOffset": 22864, "endOffset": 22908, "count": 0 }, + { "startOffset": 22934, "endOffset": 22969, "count": 0 }, + { "startOffset": 22982, "endOffset": 23063, "count": 0 }, + { "startOffset": 23082, "endOffset": 23166, "count": 0 }, + { "startOffset": 23183, "endOffset": 23262, "count": 0 }, + { "startOffset": 23282, "endOffset": 23346, "count": 0 }, + { "startOffset": 23367, "endOffset": 23433, "count": 0 }, + { "startOffset": 23465, "endOffset": 23511, "count": 0 }, + { "startOffset": 23523, "endOffset": 23550, "count": 0 }, + { "startOffset": 23569, "endOffset": 23611, "count": 0 }, + { "startOffset": 23631, "endOffset": 23675, "count": 0 }, + { "startOffset": 23699, "endOffset": 23752, "count": 0 }, + { "startOffset": 23767, "endOffset": 23791, "count": 0 }, + { "startOffset": 23814, "endOffset": 23847, "count": 0 }, + { "startOffset": 23862, "endOffset": 24067, "count": 0 }, + { "startOffset": 24087, "endOffset": 24320, "count": 0 }, + { "startOffset": 24338, "endOffset": 24692, "count": 0 }, + { "startOffset": 24705, "endOffset": 24782, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "flagsForBuildOptions", + "ranges": [{ "startOffset": 24830, "endOffset": 32243, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "flagsForTransformOptions", + "ranges": [ + { "startOffset": 32244, "endOffset": 33344, "count": 3 }, + { "startOffset": 33046, "endOffset": 33057, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "createChannel", + "ranges": [{ "startOffset": 33345, "endOffset": 42770, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "readFromStdout", + "ranges": [ + { "startOffset": 33635, "endOffset": 34289, "count": 4 }, + { "startOffset": 33722, "endOffset": 33818, "count": 1 }, + { "startOffset": 34038, "endOffset": 34062, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "afterClose", + "ranges": [{ "startOffset": 34310, "endOffset": 34602, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "sendRequest", + "ranges": [ + { "startOffset": 34624, "endOffset": 35054, "count": 3 }, + { "startOffset": 34681, "endOffset": 34758, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "responseCallbacks.", + "ranges": [{ "startOffset": 34817, "endOffset": 34950, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "sendResponse", + "ranges": [{ "startOffset": 35077, "endOffset": 35271, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "handleRequest", + "ranges": [{ "startOffset": 35295, "endOffset": 35998, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "handleIncomingPacket", + "ranges": [ + { "startOffset": 36057, "endOffset": 36713, "count": 4 }, + { "startOffset": 36093, "endOffset": 36379, "count": 1 }, + { "startOffset": 36219, "endOffset": 36359, "count": 0 }, + { "startOffset": 36379, "endOffset": 36444, "count": 3 }, + { "startOffset": 36444, "endOffset": 36497, "count": 0 }, + { "startOffset": 36497, "endOffset": 36709, "count": 3 }, + { "startOffset": 36629, "endOffset": 36662, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "buildOrContext", + "ranges": [{ "startOffset": 36738, "endOffset": 37610, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transform2", + "ranges": [ + { "startOffset": 37631, "endOffset": 40750, "count": 3 }, + { "startOffset": 40587, "endOffset": 40617, "count": 0 }, + { "startOffset": 40650, "endOffset": 40729, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "start", + "ranges": [ + { "startOffset": 37764, "endOffset": 40550, "count": 3 }, + { "startOffset": 37831, "endOffset": 37864, "count": 0 }, + { "startOffset": 37876, "endOffset": 37953, "count": 0 }, + { "startOffset": 38246, "endOffset": 38269, "count": 0 }, + { "startOffset": 38318, "endOffset": 38325, "count": 0 }, + { "startOffset": 38362, "endOffset": 38396, "count": 0 }, + { "startOffset": 40087, "endOffset": 40544, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 38432, "endOffset": 40076, "count": 3 }, + { "startOffset": 38476, "endOffset": 38516, "count": 0 }, + { "startOffset": 39320, "endOffset": 39401, "count": 0 }, + { "startOffset": 39433, "endOffset": 39726, "count": 0 }, + { "startOffset": 39757, "endOffset": 40048, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "next", + "ranges": [ + { "startOffset": 38723, "endOffset": 39285, "count": 3 }, + { "startOffset": 39036, "endOffset": 39110, "count": 0 }, + { "startOffset": 39151, "endOffset": 39221, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 39502, "endOffset": 39712, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 39825, "endOffset": 40034, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 40384, "endOffset": 40534, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "start", + "ranges": [{ "startOffset": 40690, "endOffset": 40722, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "formatMessages2", + "ranges": [{ "startOffset": 40776, "endOffset": 41880, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "analyzeMetafile2", + "ranges": [{ "startOffset": 41907, "endOffset": 42564, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "buildOrContextImpl", + "ranges": [{ "startOffset": 42771, "endOffset": 52174, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "handlePlugins", + "ranges": [{ "startOffset": 52195, "endOffset": 66576, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createObjectStash", + "ranges": [{ "startOffset": 66578, "endOffset": 66907, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "clear", + "ranges": [{ "startOffset": 66683, "endOffset": 66717, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "load", + "ranges": [{ "startOffset": 66723, "endOffset": 66765, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "store", + "ranges": [{ "startOffset": 66771, "endOffset": 66900, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "extractCallerV8", + "ranges": [{ "startOffset": 66908, "endOffset": 67320, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "extractErrorMessageV8", + "ranges": [{ "startOffset": 67321, "endOffset": 67723, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseStackLinesV8", + "ranges": [{ "startOffset": 67724, "endOffset": 69220, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "failureErrorWithLog", + "ranges": [{ "startOffset": 69221, "endOffset": 70120, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "replaceDetailsInMessages", + "ranges": [ + { "startOffset": 70121, "endOffset": 70283, "count": 6 }, + { "startOffset": 70208, "endOffset": 70262, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "sanitizeLocation", + "ranges": [{ "startOffset": 70284, "endOffset": 71441, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "sanitizeMessages", + "ranges": [{ "startOffset": 71442, "endOffset": 72904, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "sanitizeStringArray", + "ranges": [{ "startOffset": 72905, "endOffset": 73155, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "sanitizeStringMap", + "ranges": [{ "startOffset": 73156, "endOffset": 73475, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "convertOutputFiles", + "ranges": [{ "startOffset": 73476, "endOffset": 73814, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "jsRegExpToGoRegExp", + "ranges": [{ "startOffset": 73815, "endOffset": 73961, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseJSON", + "ranges": [{ "startOffset": 73962, "endOffset": 74114, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isValidBinaryPath", + "ranges": [ + { "startOffset": 74326, "endOffset": 74364, "count": 1 }, + { "startOffset": 74337, "endOffset": 74364, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "pkgAndSubpathForCurrentPlatform", + "ranges": [ + { "startOffset": 75728, "endOffset": 76424, "count": 1 }, + { "startOffset": 75939, "endOffset": 76018, "count": 0 }, + { "startOffset": 76146, "endOffset": 76387, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "pkgForSomeOtherPlatform", + "ranges": [{ "startOffset": 76425, "endOffset": 77126, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "downloadedBinPath", + "ranges": [{ "startOffset": 77127, "endOffset": 77337, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "generateBinPath", + "ranges": [ + { "startOffset": 77338, "endOffset": 81912, "count": 1 }, + { "startOffset": 77413, "endOffset": 77650, "count": 0 }, + { "startOffset": 77800, "endOffset": 81187, "count": 0 }, + { "startOffset": 81219, "endOffset": 81880, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "esbuildCommandAndArgs", + "ranges": [ + { "startOffset": 82659, "endOffset": 83728, "count": 1 }, + { "startOffset": 82695, "endOffset": 82703, "count": 0 }, + { "startOffset": 82791, "endOffset": 83476, "count": 0 }, + { "startOffset": 83490, "endOffset": 83565, "count": 0 }, + { "startOffset": 83640, "endOffset": 83681, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "isTTY", + "ranges": [{ "startOffset": 83742, "endOffset": 83761, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "readFile", + "ranges": [{ "startOffset": 83780, "endOffset": 84036, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writeFile", + "ranges": [{ "startOffset": 84040, "endOffset": 84237, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readFile", + "ranges": [{ "startOffset": 84259, "endOffset": 84564, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writeFile", + "ranges": [{ "startOffset": 84568, "endOffset": 84796, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "build", + "ranges": [{ "startOffset": 84836, "endOffset": 84888, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "context", + "ranges": [{ "startOffset": 84904, "endOffset": 84968, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transform", + "ranges": [{ "startOffset": 84986, "endOffset": 85056, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "formatMessages", + "ranges": [{ "startOffset": 85079, "endOffset": 85160, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "analyzeMetafile", + "ranges": [{ "startOffset": 85184, "endOffset": 85266, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "buildSync", + "ranges": [{ "startOffset": 85284, "endOffset": 85766, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformSync", + "ranges": [{ "startOffset": 85788, "endOffset": 86314, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "formatMessagesSync", + "ranges": [{ "startOffset": 86341, "endOffset": 86840, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "analyzeMetafileSync", + "ranges": [{ "startOffset": 86868, "endOffset": 87438, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stop", + "ranges": [{ "startOffset": 87451, "endOffset": 87577, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "initialize", + "ranges": [{ "startOffset": 87629, "endOffset": 88146, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ensureServiceIsRunning", + "ranges": [ + { "startOffset": 88247, "endOffset": 90908, "count": 1 }, + { "startOffset": 88279, "endOffset": 88303, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "writeToStdin", + "ranges": [{ "startOffset": 88602, "endOffset": 88715, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 88655, "endOffset": 88707, "count": 3 }, + { "startOffset": 88683, "endOffset": 88699, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "stopService", + "ranges": [{ "startOffset": 89038, "endOffset": 89200, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ref", + "ranges": [{ "startOffset": 89350, "endOffset": 89404, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "unref", + "ranges": [{ "startOffset": 89410, "endOffset": 89468, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "build", + "ranges": [{ "startOffset": 89508, "endOffset": 89769, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "context", + "ranges": [{ "startOffset": 89784, "endOffset": 90018, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transform", + "ranges": [{ "startOffset": 90035, "endOffset": 90303, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 90067, "endOffset": 90302, "count": 3 }, + { "startOffset": 90185, "endOffset": 90190, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "callback", + "ranges": [ + { "startOffset": 90249, "endOffset": 90295, "count": 3 }, + { "startOffset": 90267, "endOffset": 90280, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "formatMessages", + "ranges": [{ "startOffset": 90325, "endOffset": 90553, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "analyzeMetafile", + "ranges": [{ "startOffset": 90576, "endOffset": 90874, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "runServiceSync", + "ranges": [{ "startOffset": 90931, "endOffset": 91834, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "randomFileName", + "ranges": [{ "startOffset": 91857, "endOffset": 91954, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "startWorkerThreadService", + "ranges": [{ "startOffset": 92019, "endOffset": 94864, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "startSyncServiceWorker", + "ranges": [ + { "startOffset": 94895, "endOffset": 96851, "count": 1 }, + { "startOffset": 96503, "endOffset": 96849, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "extractProperties", + "ranges": [{ "startOffset": 95032, "endOffset": 95230, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 95366, "endOffset": 96496, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 95384, "endOffset": 96486, "count": 3 }, + { "startOffset": 95569, "endOffset": 95688, "count": 0 }, + { "startOffset": 95850, "endOffset": 95996, "count": 0 }, + { "startOffset": 96009, "endOffset": 96157, "count": 0 }, + { "startOffset": 96170, "endOffset": 96240, "count": 0 }, + { "startOffset": 96263, "endOffset": 96378, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 96549, "endOffset": 96843, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "179", + "url": "node:os", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 8250, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "getCheckedFunction", + "ranges": [{ "startOffset": 2043, "endOffset": 2289, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "checkError", + "ranges": [{ "startOffset": 2102, "endOffset": 2285, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getOSRelease", + "ranges": [{ "startOffset": 2671, "endOffset": 2684, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getOSType", + "ranges": [{ "startOffset": 2733, "endOffset": 2743, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getOSVersion", + "ranges": [{ "startOffset": 2795, "endOffset": 2808, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getMachine", + "ranges": [{ "startOffset": 2858, "endOffset": 2871, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getAvailableParallelism.", + "ranges": [{ "startOffset": 2919, "endOffset": 2950, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getFreeMem.", + "ranges": [{ "startOffset": 2984, "endOffset": 3002, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getHostname.", + "ranges": [{ "startOffset": 3037, "endOffset": 3056, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getOSVersion.", + "ranges": [{ "startOffset": 3092, "endOffset": 3112, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getOSType.", + "ranges": [{ "startOffset": 3145, "endOffset": 3162, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getOSRelease.", + "ranges": [{ "startOffset": 3198, "endOffset": 3218, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getMachine.", + "ranges": [{ "startOffset": 3252, "endOffset": 3270, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getHomeDirectory.", + "ranges": [{ "startOffset": 3310, "endOffset": 3334, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getTotalMem.", + "ranges": [{ "startOffset": 3369, "endOffset": 3388, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getUptime.", + "ranges": [{ "startOffset": 3421, "endOffset": 3438, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "loadavg", + "ranges": [{ "startOffset": 3576, "endOffset": 3676, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cpus", + "ranges": [{ "startOffset": 3956, "endOffset": 4385, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "arch", + "ranges": [{ "startOffset": 4416, "endOffset": 4458, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "arch.", + "ranges": [{ "startOffset": 4485, "endOffset": 4503, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "platform", + "ranges": [{ "startOffset": 4535, "endOffset": 4585, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "platform.", + "ranges": [{ "startOffset": 4616, "endOffset": 4638, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "tmpdir", + "ranges": [{ "startOffset": 4670, "endOffset": 5052, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "tmpdir.", + "ranges": [{ "startOffset": 5081, "endOffset": 5095, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "endianness", + "ranges": [{ "startOffset": 5132, "endOffset": 5179, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "endianness.", + "ranges": [{ "startOffset": 5212, "endOffset": 5229, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "networkInterfaces", + "ranges": [{ "startOffset": 5441, "endOffset": 6134, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setPriority", + "ranges": [{ "startOffset": 6218, "endOffset": 6507, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getPriority", + "ranges": [{ "startOffset": 6563, "endOffset": 6818, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "userInfo", + "ranges": [{ "startOffset": 7121, "endOffset": 7347, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "180", + "url": "node:child_process", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 28508, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1957, "endOffset": 1986, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "fork", + "ranges": [{ "startOffset": 3492, "endOffset": 5149, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_forkChild", + "ranges": [{ "startOffset": 5151, "endOffset": 5640, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "normalizeExecArgs", + "ranges": [{ "startOffset": 5642, "endOffset": 6156, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "exec", + "ranges": [{ "startOffset": 6693, "endOffset": 6940, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "customPromiseExecFunction", + "ranges": [{ "startOffset": 6976, "endOffset": 7375, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 7027, "endOffset": 7371, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "normalizeExecFileArgs", + "ranges": [{ "startOffset": 7512, "endOffset": 8355, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "execFile", + "ranges": [{ "startOffset": 8968, "endOffset": 13657, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "copyProcessEnvToEnv", + "ranges": [ + { "startOffset": 13801, "endOffset": 14001, "count": 1 }, + { "startOffset": 13899, "endOffset": 13956, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "getPermissionModelFlagsToCopy", + "ranges": [{ "startOffset": 14036, "endOffset": 14254, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "copyPermissionModelFlagsToEnv", + "ranges": [{ "startOffset": 14256, "endOffset": 14737, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "normalizeSpawnArguments", + "ranges": [ + { "startOffset": 14774, "endOffset": 20626, "count": 1 }, + { "startOffset": 14935, "endOffset": 15000, "count": 0 }, + { "startOffset": 15071, "endOffset": 15262, "count": 0 }, + { "startOffset": 15342, "endOffset": 15365, "count": 0 }, + { "startOffset": 15662, "endOffset": 15726, "count": 0 }, + { "startOffset": 15789, "endOffset": 15813, "count": 0 }, + { "startOffset": 15815, "endOffset": 15893, "count": 0 }, + { "startOffset": 15956, "endOffset": 15980, "count": 0 }, + { "startOffset": 15982, "endOffset": 16060, "count": 0 }, + { "startOffset": 16127, "endOffset": 16170, "count": 0 }, + { "startOffset": 16171, "endOffset": 16213, "count": 0 }, + { "startOffset": 16215, "endOffset": 16346, "count": 0 }, + { "startOffset": 16410, "endOffset": 16530, "count": 0 }, + { "startOffset": 16816, "endOffset": 16924, "count": 0 }, + { "startOffset": 16947, "endOffset": 18179, "count": 0 }, + { "startOffset": 18222, "endOffset": 18275, "count": 0 }, + { "startOffset": 18691, "endOffset": 19295, "count": 0 }, + { "startOffset": 19327, "endOffset": 19394, "count": 0 }, + { "startOffset": 19491, "endOffset": 19534, "count": 87 }, + { "startOffset": 19572, "endOffset": 20037, "count": 0 }, + { "startOffset": 20068, "endOffset": 20321, "count": 87 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 19816, "endOffset": 20025, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "abortChildProcess", + "ranges": [{ "startOffset": 20628, "endOffset": 20884, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "spawn", + "ranges": [ + { "startOffset": 21439, "endOffset": 22663, "count": 1 }, + { "startOffset": 21805, "endOffset": 22179, "count": 0 }, + { "startOffset": 22203, "endOffset": 22644, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 21838, "endOffset": 22026, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 22070, "endOffset": 22173, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "onAbortListener", + "ranges": [{ "startOffset": 22539, "endOffset": 22640, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "spawnSync", + "ranges": [{ "startOffset": 23423, "endOffset": 24912, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "checkExecSyncError", + "ranges": [{ "startOffset": 24915, "endOffset": 25301, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "execFileSync", + "ranges": [{ "startOffset": 25814, "endOffset": 26278, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "execSync", + "ranges": [{ "startOffset": 26776, "endOffset": 27152, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "validateArgumentNullCheck", + "ranges": [ + { "startOffset": 27155, "endOffset": 27378, "count": 177 }, + { "startOffset": 27280, "endOffset": 27376, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "validateArgumentsNullCheck", + "ranges": [ + { "startOffset": 27381, "endOffset": 27543, "count": 1 }, + { "startOffset": 27475, "endOffset": 27541, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "validateTimeout", + "ranges": [ + { "startOffset": 27546, "endOffset": 27734, "count": 1 }, + { "startOffset": 27604, "endOffset": 27650, "count": 0 }, + { "startOffset": 27652, "endOffset": 27732, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "validateMaxBuffer", + "ranges": [{ "startOffset": 27737, "endOffset": 28010, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "sanitizeKillSignal", + "ranges": [ + { "startOffset": 28013, "endOffset": 28376, "count": 1 }, + { "startOffset": 28127, "endOffset": 28177, "count": 0 }, + { "startOffset": 28207, "endOffset": 28374, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "181", + "url": "node:internal/child_process", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 31670, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "send", + "ranges": [{ "startOffset": 2500, "endOffset": 2559, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "got", + "ranges": [{ "startOffset": 2566, "endOffset": 2620, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "send", + "ranges": [{ "startOffset": 2682, "endOffset": 2749, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "got", + "ranges": [{ "startOffset": 2756, "endOffset": 2897, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "send", + "ranges": [{ "startOffset": 2927, "endOffset": 4481, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "postSend", + "ranges": [{ "startOffset": 4488, "endOffset": 5234, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "got", + "ranges": [{ "startOffset": 5241, "endOffset": 5698, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "send", + "ranges": [{ "startOffset": 5763, "endOffset": 5822, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "got", + "ranges": [{ "startOffset": 5829, "endOffset": 5883, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "send", + "ranges": [{ "startOffset": 5948, "endOffset": 6068, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "got", + "ranges": [{ "startOffset": 6075, "endOffset": 6234, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stdioStringToArray", + "ranges": [{ "startOffset": 6245, "endOffset": 6660, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ChildProcess", + "ranges": [ + { "startOffset": 6662, "endOffset": 8155, "count": 1 }, + { "startOffset": 8085, "endOffset": 8153, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "ChildProcess._handle.onexit", + "ranges": [{ "startOffset": 7003, "endOffset": 8041, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "flushStdio", + "ranges": [{ "startOffset": 8278, "endOffset": 8756, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createSocket", + "ranges": [{ "startOffset": 8759, "endOffset": 8849, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "getHandleWrapType", + "ranges": [{ "startOffset": 8852, "endOffset": 9081, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "closePendingHandle", + "ranges": [{ "startOffset": 9083, "endOffset": 9196, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "spawn", + "ranges": [ + { "startOffset": 9230, "endOffset": 12807, "count": 1 }, + { "startOffset": 9387, "endOffset": 9396, "count": 0 }, + { "startOffset": 9731, "endOffset": 10116, "count": 0 }, + { "startOffset": 10234, "endOffset": 10264, "count": 0 }, + { "startOffset": 10605, "endOffset": 10862, "count": 0 }, + { "startOffset": 10877, "endOffset": 11168, "count": 0 }, + { "startOffset": 11289, "endOffset": 12203, "count": 3 }, + { "startOffset": 11354, "endOffset": 11363, "count": 0 }, + { "startOffset": 11385, "endOffset": 11436, "count": 0 }, + { "startOffset": 11657, "endOffset": 11919, "count": 0 }, + { "startOffset": 11944, "endOffset": 12199, "count": 2 }, + { "startOffset": 12020, "endOffset": 12026, "count": 0 }, + { "startOffset": 12053, "endOffset": 12070, "count": 1 }, + { "startOffset": 12072, "endOffset": 12193, "count": 1 }, + { "startOffset": 12293, "endOffset": 12299, "count": 0 }, + { "startOffset": 12390, "endOffset": 12396, "count": 0 }, + { "startOffset": 12465, "endOffset": 12486, "count": 0 }, + { "startOffset": 12557, "endOffset": 12667, "count": 3 }, + { "startOffset": 12641, "endOffset": 12647, "count": 1 }, + { "startOffset": 12648, "endOffset": 12665, "count": 2 }, + { "startOffset": 12751, "endOffset": 12790, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 12138, "endOffset": 12183, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "onErrorNT", + "ranges": [{ "startOffset": 12811, "endOffset": 12872, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "onSpawnNT", + "ranges": [{ "startOffset": 12875, "endOffset": 12925, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "kill", + "ranges": [{ "startOffset": 12958, "endOffset": 13636, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ChildProcess.", + "ranges": [{ "startOffset": 13679, "endOffset": 13736, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ref", + "ranges": [{ "startOffset": 13769, "endOffset": 13827, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "unref", + "ranges": [{ "startOffset": 13862, "endOffset": 13924, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 13966, "endOffset": 14023, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Control", + "ranges": [{ "startOffset": 14028, "endOffset": 14129, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "refCounted", + "ranges": [{ "startOffset": 14443, "endOffset": 14551, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "unrefCounted", + "ranges": [{ "startOffset": 14555, "endOffset": 14667, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ref", + "ranges": [{ "startOffset": 14671, "endOffset": 14742, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "unref", + "ranges": [{ "startOffset": 14746, "endOffset": 14821, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get fd", + "ranges": [{ "startOffset": 14825, "endOffset": 14896, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setupChannel", + "ranges": [{ "startOffset": 15046, "endOffset": 27105, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isInternal", + "ranges": [{ "startOffset": 27140, "endOffset": 27450, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getValidStdio", + "ranges": [ + { "startOffset": 27484, "endOffset": 30378, "count": 1 }, + { "startOffset": 27616, "endOffset": 27660, "count": 0 }, + { "startOffset": 27692, "endOffset": 27750, "count": 0 }, + { "startOffset": 27994, "endOffset": 28031, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 28144, "endOffset": 30337, "count": 3 }, + { "startOffset": 28399, "endOffset": 28407, "count": 0 }, + { "startOffset": 28408, "endOffset": 28418, "count": 0 }, + { "startOffset": 28449, "endOffset": 28507, "count": 0 }, + { "startOffset": 28534, "endOffset": 28559, "count": 1 }, + { "startOffset": 28560, "endOffset": 28618, "count": 1 }, + { "startOffset": 28605, "endOffset": 28617, "count": 0 }, + { "startOffset": 28620, "endOffset": 28874, "count": 2 }, + { "startOffset": 28677, "endOffset": 28691, "count": 0 }, + { "startOffset": 28874, "endOffset": 30316, "count": 1 }, + { "startOffset": 28901, "endOffset": 29295, "count": 0 }, + { "startOffset": 29415, "endOffset": 30316, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "cleanup", + "ranges": [{ "startOffset": 28169, "endOffset": 28361, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getSocketList", + "ranges": [{ "startOffset": 30381, "endOffset": 30697, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "maybeClose", + "ranges": [{ "startOffset": 30700, "endOffset": 30901, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "spawnSync", + "ranges": [{ "startOffset": 30903, "endOffset": 31544, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "182", + "url": "node:net", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 70232, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1684, "endOffset": 1709, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "noop", + "ranges": [{ "startOffset": 4225, "endOffset": 4233, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getFlags", + "ranges": [{ "startOffset": 4706, "endOffset": 4935, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createHandle", + "ranges": [{ "startOffset": 4937, "endOffset": 5320, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getNewAsyncId", + "ranges": [ + { "startOffset": 5323, "endOffset": 5461, "count": 4 }, + { "startOffset": 5418, "endOffset": 5436, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "isPipeName", + "ranges": [{ "startOffset": 5464, "endOffset": 5547, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createServer", + "ranges": [{ "startOffset": 5748, "endOffset": 5852, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "connect", + "ranges": [{ "startOffset": 6075, "endOffset": 6366, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getDefaultAutoSelectFamily", + "ranges": [{ "startOffset": 6368, "endOffset": 6443, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setDefaultAutoSelectFamily", + "ranges": [{ "startOffset": 6445, "endOffset": 6561, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getDefaultAutoSelectFamilyAttemptTimeout", + "ranges": [{ "startOffset": 6563, "endOffset": 6666, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setDefaultAutoSelectFamilyAttemptTimeout", + "ranges": [{ "startOffset": 6668, "endOffset": 6855, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "normalizeArgs", + "ranges": [{ "startOffset": 7349, "endOffset": 8075, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "initSocketHandle", + "ranges": [ + { "startOffset": 8147, "endOffset": 8750, "count": 2 }, + { "startOffset": 8503, "endOffset": 8744, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "closeSocketHandle", + "ranges": [{ "startOffset": 8752, "endOffset": 9092, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket", + "ranges": [ + { "startOffset": 9344, "endOffset": 14202, "count": 4 }, + { "startOffset": 9404, "endOffset": 9457, "count": 2 }, + { "startOffset": 9459, "endOffset": 9588, "count": 0 }, + { "startOffset": 9588, "endOffset": 9906, "count": 2 }, + { "startOffset": 9658, "endOffset": 9906, "count": 0 }, + { "startOffset": 9906, "endOffset": 9943, "count": 2 }, + { "startOffset": 9959, "endOffset": 10155, "count": 0 }, + { "startOffset": 10155, "endOffset": 10717, "count": 2 }, + { "startOffset": 10717, "endOffset": 10743, "count": 0 }, + { "startOffset": 10743, "endOffset": 11257, "count": 2 }, + { "startOffset": 11257, "endOffset": 12505, "count": 0 }, + { "startOffset": 12505, "endOffset": 12591, "count": 2 }, + { "startOffset": 12592, "endOffset": 12669, "count": 0 }, + { "startOffset": 12670, "endOffset": 12716, "count": 0 }, + { "startOffset": 12718, "endOffset": 12933, "count": 0 }, + { "startOffset": 12933, "endOffset": 13466, "count": 2 }, + { "startOffset": 13468, "endOffset": 13733, "count": 1 }, + { "startOffset": 13501, "endOffset": 13670, "count": 0 }, + { "startOffset": 13733, "endOffset": 13757, "count": 2 }, + { "startOffset": 13757, "endOffset": 13809, "count": 0 }, + { "startOffset": 13809, "endOffset": 13986, "count": 2 }, + { "startOffset": 13986, "endOffset": 14200, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "_unrefTimer", + "ranges": [ + { "startOffset": 14375, "endOffset": 14505, "count": 7 }, + { "startOffset": 14477, "endOffset": 14499, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "Socket._final", + "ranges": [{ "startOffset": 14625, "endOffset": 15248, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "afterShutdown", + "ranges": [{ "startOffset": 15251, "endOffset": 15397, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writeAfterFIN", + "ranges": [{ "startOffset": 15604, "endOffset": 16112, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket._onTimeout", + "ranges": [{ "startOffset": 16194, "endOffset": 16698, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.setNoDelay", + "ranges": [{ "startOffset": 16732, "endOffset": 17109, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.setKeepAlive", + "ranges": [{ "startOffset": 17145, "endOffset": 17751, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.address", + "ranges": [{ "startOffset": 17782, "endOffset": 17826, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 17912, "endOffset": 17956, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 18036, "endOffset": 18092, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 18203, "endOffset": 18518, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 18607, "endOffset": 18687, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 18775, "endOffset": 18820, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "tryReadStart", + "ranges": [ + { "startOffset": 18828, "endOffset": 19078, "count": 1 }, + { "startOffset": 19028, "endOffset": 19076, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "Socket._read", + "ranges": [ + { "startOffset": 19170, "endOffset": 19489, "count": 5 }, + { "startOffset": 19333, "endOffset": 19425, "count": 0 }, + { "startOffset": 19458, "endOffset": 19487, "count": 1 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 19400, "endOffset": 19419, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.end", + "ranges": [{ "startOffset": 19516, "endOffset": 19672, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.resetAndDestroy", + "ranges": [{ "startOffset": 19710, "endOffset": 20060, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.pause", + "ranges": [{ "startOffset": 20088, "endOffset": 20405, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.resume", + "ranges": [ + { "startOffset": 20435, "endOffset": 20619, "count": 1 }, + { "startOffset": 20468, "endOffset": 20487, "count": 0 }, + { "startOffset": 20488, "endOffset": 20503, "count": 0 }, + { "startOffset": 20504, "endOffset": 20534, "count": 0 }, + { "startOffset": 20536, "endOffset": 20565, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "Socket.read", + "ranges": [ + { "startOffset": 20647, "endOffset": 20833, "count": 6 }, + { "startOffset": 20681, "endOffset": 20700, "count": 0 }, + { "startOffset": 20701, "endOffset": 20716, "count": 0 }, + { "startOffset": 20717, "endOffset": 20747, "count": 0 }, + { "startOffset": 20749, "endOffset": 20778, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "onReadableStreamEnd", + "ranges": [{ "startOffset": 20880, "endOffset": 20979, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.destroySoon", + "ranges": [{ "startOffset": 21013, "endOffset": 21160, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket._destroy", + "ranges": [{ "startOffset": 21192, "endOffset": 22706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket._reset", + "ranges": [{ "startOffset": 22735, "endOffset": 22834, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket._getpeername", + "ranges": [{ "startOffset": 22869, "endOffset": 23166, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "protoGetter", + "ranges": [{ "startOffset": 23169, "endOffset": 23351, "count": 9 }], + "isBlockCoverage": true + }, + { + "functionName": "bytesRead", + "ranges": [{ "startOffset": 23378, "endOffset": 23469, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "remoteAddress", + "ranges": [{ "startOffset": 23502, "endOffset": 23568, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "remoteFamily", + "ranges": [{ "startOffset": 23600, "endOffset": 23664, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "remotePort", + "ranges": [{ "startOffset": 23694, "endOffset": 23754, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket._getsockname", + "ranges": [{ "startOffset": 23791, "endOffset": 24067, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "localAddress", + "ranges": [{ "startOffset": 24099, "endOffset": 24164, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "localPort", + "ranges": [{ "startOffset": 24194, "endOffset": 24253, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "localFamily", + "ranges": [{ "startOffset": 24284, "endOffset": 24347, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.", + "ranges": [{ "startOffset": 24388, "endOffset": 24435, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket._writeGeneric", + "ranges": [ + { "startOffset": 24471, "endOffset": 25383, "count": 3 }, + { "startOffset": 24693, "endOffset": 25037, "count": 0 }, + { "startOffset": 25118, "endOffset": 25174, "count": 0 }, + { "startOffset": 25228, "endOffset": 25264, "count": 0 }, + { "startOffset": 25343, "endOffset": 25381, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "connect", + "ranges": [{ "startOffset": 24788, "endOffset": 24902, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "onClose", + "ranges": [{ "startOffset": 24909, "endOffset": 24988, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket._writev", + "ranges": [{ "startOffset": 25414, "endOffset": 25482, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket._write", + "ranges": [{ "startOffset": 25512, "endOffset": 25593, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "_bytesDispatched", + "ranges": [{ "startOffset": 25786, "endOffset": 25890, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "bytesWritten", + "ranges": [{ "startOffset": 25922, "endOffset": 26851, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "checkBindError", + "ranges": [{ "startOffset": 26856, "endOffset": 27655, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "internalConnect", + "ranges": [{ "startOffset": 27658, "endOffset": 29955, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "emitErrorAndDestroy", + "ranges": [{ "startOffset": 30198, "endOffset": 30262, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "internalConnectMultiple", + "ranges": [{ "startOffset": 30265, "endOffset": 33545, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.connect", + "ranges": [{ "startOffset": 33574, "endOffset": 35272, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "reinitializeHandle", + "ranges": [{ "startOffset": 35315, "endOffset": 35469, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "socketToDnsFamily", + "ranges": [{ "startOffset": 35472, "endOffset": 35618, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lookupAndConnect", + "ranges": [{ "startOffset": 35620, "endOffset": 39611, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lookupAndConnectMultiple", + "ranges": [{ "startOffset": 39613, "endOffset": 43669, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "connectErrorNT", + "ranges": [{ "startOffset": 43671, "endOffset": 43730, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.ref", + "ranges": [{ "startOffset": 43756, "endOffset": 43943, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.unref", + "ranges": [ + { "startOffset": 43972, "endOffset": 44165, "count": 2 }, + { "startOffset": 44006, "endOffset": 44066, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "afterConnect", + "ranges": [{ "startOffset": 44169, "endOffset": 45857, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addClientAbortSignalOption", + "ranges": [{ "startOffset": 45859, "endOffset": 46269, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createConnectionError", + "ranges": [{ "startOffset": 46271, "endOffset": 46792, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "afterConnectMultiple", + "ranges": [{ "startOffset": 46794, "endOffset": 48112, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "internalConnectMultipleTimeout", + "ranges": [{ "startOffset": 48114, "endOffset": 48610, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addServerAbortSignalOption", + "ranges": [{ "startOffset": 48612, "endOffset": 49042, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Server", + "ranges": [{ "startOffset": 49044, "endOffset": 50878, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toNumber", + "ranges": [{ "startOffset": 50989, "endOffset": 51054, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createServerHandle", + "ranges": [{ "startOffset": 51122, "endOffset": 52610, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setupListenHandle", + "ranges": [{ "startOffset": 52612, "endOffset": 55306, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "emitErrorNT", + "ranges": [{ "startOffset": 55373, "endOffset": 55435, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "emitListeningNT", + "ranges": [{ "startOffset": 55438, "endOffset": 55553, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "listenInCluster", + "ranges": [{ "startOffset": 55556, "endOffset": 57138, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Server.listen", + "ranges": [{ "startOffset": 57167, "endOffset": 61594, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isIpv6LinkLocal", + "ranges": [{ "startOffset": 61597, "endOffset": 62235, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "filterOnlyValidAddress", + "ranges": [{ "startOffset": 62237, "endOffset": 62522, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lookupAndListen", + "ranges": [{ "startOffset": 62524, "endOffset": 63145, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 63227, "endOffset": 63270, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Server.address", + "ranges": [{ "startOffset": 63346, "endOffset": 63624, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "onconnection", + "ranges": [{ "startOffset": 63627, "endOffset": 65887, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Server.getConnections", + "ranges": [{ "startOffset": 66036, "endOffset": 66789, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Server.close", + "ranges": [{ "startOffset": 66818, "endOffset": 67708, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Server.", + "ranges": [{ "startOffset": 67750, "endOffset": 67869, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Server._emitCloseIfDrained", + "ranges": [{ "startOffset": 67911, "endOffset": 68297, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "emitCloseNT", + "ranges": [{ "startOffset": 68301, "endOffset": 68384, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Server.", + "ranges": [{ "startOffset": 68443, "endOffset": 68605, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 68827, "endOffset": 68863, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 68867, "endOffset": 68908, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 68988, "endOffset": 69019, "count": 38 }], + "isBlockCoverage": true + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 69023, "endOffset": 69059, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "Server._setupWorker", + "ranges": [{ "startOffset": 69098, "endOffset": 69339, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Server.ref", + "ranges": [{ "startOffset": 69365, "endOffset": 69463, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Server.unref", + "ranges": [{ "startOffset": 69491, "endOffset": 69590, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get BlockList", + "ranges": [{ "startOffset": 69690, "endOffset": 69792, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get SocketAddress", + "ranges": [{ "startOffset": 69796, "endOffset": 69918, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "183", + "url": "node:internal/stream_base_commons", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 7070, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1057, "endOffset": 1082, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "handleWriteReq", + "ranges": [ + { "startOffset": 1201, "endOffset": 2056, "count": 3 }, + { "startOffset": 1426, "endOffset": 1444, "count": 0 }, + { "startOffset": 1473, "endOffset": 1487, "count": 0 }, + { "startOffset": 1492, "endOffset": 1556, "count": 0 }, + { "startOffset": 1561, "endOffset": 1573, "count": 0 }, + { "startOffset": 1578, "endOffset": 1639, "count": 0 }, + { "startOffset": 1644, "endOffset": 1706, "count": 0 }, + { "startOffset": 1711, "endOffset": 1723, "count": 0 }, + { "startOffset": 1728, "endOffset": 1741, "count": 0 }, + { "startOffset": 1746, "endOffset": 1761, "count": 0 }, + { "startOffset": 1766, "endOffset": 1830, "count": 0 }, + { "startOffset": 1835, "endOffset": 2050, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "onWriteComplete", + "ranges": [{ "startOffset": 2058, "endOffset": 2647, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createWriteWrap", + "ranges": [{ "startOffset": 2649, "endOffset": 2887, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "writevGeneric", + "ranges": [{ "startOffset": 2889, "endOffset": 3528, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writeGeneric", + "ranges": [{ "startOffset": 3530, "endOffset": 3735, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "afterWriteDispatched", + "ranges": [ + { "startOffset": 3737, "endOffset": 4044, "count": 3 }, + { "startOffset": 3904, "endOffset": 3959, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "onStreamRead", + "ranges": [ + { "startOffset": 4046, "endOffset": 5985, "count": 4 }, + { "startOffset": 4347, "endOffset": 4606, "count": 0 }, + { "startOffset": 4790, "endOffset": 4981, "count": 0 }, + { "startOffset": 5002, "endOffset": 5983, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "setStreamTimeout", + "ranges": [{ "startOffset": 5987, "endOffset": 6863, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "184", + "url": "node:internal/perf/observe", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 16758, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "queuePending", + "ranges": [{ "startOffset": 2608, "endOffset": 2869, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getObserverType", + "ranges": [{ "startOffset": 2871, "endOffset": 3211, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "maybeDecrementObserverCounts", + "ranges": [{ "startOffset": 3213, "endOffset": 3634, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "maybeIncrementObserverCount", + "ranges": [{ "startOffset": 3636, "endOffset": 3978, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "performanceObserverSorter", + "ranges": [{ "startOffset": 4055, "endOffset": 4122, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "PerformanceObserverEntryList", + "ranges": [{ "startOffset": 4164, "endOffset": 4392, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getEntries", + "ranges": [{ "startOffset": 4396, "endOffset": 4539, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getEntriesByType", + "ranges": [{ "startOffset": 4543, "endOffset": 4851, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getEntriesByName", + "ranges": [{ "startOffset": 4855, "endOffset": 5352, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5356, "endOffset": 5604, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5986, "endOffset": 6051, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "PerformanceObserver", + "ranges": [{ "startOffset": 6056, "endOffset": 6158, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "observe", + "ranges": [{ "startOffset": 6162, "endOffset": 8433, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "disconnect", + "ranges": [{ "startOffset": 8437, "endOffset": 8644, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "takeRecords", + "ranges": [{ "startOffset": 8648, "endOffset": 8738, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get supportedEntryTypes", + "ranges": [{ "startOffset": 8749, "endOffset": 8813, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8817, "endOffset": 9020, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9024, "endOffset": 9169, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9173, "endOffset": 9555, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "enqueue", + "ranges": [{ "startOffset": 10039, "endOffset": 10241, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "bufferUserTiming", + "ranges": [{ "startOffset": 10302, "endOffset": 11328, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "bufferResourceTiming", + "ranges": [{ "startOffset": 11616, "endOffset": 12880, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setResourceTimingBufferSize", + "ranges": [{ "startOffset": 12968, "endOffset": 13240, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setDispatchBufferFull", + "ranges": [{ "startOffset": 13242, "endOffset": 13307, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "clearEntriesFromBuffer", + "ranges": [{ "startOffset": 13309, "endOffset": 13909, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "filterBufferMapByNameAndType", + "ranges": [{ "startOffset": 13911, "endOffset": 14765, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "observerCallback", + "ranges": [{ "startOffset": 14767, "endOffset": 15883, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hasObserver", + "ranges": [{ "startOffset": 15920, "endOffset": 16039, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "startPerf", + "ranges": [{ "startOffset": 16042, "endOffset": 16152, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stopPerf", + "ranges": [{ "startOffset": 16154, "endOffset": 16469, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "185", + "url": "node:internal/perf/performance_entry", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3304, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "isPerformanceEntry", + "ranges": [{ "startOffset": 679, "endOffset": 752, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "PerformanceEntry", + "ranges": [{ "startOffset": 781, "endOffset": 1136, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get name", + "ranges": [{ "startOffset": 1140, "endOffset": 1244, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get entryType", + "ranges": [{ "startOffset": 1248, "endOffset": 1367, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get startTime", + "ranges": [{ "startOffset": 1371, "endOffset": 1490, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get duration", + "ranges": [{ "startOffset": 1494, "endOffset": 1610, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1614, "endOffset": 1858, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toJSON", + "ranges": [{ "startOffset": 1862, "endOffset": 2088, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createPerformanceEntry", + "ranges": [{ "startOffset": 2310, "endOffset": 2446, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get detail", + "ranges": [{ "startOffset": 2563, "endOffset": 2677, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toJSON", + "ranges": [{ "startOffset": 2681, "endOffset": 2936, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createPerformanceNodeEntry", + "ranges": [{ "startOffset": 2940, "endOffset": 3144, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "186", + "url": "node:dgram", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 30111, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "lazyLoadCluster", + "ranges": [{ "startOffset": 3079, "endOffset": 3151, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lazyLoadBlockList", + "ranges": [{ "startOffset": 3175, "endOffset": 3272, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket", + "ranges": [{ "startOffset": 3274, "endOffset": 5564, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createSocket", + "ranges": [{ "startOffset": 5675, "endOffset": 5753, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "startListening", + "ranges": [{ "startOffset": 5756, "endOffset": 6199, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "replaceHandle", + "ranges": [{ "startOffset": 6201, "endOffset": 6766, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "bufferSize", + "ranges": [{ "startOffset": 6768, "endOffset": 7060, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "bindServerHandle", + "ranges": [{ "startOffset": 7128, "endOffset": 7624, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.bind", + "ranges": [{ "startOffset": 7650, "endOffset": 11195, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.connect", + "ranges": [{ "startOffset": 11225, "endOffset": 12028, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_connect", + "ranges": [{ "startOffset": 12032, "endOffset": 12378, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "doConnect", + "ranges": [{ "startOffset": 12381, "endOffset": 13128, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.disconnect", + "ranges": [{ "startOffset": 13161, "endOffset": 13472, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.sendto", + "ranges": [{ "startOffset": 13577, "endOffset": 14018, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "sliceBuffer", + "ranges": [{ "startOffset": 14022, "endOffset": 14782, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fixBufferList", + "ranges": [{ "startOffset": 14785, "endOffset": 15228, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "enqueue", + "ranges": [{ "startOffset": 15231, "endOffset": 15658, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "onListenSuccess", + "ranges": [{ "startOffset": 15661, "endOffset": 15799, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "onListenError", + "ranges": [{ "startOffset": 15802, "endOffset": 15926, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "clearQueue", + "ranges": [{ "startOffset": 15929, "endOffset": 16126, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.send", + "ranges": [{ "startOffset": 16697, "endOffset": 19591, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "doSend", + "ranges": [{ "startOffset": 19594, "endOffset": 20902, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "afterSend", + "ranges": [{ "startOffset": 20904, "endOffset": 21085, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.close", + "ranges": [{ "startOffset": 21112, "endOffset": 21680, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.", + "ranges": [{ "startOffset": 21722, "endOffset": 21854, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "socketCloseNT", + "ranges": [{ "startOffset": 21858, "endOffset": 21912, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.address", + "ranges": [{ "startOffset": 21942, "endOffset": 22136, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.remoteAddress", + "ranges": [{ "startOffset": 22172, "endOffset": 22486, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.setBroadcast", + "ranges": [{ "startOffset": 22522, "endOffset": 22674, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.setTTL", + "ranges": [{ "startOffset": 22704, "endOffset": 22882, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.setMulticastTTL", + "ranges": [{ "startOffset": 22921, "endOffset": 23117, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.setMulticastLoopback", + "ranges": [{ "startOffset": 23161, "endOffset": 23365, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.setMulticastInterface", + "ranges": [{ "startOffset": 23410, "endOffset": 23676, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.addMembership", + "ranges": [{ "startOffset": 23712, "endOffset": 24090, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.dropMembership", + "ranges": [{ "startOffset": 24128, "endOffset": 24509, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.addSourceSpecificMembership", + "ranges": [{ "startOffset": 24559, "endOffset": 25170, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.dropSourceSpecificMembership", + "ranges": [{ "startOffset": 25222, "endOffset": 25839, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "healthCheck", + "ranges": [{ "startOffset": 25843, "endOffset": 26006, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stopReceiving", + "ranges": [{ "startOffset": 26009, "endOffset": 26173, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "onMessage", + "ranges": [{ "startOffset": 26176, "endOffset": 26603, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "onError", + "ranges": [{ "startOffset": 26606, "endOffset": 26721, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.ref", + "ranges": [{ "startOffset": 26747, "endOffset": 26854, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.unref", + "ranges": [{ "startOffset": 26883, "endOffset": 26992, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.setRecvBufferSize", + "ranges": [{ "startOffset": 27033, "endOffset": 27090, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.setSendBufferSize", + "ranges": [{ "startOffset": 27131, "endOffset": 27188, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.getRecvBufferSize", + "ranges": [{ "startOffset": 27229, "endOffset": 27286, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.getSendBufferSize", + "ranges": [{ "startOffset": 27327, "endOffset": 27384, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.getSendQueueSize", + "ranges": [{ "startOffset": 27423, "endOffset": 27492, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.getSendQueueCount", + "ranges": [{ "startOffset": 27532, "endOffset": 27602, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 27721, "endOffset": 27775, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 27848, "endOffset": 27904, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 28057, "endOffset": 28114, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 28190, "endOffset": 28249, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 28405, "endOffset": 28462, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 28538, "endOffset": 28597, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 28749, "endOffset": 28802, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 28874, "endOffset": 28929, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 29081, "endOffset": 29138, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 29214, "endOffset": 29273, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 29380, "endOffset": 29415, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 29524, "endOffset": 29561, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 29846, "endOffset": 29882, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 29886, "endOffset": 29927, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "187", + "url": "node:internal/dgram", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1837, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "lookup4", + "ranges": [{ "startOffset": 464, "endOffset": 565, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lookup6", + "ranges": [{ "startOffset": 568, "endOffset": 663, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "newHandle", + "ranges": [{ "startOffset": 665, "endOffset": 1309, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_createSocketHandle", + "ranges": [{ "startOffset": 1312, "endOffset": 1760, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "188", + "url": "node:internal/socket_list", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2709, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "SocketListSend", + "ranges": [{ "startOffset": 235, "endOffset": 376, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_request", + "ranges": [{ "startOffset": 380, "endOffset": 1035, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "close", + "ranges": [{ "startOffset": 1039, "endOffset": 1190, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getConnections", + "ranges": [{ "startOffset": 1194, "endOffset": 1430, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "SocketListReceive", + "ranges": [{ "startOffset": 1544, "endOffset": 2404, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "add", + "ranges": [{ "startOffset": 2408, "endOffset": 2649, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "189", + "url": "node:crypto", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 8687, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "lazyWebCrypto", + "ranges": [{ "startOffset": 3215, "endOffset": 3317, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lazyOwnsProcessState", + "ranges": [{ "startOffset": 3341, "endOffset": 3471, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createHash", + "ranges": [{ "startOffset": 3613, "endOffset": 3695, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createCipheriv", + "ranges": [{ "startOffset": 3697, "endOffset": 3799, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createDecipheriv", + "ranges": [{ "startOffset": 3801, "endOffset": 3907, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createDiffieHellman", + "ranges": [{ "startOffset": 3909, "endOffset": 4065, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createDiffieHellmanGroup", + "ranges": [{ "startOffset": 4067, "endOffset": 4149, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createECDH", + "ranges": [{ "startOffset": 4151, "endOffset": 4207, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createHmac", + "ranges": [{ "startOffset": 4209, "endOffset": 4291, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createSign", + "ranges": [{ "startOffset": 4293, "endOffset": 4375, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createVerify", + "ranges": [{ "startOffset": 4377, "endOffset": 4463, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getFips", + "ranges": [{ "startOffset": 5686, "endOffset": 5771, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setFips", + "ranges": [{ "startOffset": 5773, "endOffset": 6057, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getRandomValues", + "ranges": [{ "startOffset": 6059, "endOffset": 6150, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 6228, "endOffset": 6482, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 6486, "endOffset": 6675, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getRandomBytesAlias", + "ranges": [{ "startOffset": 6724, "endOffset": 7557, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 6822, "endOffset": 7312, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 7318, "endOffset": 7549, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 8060, "endOffset": 8100, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 8212, "endOffset": 8259, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 8385, "endOffset": 8406, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "190", + "url": "node:internal/crypto/random", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 16357, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "assertOffset", + "ranges": [{ "startOffset": 1310, "endOffset": 1676, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "assertSize", + "ranges": [{ "startOffset": 1678, "endOffset": 2139, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "randomBytes", + "ranges": [{ "startOffset": 2141, "endOffset": 2730, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "randomFillSync", + "ranges": [{ "startOffset": 2732, "endOffset": 3400, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "randomFill", + "ranges": [{ "startOffset": 3402, "endOffset": 4448, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "randomInt", + "ranges": [{ "startOffset": 4998, "endOffset": 7238, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "asyncRefillRandomIntCache", + "ranges": [{ "startOffset": 7240, "endOffset": 8116, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "onJobDone", + "ranges": [{ "startOffset": 8119, "endOffset": 8281, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getRandomValues", + "ranges": [{ "startOffset": 8513, "endOffset": 9159, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getHexBytes", + "ranges": [{ "startOffset": 9524, "endOffset": 9823, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "serializeUUID", + "ranges": [{ "startOffset": 9825, "endOffset": 10551, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getBufferedUUID", + "ranges": [{ "startOffset": 10553, "endOffset": 10856, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getUnbufferedUUID", + "ranges": [{ "startOffset": 10858, "endOffset": 11096, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "randomUUID", + "ranges": [{ "startOffset": 11098, "endOffset": 11418, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createRandomPrimeJob", + "ranges": [{ "startOffset": 11420, "endOffset": 12653, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "generatePrime", + "ranges": [{ "startOffset": 12655, "endOffset": 13111, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "generatePrimeSync", + "ranges": [{ "startOffset": 13113, "endOffset": 13371, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "numberToHexCharCode", + "ranges": [{ "startOffset": 13629, "endOffset": 13673, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "arrayBufferToUnsignedBigInt", + "ranges": [{ "startOffset": 13749, "endOffset": 14176, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "unsignedBigIntToBuffer", + "ranges": [{ "startOffset": 14178, "endOffset": 14475, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "checkPrime", + "ranges": [{ "startOffset": 14477, "endOffset": 15370, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "checkPrimeSync", + "ranges": [{ "startOffset": 15372, "endOffset": 16170, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "191", + "url": "node:internal/crypto/argon2", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 6579, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "argon2", + "ranges": [{ "startOffset": 1213, "endOffset": 1866, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "argon2Sync", + "ranges": [{ "startOffset": 2336, "endOffset": 2815, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "check", + "ranges": [{ "startOffset": 3285, "endOffset": 5305, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "validateArgon2DeriveBitsLength", + "ranges": [{ "startOffset": 5348, "endOffset": 5720, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "argon2DeriveBits", + "ranges": [{ "startOffset": 5722, "endOffset": 6477, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "192", + "url": "node:internal/crypto/util", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 21852, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "toBuf", + "ranges": [{ "startOffset": 2142, "endOffset": 2321, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getHashCache", + "ranges": [{ "startOffset": 2339, "endOffset": 2608, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getCachedHashId", + "ranges": [{ "startOffset": 2610, "endOffset": 2738, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2772, "endOffset": 2815, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2849, "endOffset": 2891, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2925, "endOffset": 2967, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setEngine", + "ranges": [{ "startOffset": 2971, "endOffset": 3378, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3425, "endOffset": 3910, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createSupportedAlgorithms", + "ranges": [ + { "startOffset": 11006, "endOffset": 11994, "count": 1 }, + { "startOffset": 11162, "endOffset": 11974, "count": 38 }, + { "startOffset": 11300, "endOffset": 11348, "count": 21 }, + { "startOffset": 11350, "endOffset": 11373, "count": 0 }, + { "startOffset": 11446, "endOffset": 11970, "count": 150 }, + { "startOffset": 11617, "endOffset": 11900, "count": 77 }, + { "startOffset": 11900, "endOffset": 11964, "count": 73 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 11694, "endOffset": 11824, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "validateMaxBufferLength", + "ranges": [{ "startOffset": 13225, "endOffset": 13438, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "normalizeAlgorithm", + "ranges": [{ "startOffset": 13664, "endOffset": 16099, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getDataViewOrTypedArrayBuffer", + "ranges": [{ "startOffset": 16101, "endOffset": 16240, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getDataViewOrTypedArrayByteOffset", + "ranges": [{ "startOffset": 16242, "endOffset": 16393, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getDataViewOrTypedArrayByteLength", + "ranges": [{ "startOffset": 16395, "endOffset": 16546, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hasAnyNotIn", + "ranges": [{ "startOffset": 16548, "endOffset": 16687, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 16732, "endOffset": 17022, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "onDone", + "ranges": [{ "startOffset": 17026, "endOffset": 17258, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "jobPromise", + "ranges": [{ "startOffset": 17260, "endOffset": 17530, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "bigIntArrayToUnsignedInt", + "ranges": [{ "startOffset": 18066, "endOffset": 18346, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "bigIntArrayToUnsignedBigInt", + "ranges": [{ "startOffset": 18348, "endOffset": 18584, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getStringOption", + "ranges": [{ "startOffset": 18586, "endOffset": 18751, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getUsagesUnion", + "ranges": [{ "startOffset": 18753, "endOffset": 18965, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getBlockSize", + "ranges": [{ "startOffset": 18967, "endOffset": 19501, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getDigestSizeInBytes", + "ranges": [{ "startOffset": 19503, "endOffset": 19821, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "validateKeyOps", + "ranges": [{ "startOffset": 19960, "endOffset": 20926, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "secureHeapUsed", + "ranges": [{ "startOffset": 20928, "endOffset": 21311, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "193", + "url": "node:internal/crypto/hashnames", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2814, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "normalizeHashName", + "ranges": [{ "startOffset": 2324, "endOffset": 2426, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "194", + "url": "node:internal/crypto/pbkdf2", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3046, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "pbkdf2", + "ranges": [{ "startOffset": 519, "endOffset": 1183, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pbkdf2Sync", + "ranges": [{ "startOffset": 1185, "endOffset": 1590, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "check", + "ranges": [{ "startOffset": 1592, "endOffset": 2063, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "validatePbkdf2DeriveBitsLength", + "ranges": [{ "startOffset": 2106, "endOffset": 2369, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pbkdf2DeriveBits", + "ranges": [{ "startOffset": 2371, "endOffset": 2944, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "195", + "url": "node:internal/crypto/scrypt", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3352, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "scrypt", + "ranges": [{ "startOffset": 619, "endOffset": 1285, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "scryptSync", + "ranges": [{ "startOffset": 1287, "endOffset": 1693, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "check", + "ranges": [{ "startOffset": 1695, "endOffset": 3304, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "196", + "url": "node:internal/crypto/hkdf", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3499, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 831, "endOffset": 1382, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "prepareKey", + "ranges": [{ "startOffset": 1386, "endOffset": 1814, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hkdf", + "ranges": [{ "startOffset": 1816, "endOffset": 2282, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hkdfSync", + "ranges": [{ "startOffset": 2284, "endOffset": 2622, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "validateHkdfDeriveBitsLength", + "ranges": [{ "startOffset": 2661, "endOffset": 2921, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hkdfDeriveBits", + "ranges": [{ "startOffset": 2923, "endOffset": 3405, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "197", + "url": "node:internal/crypto/keys", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 28749, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2504, "endOffset": 10500, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "KeyObject", + "ranges": [{ "startOffset": 2614, "endOffset": 3156, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get type", + "ranges": [{ "startOffset": 3162, "endOffset": 3209, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "from", + "ranges": [{ "startOffset": 3222, "endOffset": 3363, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "equals", + "ranges": [{ "startOffset": 3369, "endOffset": 3653, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "SecretKeyObject", + "ranges": [{ "startOffset": 3886, "endOffset": 3944, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get symmetricKeySize", + "ranges": [{ "startOffset": 3950, "endOffset": 4030, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "export", + "ranges": [{ "startOffset": 4036, "endOffset": 4384, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toCryptoKey", + "ranges": [{ "startOffset": 4390, "endOffset": 6329, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "normalizeKeyDetails", + "ranges": [{ "startOffset": 6462, "endOffset": 6731, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get asymmetricKeyType", + "ranges": [{ "startOffset": 6785, "endOffset": 6896, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get asymmetricKeyDetails", + "ranges": [{ "startOffset": 6902, "endOffset": 7229, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toCryptoKey", + "ranges": [{ "startOffset": 7235, "endOffset": 9356, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "PublicKeyObject", + "ranges": [{ "startOffset": 9420, "endOffset": 9478, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "export", + "ranges": [{ "startOffset": 9484, "endOffset": 9775, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "PrivateKeyObject", + "ranges": [{ "startOffset": 9840, "endOffset": 9899, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "export", + "ranges": [{ "startOffset": 9905, "endOffset": 10419, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseKeyFormat", + "ranges": [{ "startOffset": 10504, "endOffset": 10889, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseKeyType", + "ranges": [{ "startOffset": 10891, "endOffset": 11743, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "option", + "ranges": [{ "startOffset": 11745, "endOffset": 11866, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseKeyFormatAndType", + "ranges": [{ "startOffset": 11868, "endOffset": 12568, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isStringOrBuffer", + "ranges": [{ "startOffset": 12570, "endOffset": 12707, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseKeyEncoding", + "ranges": [{ "startOffset": 12709, "endOffset": 14067, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parsePublicKeyEncoding", + "ranges": [{ "startOffset": 14266, "endOffset": 14402, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parsePrivateKeyEncoding", + "ranges": [{ "startOffset": 14602, "endOffset": 14718, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getKeyObjectHandle", + "ranges": [{ "startOffset": 14720, "endOffset": 15298, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getKeyTypes", + "ranges": [{ "startOffset": 15300, "endOffset": 15805, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mlDsaPubLen", + "ranges": [{ "startOffset": 15807, "endOffset": 15962, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getKeyObjectHandleFromJwk", + "ranges": [{ "startOffset": 15964, "endOffset": 19450, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "prepareAsymmetricKey", + "ranges": [{ "startOffset": 19452, "endOffset": 20995, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "preparePrivateKey", + "ranges": [{ "startOffset": 20997, "endOffset": 21085, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "preparePublicOrPrivateKey", + "ranges": [{ "startOffset": 21087, "endOffset": 21182, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "prepareSecretKey", + "ranges": [{ "startOffset": 21184, "endOffset": 21892, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createSecretKey", + "ranges": [{ "startOffset": 21894, "endOffset": 22098, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createPublicKey", + "ranges": [{ "startOffset": 22100, "endOffset": 22437, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createPrivateKey", + "ranges": [{ "startOffset": 22439, "endOffset": 22780, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isKeyObject", + "ranges": [{ "startOffset": 22782, "endOffset": 22897, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "CryptoKey", + "ranges": [{ "startOffset": 23320, "endOffset": 23380, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 23384, "endOffset": 23747, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 23751, "endOffset": 23807, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get type", + "ranges": [{ "startOffset": 23811, "endOffset": 23939, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get extractable", + "ranges": [{ "startOffset": 23943, "endOffset": 24082, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get algorithm", + "ranges": [{ "startOffset": 24086, "endOffset": 24503, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get usages", + "ranges": [{ "startOffset": 24507, "endOffset": 24705, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "defineCryptoKeyProperties", + "ranges": [{ "startOffset": 25158, "endOffset": 26061, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "InternalCryptoKey", + "ranges": [{ "startOffset": 26357, "endOffset": 26723, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 26727, "endOffset": 27088, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 27092, "endOffset": 27239, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isCryptoKey", + "ranges": [{ "startOffset": 27368, "endOffset": 27452, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "importGenericSecretKey", + "ranges": [{ "startOffset": 27454, "endOffset": 28216, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "198", + "url": "node:internal/crypto/keygen", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 11789, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "isJwk", + "ranges": [{ "startOffset": 1621, "endOffset": 1691, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "wrapKey", + "ranges": [{ "startOffset": 1693, "endOffset": 1847, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "generateKeyPair", + "ranges": [{ "startOffset": 1849, "endOffset": 2485, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "generateKeyPairSync", + "ranges": [{ "startOffset": 2631, "endOffset": 2748, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "handleError", + "ranges": [{ "startOffset": 2750, "endOffset": 3128, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseKeyEncoding", + "ranges": [{ "startOffset": 3130, "endOffset": 4380, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createJob", + "ranges": [{ "startOffset": 5366, "endOffset": 10308, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "generateKeyJob", + "ranges": [{ "startOffset": 10339, "endOffset": 10877, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "handleGenerateKeyError", + "ranges": [{ "startOffset": 10879, "endOffset": 11081, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "generateKey", + "ranges": [{ "startOffset": 11083, "endOffset": 11553, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "generateKeySync", + "ranges": [{ "startOffset": 11555, "endOffset": 11689, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "199", + "url": "node:internal/crypto/diffiehellman", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 10393, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "DiffieHellman", + "ranges": [{ "startOffset": 1365, "endOffset": 3169, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "DiffieHellmanGroup", + "ranges": [{ "startOffset": 3172, "endOffset": 3498, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "dhGenerateKeys", + "ranges": [{ "startOffset": 3609, "endOffset": 3724, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "dhComputeSecret", + "ranges": [{ "startOffset": 3838, "endOffset": 4096, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "dhGetPrime", + "ranges": [{ "startOffset": 4195, "endOffset": 4304, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "dhGetGenerator", + "ranges": [{ "startOffset": 4415, "endOffset": 4540, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "dhGetPublicKey", + "ranges": [{ "startOffset": 4651, "endOffset": 4764, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "dhGetPrivateKey", + "ranges": [{ "startOffset": 4878, "endOffset": 4993, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setPublicKey", + "ranges": [{ "startOffset": 5035, "endOffset": 5177, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setPrivateKey", + "ranges": [{ "startOffset": 5221, "endOffset": 5365, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ECDH", + "ranges": [{ "startOffset": 5369, "endOffset": 5523, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "generateKeys", + "ranges": [{ "startOffset": 5834, "endOffset": 5956, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getPublicKey", + "ranges": [{ "startOffset": 5989, "endOffset": 6140, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "convertKey", + "ranges": [{ "startOffset": 6161, "endOffset": 6427, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "encode", + "ranges": [{ "startOffset": 6430, "endOffset": 6565, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getFormat", + "ranges": [{ "startOffset": 6567, "endOffset": 6890, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "diffieHellman", + "ranges": [{ "startOffset": 6964, "endOffset": 8519, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ecdhDeriveBits", + "ranges": [{ "startOffset": 8649, "endOffset": 10287, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "200", + "url": "node:internal/crypto/cipher", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 8577, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "rsaFunctionFor", + "ranges": [{ "startOffset": 1242, "endOffset": 1990, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1310, "endOffset": 1987, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getDecoder", + "ranges": [{ "startOffset": 2491, "endOffset": 2846, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getUIntOption", + "ranges": [{ "startOffset": 2848, "endOffset": 3082, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createCipherBase", + "ranges": [{ "startOffset": 3084, "endOffset": 3386, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createCipherWithIV", + "ranges": [{ "startOffset": 3388, "endOffset": 3736, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_transform", + "ranges": [{ "startOffset": 3979, "endOffset": 4095, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_flush", + "ranges": [{ "startOffset": 4098, "endOffset": 4236, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "update", + "ranges": [{ "startOffset": 4239, "endOffset": 4755, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "final", + "ranges": [{ "startOffset": 4758, "endOffset": 5002, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setAutoPadding", + "ranges": [{ "startOffset": 5005, "endOffset": 5152, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getAuthTag", + "ranges": [{ "startOffset": 5155, "endOffset": 5315, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setAuthTag", + "ranges": [{ "startOffset": 5318, "endOffset": 5530, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setAAD", + "ranges": [{ "startOffset": 5532, "endOffset": 5874, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Cipheriv", + "ranges": [{ "startOffset": 6122, "endOffset": 6339, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addCipherPrototypeFunctions", + "ranges": [ + { "startOffset": 6341, "endOffset": 6813, "count": 2 }, + { "startOffset": 6652, "endOffset": 6770, "count": 1 } + ], + "isBlockCoverage": true + }, + { + "functionName": "Decipheriv", + "ranges": [{ "startOffset": 7217, "endOffset": 7441, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getCipherInfo", + "ranges": [{ "startOffset": 7603, "endOffset": 8440, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "201", + "url": "node:internal/streams/lazy_transform", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1386, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "LazyTransform", + "ranges": [{ "startOffset": 401, "endOffset": 463, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "makeGetter", + "ranges": [{ "startOffset": 595, "endOffset": 769, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 632, "endOffset": 766, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "makeSetter", + "ranges": [{ "startOffset": 771, "endOffset": 990, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 808, "endOffset": 987, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "202", + "url": "node:internal/crypto/sig", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 7664, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "Sign", + "ranges": [{ "startOffset": 910, "endOffset": 1176, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_write", + "ranges": [{ "startOffset": 1299, "endOffset": 1391, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "update", + "ranges": [{ "startOffset": 1418, "endOffset": 1731, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getPadding", + "ranges": [{ "startOffset": 1734, "endOffset": 1809, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getSaltLength", + "ranges": [{ "startOffset": 1811, "endOffset": 2069, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getDSASignatureEncoding", + "ranges": [{ "startOffset": 2071, "endOffset": 2423, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getContext", + "ranges": [{ "startOffset": 2425, "endOffset": 2717, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getIntOption", + "ranges": [{ "startOffset": 2719, "endOffset": 2964, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "sign", + "ranges": [{ "startOffset": 2988, "endOffset": 3604, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "signOneShot", + "ranges": [{ "startOffset": 3607, "endOffset": 4931, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Verify", + "ranges": [{ "startOffset": 4933, "endOffset": 5207, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "verify", + "ranges": [{ "startOffset": 5435, "endOffset": 6018, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "verifyOneShot", + "ranges": [{ "startOffset": 6021, "endOffset": 7590, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "203", + "url": "node:internal/crypto/hash", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 7444, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "normalizeAlgorithm", + "ranges": [{ "startOffset": 1262, "endOffset": 1375, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1571, "endOffset": 1759, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Hash", + "ranges": [{ "startOffset": 1765, "endOffset": 2587, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "copy", + "ranges": [{ "startOffset": 2718, "endOffset": 2886, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_transform", + "ranges": [{ "startOffset": 2917, "endOffset": 3022, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_flush", + "ranges": [{ "startOffset": 3049, "endOffset": 3129, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "update", + "ranges": [{ "startOffset": 3156, "endOffset": 3620, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "digest", + "ranges": [{ "startOffset": 3648, "endOffset": 3969, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Hmac", + "ranges": [{ "startOffset": 3972, "endOffset": 4379, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "digest", + "ranges": [{ "startOffset": 4560, "endOffset": 4992, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "asyncDigest", + "ranges": [{ "startOffset": 5147, "endOffset": 5867, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hash", + "ranges": [{ "startOffset": 5869, "endOffset": 7381, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "204", + "url": "node:internal/crypto/x509", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 11135, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "isX509Certificate", + "ranges": [{ "startOffset": 1157, "endOffset": 1240, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getFlags", + "ranges": [{ "startOffset": 1242, "endOffset": 2487, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2523, "endOffset": 2555, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "InternalX509Certificate", + "ranges": [{ "startOffset": 2560, "endOffset": 2654, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2684, "endOffset": 2716, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "X509Certificate", + "ranges": [{ "startOffset": 2721, "endOffset": 3071, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3075, "endOffset": 3885, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3889, "endOffset": 4054, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4058, "endOffset": 4118, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get subject", + "ranges": [{ "startOffset": 4122, "endOffset": 4338, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get subjectAltName", + "ranges": [{ "startOffset": 4342, "endOffset": 4586, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get issuer", + "ranges": [{ "startOffset": 4590, "endOffset": 4802, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get issuerCertificate", + "ranges": [{ "startOffset": 4806, "endOffset": 5155, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get infoAccess", + "ranges": [{ "startOffset": 5159, "endOffset": 5387, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get validFrom", + "ranges": [{ "startOffset": 5391, "endOffset": 5615, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get validTo", + "ranges": [{ "startOffset": 5619, "endOffset": 5835, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get validFromDate", + "ranges": [{ "startOffset": 5839, "endOffset": 6079, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get validToDate", + "ranges": [{ "startOffset": 6083, "endOffset": 6315, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get fingerprint", + "ranges": [{ "startOffset": 6319, "endOffset": 6551, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get fingerprint256", + "ranges": [{ "startOffset": 6555, "endOffset": 6799, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get fingerprint512", + "ranges": [{ "startOffset": 6803, "endOffset": 7047, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get keyUsage", + "ranges": [{ "startOffset": 7051, "endOffset": 7271, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get serialNumber", + "ranges": [{ "startOffset": 7275, "endOffset": 7511, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get signatureAlgorithm", + "ranges": [{ "startOffset": 7515, "endOffset": 7775, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get signatureAlgorithmOid", + "ranges": [{ "startOffset": 7779, "endOffset": 8051, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get raw", + "ranges": [{ "startOffset": 8055, "endOffset": 8255, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get publicKey", + "ranges": [{ "startOffset": 8259, "endOffset": 8504, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toString", + "ranges": [{ "startOffset": 8508, "endOffset": 8709, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toJSON", + "ranges": [{ "startOffset": 8834, "endOffset": 8870, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get ca", + "ranges": [{ "startOffset": 8874, "endOffset": 9075, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "checkHost", + "ranges": [{ "startOffset": 9079, "endOffset": 9204, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "checkEmail", + "ranges": [{ "startOffset": 9208, "endOffset": 9339, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "checkIP", + "ranges": [{ "startOffset": 9343, "endOffset": 9833, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "checkIssued", + "ranges": [{ "startOffset": 9837, "endOffset": 10043, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "checkPrivateKey", + "ranges": [{ "startOffset": 10047, "endOffset": 10310, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "verify", + "ranges": [{ "startOffset": 10314, "endOffset": 10558, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toLegacyObject", + "ranges": [{ "startOffset": 10562, "endOffset": 10887, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "205", + "url": "node:internal/crypto/certificate", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1546, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "verifySpkac", + "ranges": [{ "startOffset": 385, "endOffset": 505, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "exportPublicKey", + "ranges": [{ "startOffset": 507, "endOffset": 635, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "exportChallenge", + "ranges": [{ "startOffset": 637, "endOffset": 765, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Certificate", + "ranges": [{ "startOffset": 1122, "endOffset": 1216, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "206", + "url": "node:internal/crypto/kem", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2360, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "encapsulate", + "ranges": [{ "startOffset": 507, "endOffset": 1434, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "decapsulate", + "ranges": [{ "startOffset": 1436, "endOffset": 2306, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "207", + "url": "node:tty", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 5045, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "isatty", + "ranges": [{ "startOffset": 1540, "endOffset": 1646, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "ReadStream", + "ranges": [{ "startOffset": 1648, "endOffset": 2117, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ReadStream.setRawMode", + "ranges": [{ "startOffset": 2266, "endOffset": 2480, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "WriteStream", + "ranges": [{ "startOffset": 2483, "endOffset": 3449, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "WriteStream._refreshSize", + "ranges": [{ "startOffset": 3740, "endOffset": 4167, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "WriteStream.cursorTo", + "ranges": [{ "startOffset": 4223, "endOffset": 4363, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "WriteStream.moveCursor", + "ranges": [{ "startOffset": 4400, "endOffset": 4546, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "WriteStream.clearLine", + "ranges": [{ "startOffset": 4582, "endOffset": 4721, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "WriteStream.clearScreenDown", + "ranges": [{ "startOffset": 4763, "endOffset": 4898, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "WriteStream.getWindowSize", + "ranges": [{ "startOffset": 4938, "endOffset": 4988, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "208", + "url": "node:internal/tty", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 7150, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "warnOnDeactivatedColors", + "ranges": [{ "startOffset": 2918, "endOffset": 3428, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getColorDepth", + "ranges": [{ "startOffset": 3586, "endOffset": 6821, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hasColors", + "ranges": [{ "startOffset": 6823, "endOffset": 7096, "count": 0 }], + "isBlockCoverage": false + } + ] + } + ], + "timestamp": 683913.902251 +} diff --git a/packages/functions/coverage/tmp/coverage-57615-1780003237413-0.json b/packages/functions/coverage/tmp/coverage-57615-1780003237413-0.json new file mode 100644 index 0000000..badd9b4 --- /dev/null +++ b/packages/functions/coverage/tmp/coverage-57615-1780003237413-0.json @@ -0,0 +1,133639 @@ +{ + "result": [ + { + "scriptId": "3", + "url": "node:internal/per_context/primordials", + "functions": [ + { + "functionName": "SafeIterator", + "ranges": [{ "startOffset": 9212, "endOffset": 9283, "count": 88 }], + "isBlockCoverage": false + }, + { + "functionName": "next", + "ranges": [{ "startOffset": 9288, "endOffset": 9337, "count": 331 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9342, "endOffset": 9387, "count": 22 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 10952, "endOffset": 11019, "count": 76 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 12597, "endOffset": 12871, "count": 3 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 12742, "endOffset": 12866, "count": 3 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 12772, "endOffset": 12821, "count": 3 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 15089, "endOffset": 15542, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 15124, "endOffset": 15541, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "onFulfilled", + "ranges": [{ "startOffset": 15256, "endOffset": 15333, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "5", + "url": "node:internal/per_context/messageport", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 407, "endOffset": 993, "count": 1 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "6", + "url": "node:internal/bootstrap/realm", + "functions": [ + { + "functionName": "internalBinding", + "ranges": [{ "startOffset": 6034, "endOffset": 6296, "count": 110 }], + "isBlockCoverage": false + }, + { + "functionName": "getOwn", + "ranges": [{ "startOffset": 6562, "endOffset": 6716, "count": 362 }], + "isBlockCoverage": false + }, + { + "functionName": "allowRequireByUsers", + "ranges": [{ "startOffset": 8483, "endOffset": 8844, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "canBeRequiredByUsers", + "ranges": [{ "startOffset": 9529, "endOffset": 9604, "count": 415 }], + "isBlockCoverage": false + }, + { + "functionName": "canBeRequiredWithoutScheme", + "ranges": [{ "startOffset": 9615, "endOffset": 9709, "count": 411 }], + "isBlockCoverage": false + }, + { + "functionName": "normalizeRequirableId", + "ranges": [{ "startOffset": 9720, "endOffset": 10065, "count": 416 }], + "isBlockCoverage": false + }, + { + "functionName": "getAllBuiltinModuleIds", + "ranges": [{ "startOffset": 10414, "endOffset": 10636, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 10587, "endOffset": 10605, "count": 5 }], + "isBlockCoverage": false + }, + { + "functionName": "compileForPublicLoader", + "ranges": [{ "startOffset": 10708, "endOffset": 11371, "count": 183 }], + "isBlockCoverage": false + }, + { + "functionName": "getESMFacade", + "ranges": [{ "startOffset": 11375, "endOffset": 12009, "count": 10 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 11746, "endOffset": 11849, "count": 10 }], + "isBlockCoverage": false + }, + { + "functionName": "syncExports", + "ranges": [{ "startOffset": 12305, "endOffset": 12649, "count": 10 }], + "isBlockCoverage": false + }, + { + "functionName": "compileForInternalLoader", + "ranges": [{ "startOffset": 12653, "endOffset": 13475, "count": 2352 }], + "isBlockCoverage": false + }, + { + "functionName": "requireBuiltin", + "ranges": [{ "startOffset": 13670, "endOffset": 14035, "count": 511 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "7", + "url": "node:internal/errors", + "functions": [ + { + "functionName": "setInternalPrepareStackTrace", + "ranges": [{ "startOffset": 2813, "endOffset": 2904, "count": 3 }], + "isBlockCoverage": false + }, + { + "functionName": "prepareStackTraceCallback", + "ranges": [{ "startOffset": 3730, "endOffset": 4861, "count": 19 }], + "isBlockCoverage": false + }, + { + "functionName": "ErrorPrepareStackTrace", + "ranges": [{ "startOffset": 4947, "endOffset": 5046, "count": 19 }], + "isBlockCoverage": false + }, + { + "functionName": "isErrorStackTraceLimitWritable", + "ranges": [{ "startOffset": 6905, "endOffset": 7412, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "hideStackFrames", + "ranges": [{ "startOffset": 14720, "endOffset": 15017, "count": 7 }], + "isBlockCoverage": false + }, + { + "functionName": "wrappedFn", + "ranges": [{ "startOffset": 14753, "endOffset": 14959, "count": 1103 }], + "isBlockCoverage": false + }, + { + "functionName": "lazyUv", + "ranges": [{ "startOffset": 17182, "endOffset": 17262, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "uvErrmapGet", + "ranges": [{ "startOffset": 17319, "endOffset": 17471, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "ExceptionWithHostPort", + "ranges": [{ "startOffset": 20674, "endOffset": 21480, "count": 2 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "8", + "url": "node:internal/assert", + "functions": [ + { + "functionName": "assert", + "ranges": [{ "startOffset": 128, "endOffset": 278, "count": 413 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "9", + "url": "node:internal/bootstrap/node", + "functions": [ + { + "functionName": "get", + "ranges": [{ "startOffset": 3814, "endOffset": 3864, "count": 32 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 3870, "endOffset": 3928, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 4140, "endOffset": 4536, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 13213, "endOffset": 13271, "count": 295 }], + "isBlockCoverage": false + }, + { + "functionName": "setSourceMapsEnabled", + "ranges": [{ "startOffset": 13312, "endOffset": 13684, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 14731, "endOffset": 14767, "count": 411 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 15637, "endOffset": 15672, "count": 301 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "10", + "url": "node:internal/timers", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 4379, "endOffset": 4404, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "initAsyncResource", + "ranges": [{ "startOffset": 5884, "endOffset": 6225, "count": 12 }], + "isBlockCoverage": false + }, + { + "functionName": "Timeout", + "ranges": [{ "startOffset": 6396, "endOffset": 7895, "count": 10 }], + "isBlockCoverage": false + }, + { + "functionName": "TimersList", + "ranges": [{ "startOffset": 8637, "endOffset": 8943, "count": 10 }], + "isBlockCoverage": false + }, + { + "functionName": "append", + "ranges": [{ "startOffset": 9518, "endOffset": 9699, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "incRefCount", + "ranges": [{ "startOffset": 10320, "endOffset": 10486, "count": 10 }], + "isBlockCoverage": false + }, + { + "functionName": "decRefCount", + "ranges": [{ "startOffset": 10488, "endOffset": 10655, "count": 10 }], + "isBlockCoverage": false + }, + { + "functionName": "insert", + "ranges": [{ "startOffset": 11790, "endOffset": 12529, "count": 10 }], + "isBlockCoverage": false + }, + { + "functionName": "setPosition", + "ranges": [{ "startOffset": 13542, "endOffset": 13613, "count": 10 }], + "isBlockCoverage": false + }, + { + "functionName": "processImmediate", + "ranges": [{ "startOffset": 13927, "endOffset": 15975, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "Immediate", + "ranges": [{ "startOffset": 19366, "endOffset": 19688, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "ref", + "ranges": [{ "startOffset": 19692, "endOffset": 19958, "count": 2 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "11", + "url": "node:internal/async_hooks", + "functions": [ + { + "functionName": "newAsyncId", + "ranges": [{ "startOffset": 14827, "endOffset": 14897, "count": 44 }], + "isBlockCoverage": false + }, + { + "functionName": "getDefaultTriggerAsyncId", + "ranges": [{ "startOffset": 15272, "endOffset": 15562, "count": 44 }], + "isBlockCoverage": false + }, + { + "functionName": "defaultTriggerAsyncIdScope", + "ranges": [{ "startOffset": 15878, "endOffset": 16371, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "hasHooks", + "ranges": [{ "startOffset": 16373, "endOffset": 16436, "count": 190 }], + "isBlockCoverage": false + }, + { + "functionName": "enabledHooksExist", + "ranges": [{ "startOffset": 16438, "endOffset": 16497, "count": 34 }], + "isBlockCoverage": false + }, + { + "functionName": "initHooksExist", + "ranges": [{ "startOffset": 16499, "endOffset": 16554, "count": 44 }], + "isBlockCoverage": false + }, + { + "functionName": "emitBeforeScript", + "ranges": [{ "startOffset": 17205, "endOffset": 17419, "count": 34 }], + "isBlockCoverage": false + }, + { + "functionName": "emitAfterScript", + "ranges": [{ "startOffset": 17422, "endOffset": 17542, "count": 34 }], + "isBlockCoverage": false + }, + { + "functionName": "emitDestroyScript", + "ranges": [{ "startOffset": 17545, "endOffset": 17757, "count": 44 }], + "isBlockCoverage": false + }, + { + "functionName": "pushAsyncContext", + "ranges": [{ "startOffset": 17889, "endOffset": 18459, "count": 34 }], + "isBlockCoverage": false + }, + { + "functionName": "popAsyncContext", + "ranges": [{ "startOffset": 18524, "endOffset": 19135, "count": 34 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "12", + "url": "node:internal/validators", + "functions": [ + { + "functionName": "isInt32", + "ranges": [{ "startOffset": 1165, "endOffset": 1224, "count": 411 }], + "isBlockCoverage": false + }, + { + "functionName": "parseFileMode", + "ranges": [{ "startOffset": 1959, "endOffset": 2270, "count": 18 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2516, "endOffset": 2897, "count": 20 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3141, "endOffset": 3604, "count": 11 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3835, "endOffset": 4267, "count": 22 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4459, "endOffset": 4571, "count": 404 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4813, "endOffset": 5259, "count": 218 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5447, "endOffset": 5780, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5591, "endOffset": 5652, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5976, "endOffset": 6090, "count": 91 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6672, "endOffset": 7691, "count": 52 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8645, "endOffset": 8923, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 11291, "endOffset": 11521, "count": 16 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 11626, "endOffset": 11938, "count": 293 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 12770, "endOffset": 12987, "count": 21 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 13187, "endOffset": 13303, "count": 220 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 15236, "endOffset": 15426, "count": 30 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "13", + "url": "node:internal/util", + "functions": [ + { + "functionName": "getDeprecationWarningEmitter", + "ranges": [{ "startOffset": 2764, "endOffset": 3522, "count": 23 }], + "isBlockCoverage": false + }, + { + "functionName": "shouldEmitWarning", + "ranges": [{ "startOffset": 2863, "endOffset": 2873, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2910, "endOffset": 3519, "count": 293 }], + "isBlockCoverage": false + }, + { + "functionName": "isPendingDeprecation", + "ranges": [{ "startOffset": 3524, "endOffset": 3652, "count": 293 }], + "isBlockCoverage": false + }, + { + "functionName": "deprecate", + "ranges": [{ "startOffset": 4686, "endOffset": 5989, "count": 22 }], + "isBlockCoverage": false + }, + { + "functionName": "deprecated", + "ranges": [{ "startOffset": 5074, "endOffset": 5302, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "assertCrypto", + "ranges": [{ "startOffset": 6525, "endOffset": 6599, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "normalizeEncoding", + "ranges": [{ "startOffset": 7032, "endOffset": 7163, "count": 560 }], + "isBlockCoverage": false + }, + { + "functionName": "emitExperimentalWarning", + "ranges": [{ "startOffset": 9236, "endOffset": 9597, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "cachedResult", + "ranges": [{ "startOffset": 9940, "endOffset": 10096, "count": 3 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9991, "endOffset": 10093, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getSystemErrorName", + "ranges": [{ "startOffset": 13033, "endOffset": 13162, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "promisify", + "ranges": [{ "startOffset": 13397, "endOffset": 15452, "count": 6 }], + "isBlockCoverage": false + }, + { + "functionName": "fn", + "ranges": [{ "startOffset": 14137, "endOffset": 14850, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "spliceOne", + "ranges": [{ "startOffset": 16010, "endOffset": 16137, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "isUnderNodeModules", + "ranges": [{ "startOffset": 16196, "endOffset": 16316, "count": 275 }], + "isBlockCoverage": false + }, + { + "functionName": "once", + "ranges": [{ "startOffset": 17257, "endOffset": 17596, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 17381, "endOffset": 17593, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "defineReplaceableLazyAttribute", + "ranges": [{ "startOffset": 18866, "endOffset": 19766, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 19078, "endOffset": 19314, "count": 8 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 19419, "endOffset": 19490, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "exposeLazyInterfaces", + "ranges": [{ "startOffset": 19768, "endOffset": 19868, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "setOwnProperty", + "ranges": [{ "startOffset": 21063, "endOffset": 21253, "count": 411 }], + "isBlockCoverage": false + }, + { + "functionName": "getLazy", + "ranges": [{ "startOffset": 23120, "endOffset": 23332, "count": 4 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 23201, "endOffset": 23329, "count": 413 }], + "isBlockCoverage": false + }, + { + "functionName": "setupCoverageHooks", + "ranges": [{ "startOffset": 23457, "endOffset": 24134, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "guessHandleType", + "ranges": [{ "startOffset": 25524, "endOffset": 25621, "count": 4 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 25647, "endOffset": 25756, "count": 20 }], + "isBlockCoverage": false + }, + { + "functionName": "WeakReference", + "ranges": [{ "startOffset": 25760, "endOffset": 25827, "count": 20 }], + "isBlockCoverage": false + }, + { + "functionName": "assignFunctionName", + "ranges": [{ "startOffset": 26681, "endOffset": 27221, "count": 4 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "14", + "url": "node:internal/options", + "functions": [ + { + "functionName": "getCLIOptionsFromBinding", + "ranges": [{ "startOffset": 722, "endOffset": 809, "count": 411 }], + "isBlockCoverage": false + }, + { + "functionName": "getEmbedderOptions", + "ranges": [{ "startOffset": 990, "endOffset": 1085, "count": 4 }], + "isBlockCoverage": false + }, + { + "functionName": "refreshOptions", + "ranges": [{ "startOffset": 4095, "endOffset": 4151, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "getOptionValue", + "ranges": [{ "startOffset": 4153, "endOffset": 4241, "count": 411 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "15", + "url": "node:internal/util/types", + "functions": [ + { + "functionName": "isTypedArray", + "ranges": [{ "startOffset": 131, "endOffset": 234, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "isUint8Array", + "ranges": [{ "startOffset": 236, "endOffset": 342, "count": 411 }], + "isBlockCoverage": false + }, + { + "functionName": "isBigInt64Array", + "ranges": [{ "startOffset": 1344, "endOffset": 1456, "count": 9 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "16", + "url": "node:internal/linkedlist", + "functions": [ + { + "functionName": "remove", + "ranges": [{ "startOffset": 260, "endOffset": 487, "count": 20 }], + "isBlockCoverage": false + }, + { + "functionName": "append", + "ranges": [{ "startOffset": 543, "endOffset": 995, "count": 10 }], + "isBlockCoverage": false + }, + { + "functionName": "isEmpty", + "ranges": [{ "startOffset": 997, "endOffset": 1057, "count": 10 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "17", + "url": "node:internal/priority_queue", + "functions": [ + { + "functionName": "insert", + "ranges": [{ "startOffset": 666, "endOffset": 795, "count": 10 }], + "isBlockCoverage": false + }, + { + "functionName": "percolateUp", + "ranges": [{ "startOffset": 1691, "endOffset": 2249, "count": 10 }], + "isBlockCoverage": false + }, + { + "functionName": "removeAt", + "ranges": [{ "startOffset": 2253, "endOffset": 2593, "count": 10 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "19", + "url": "node:internal/util/debuglog", + "functions": [ + { + "functionName": "initializeDebugEnv", + "ranges": [{ "startOffset": 832, "endOffset": 1305, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "testEnabled", + "ranges": [{ "startOffset": 1199, "endOffset": 1256, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "testEnabled", + "ranges": [{ "startOffset": 1287, "endOffset": 1298, "count": 13 }], + "isBlockCoverage": false + }, + { + "functionName": "emitWarningIfNeeded", + "ranges": [{ "startOffset": 1379, "endOffset": 1718, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "noop", + "ranges": [{ "startOffset": 1733, "endOffset": 1741, "count": 412 }], + "isBlockCoverage": false + }, + { + "functionName": "debuglogImpl", + "ranges": [{ "startOffset": 1862, "endOffset": 2420, "count": 12 }], + "isBlockCoverage": false + }, + { + "functionName": "debug", + "ranges": [{ "startOffset": 2045, "endOffset": 2338, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "debuglog", + "ranges": [{ "startOffset": 2640, "endOffset": 3993, "count": 13 }], + "isBlockCoverage": false + }, + { + "functionName": "init", + "ranges": [{ "startOffset": 2671, "endOffset": 2767, "count": 12 }], + "isBlockCoverage": false + }, + { + "functionName": "debug", + "ranges": [{ "startOffset": 2782, "endOffset": 3373, "count": 12 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3061, "endOffset": 3104, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "test", + "ranges": [{ "startOffset": 3403, "endOffset": 3472, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "logger", + "ranges": [{ "startOffset": 3491, "endOffset": 3816, "count": 12 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3887, "endOffset": 3921, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ensureTimerFlagsAreUpdated", + "ranges": [{ "startOffset": 9994, "endOffset": 10147, "count": 439 }], + "isBlockCoverage": false + }, + { + "functionName": "internalStartTimer", + "ranges": [{ "startOffset": 10187, "endOffset": 10496, "count": 959 }], + "isBlockCoverage": false + }, + { + "functionName": "internalEndTimer", + "ranges": [{ "startOffset": 10534, "endOffset": 10862, "count": 995 }], + "isBlockCoverage": false + }, + { + "functionName": "init", + "ranges": [{ "startOffset": 11250, "endOffset": 11748, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "startTimer", + "ranges": [{ "startOffset": 11807, "endOffset": 11957, "count": 1 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "21", + "url": "node:internal/async_context_frame", + "functions": [ + { + "functionName": "get enabled", + "ranges": [{ "startOffset": 281, "endOffset": 317, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "current", + "ranges": [{ "startOffset": 328, "endOffset": 394, "count": 176 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 405, "endOffset": 470, "count": 132 }], + "isBlockCoverage": false + }, + { + "functionName": "exchange", + "ranges": [{ "startOffset": 481, "endOffset": 575, "count": 34 }], + "isBlockCoverage": false + }, + { + "functionName": "checkEnabled", + "ranges": [{ "startOffset": 671, "endOffset": 1085, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "get enabled", + "ranges": [{ "startOffset": 1146, "endOffset": 1219, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "AsyncContextFrame", + "ranges": [{ "startOffset": 1386, "endOffset": 1483, "count": 64 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "22", + "url": "node:events", + "functions": [ + { + "functionName": "EventEmitter", + "ranges": [{ "startOffset": 5787, "endOffset": 5856, "count": 17 }], + "isBlockCoverage": false + }, + { + "functionName": "checkListener", + "ranges": [{ "startOffset": 7353, "endOffset": 7431, "count": 159 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 7539, "endOffset": 7587, "count": 15 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9229, "endOffset": 9877, "count": 17 }], + "isBlockCoverage": false + }, + { + "functionName": "setMaxListeners", + "ranges": [{ "startOffset": 11250, "endOffset": 11365, "count": 4 }], + "isBlockCoverage": false + }, + { + "functionName": "_getMaxListeners", + "ranges": [{ "startOffset": 11368, "endOffset": 11517, "count": 9 }], + "isBlockCoverage": false + }, + { + "functionName": "emit", + "ranges": [{ "startOffset": 12674, "endOffset": 14966, "count": 154 }], + "isBlockCoverage": false + }, + { + "functionName": "_addListener", + "ranges": [{ "startOffset": 14969, "endOffset": 16885, "count": 97 }], + "isBlockCoverage": false + }, + { + "functionName": "addListener", + "ranges": [{ "startOffset": 17063, "endOffset": 17155, "count": 92 }], + "isBlockCoverage": false + }, + { + "functionName": "prependListener", + "ranges": [{ "startOffset": 17442, "endOffset": 17545, "count": 5 }], + "isBlockCoverage": false + }, + { + "functionName": "onceWrapper", + "ranges": [{ "startOffset": 17548, "endOffset": 17812, "count": 7 }], + "isBlockCoverage": false + }, + { + "functionName": "_onceWrap", + "ranges": [{ "startOffset": 17814, "endOffset": 18055, "count": 19 }], + "isBlockCoverage": false + }, + { + "functionName": "once", + "ranges": [{ "startOffset": 18246, "endOffset": 18372, "count": 19 }], + "isBlockCoverage": false + }, + { + "functionName": "removeListener", + "ranges": [{ "startOffset": 18982, "endOffset": 20299, "count": 43 }], + "isBlockCoverage": false + }, + { + "functionName": "listenerCount", + "ranges": [{ "startOffset": 23168, "endOffset": 23873, "count": 13 }], + "isBlockCoverage": false + }, + { + "functionName": "arrayClone", + "ranges": [{ "startOffset": 24140, "endOffset": 24613, "count": 86 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "24", + "url": "node:buffer", + "functions": [ + { + "functionName": "createPool", + "ranges": [{ "startOffset": 4175, "endOffset": 4363, "count": 76 }], + "isBlockCoverage": false + }, + { + "functionName": "alignPool", + "ranges": [{ "startOffset": 4379, "endOffset": 4501, "count": 410 }], + "isBlockCoverage": false + }, + { + "functionName": "copyImpl", + "ranges": [{ "startOffset": 5781, "endOffset": 7073, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "_copyActual", + "ranges": [{ "startOffset": 7075, "endOffset": 7695, "count": 3 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 8737, "endOffset": 8765, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "from", + "ranges": [{ "startOffset": 9145, "endOffset": 10110, "count": 592 }], + "isBlockCoverage": false + }, + { + "functionName": "alloc", + "ranges": [{ "startOffset": 11989, "endOffset": 12261, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "allocUnsafe", + "ranges": [{ "startOffset": 12465, "endOffset": 12567, "count": 16 }], + "isBlockCoverage": false + }, + { + "functionName": "allocUnsafeSlow", + "ranges": [{ "startOffset": 12867, "endOffset": 12983, "count": 193 }], + "isBlockCoverage": false + }, + { + "functionName": "allocate", + "ranges": [{ "startOffset": 13304, "endOffset": 13636, "count": 16 }], + "isBlockCoverage": false + }, + { + "functionName": "fromStringFast", + "ranges": [{ "startOffset": 13638, "endOffset": 14290, "count": 592 }], + "isBlockCoverage": false + }, + { + "functionName": "createFromString", + "ranges": [{ "startOffset": 14292, "endOffset": 14537, "count": 190 }], + "isBlockCoverage": false + }, + { + "functionName": "fromString", + "ranges": [{ "startOffset": 14539, "endOffset": 14899, "count": 567 }], + "isBlockCoverage": false + }, + { + "functionName": "isBuffer", + "ranges": [{ "startOffset": 16306, "endOffset": 16360, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "isEncoding", + "ranges": [{ "startOffset": 16728, "endOffset": 16879, "count": 413 }], + "isBlockCoverage": false + }, + { + "functionName": "concat", + "ranges": [{ "startOffset": 16945, "endOffset": 18098, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "base64ByteLength", + "ranges": [{ "startOffset": 18101, "endOffset": 18369, "count": 222 }], + "isBlockCoverage": false + }, + { + "functionName": "byteLength", + "ranges": [{ "startOffset": 19986, "endOffset": 20037, "count": 222 }], + "isBlockCoverage": false + }, + { + "functionName": "getEncodingOps", + "ranges": [{ "startOffset": 21154, "endOffset": 22978, "count": 747 }], + "isBlockCoverage": false + }, + { + "functionName": "copy", + "ranges": [{ "startOffset": 24188, "endOffset": 24324, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "toString", + "ranges": [{ "startOffset": 24605, "endOffset": 25222, "count": 413 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "25", + "url": "node:internal/buffer", + "functions": [ + { + "functionName": "utf8Write", + "ranges": [{ "startOffset": 26921, "endOffset": 27268, "count": 297 }], + "isBlockCoverage": false + }, + { + "functionName": "markAsUntransferable", + "ranges": [{ "startOffset": 31907, "endOffset": 32156, "count": 76 }], + "isBlockCoverage": false + }, + { + "functionName": "createUnsafeBuffer", + "ranges": [{ "startOffset": 32466, "endOffset": 32752, "count": 276 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "26", + "url": "node:internal/worker/js_transferable", + "functions": [ + { + "functionName": "markTransferMode", + "ranges": [{ "startOffset": 2696, "endOffset": 3094, "count": 413 }], + "isBlockCoverage": false + }, + { + "functionName": "defaultValue", + "ranges": [{ "startOffset": 3300, "endOffset": 3308, "count": 3 }], + "isBlockCoverage": false + }, + { + "functionName": "structuredClone", + "ranges": [{ "startOffset": 3332, "endOffset": 3778, "count": 3 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "27", + "url": "node:internal/webidl", + "functions": [ + { + "functionName": "DOMString", + "ranges": [{ "startOffset": 5190, "endOffset": 5320, "count": 18 }], + "isBlockCoverage": false + }, + { + "functionName": "createEnumConverter", + "ranges": [{ "startOffset": 5933, "endOffset": 6294, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6021, "endOffset": 6291, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createDictionaryConverter", + "ranges": [{ "startOffset": 7158, "endOffset": 8837, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 7465, "endOffset": 7564, "count": 5 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 7577, "endOffset": 8834, "count": 3 }], + "isBlockCoverage": false + }, + { + "functionName": "createSequenceConverter", + "ranges": [{ "startOffset": 8886, "endOffset": 9722, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8941, "endOffset": 9719, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createInterfaceConverter", + "ranges": [{ "startOffset": 9772, "endOffset": 10195, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9826, "endOffset": 10192, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "28", + "url": "node:internal/process/per_thread", + "functions": [ + { + "functionName": "hrtimeBigInt", + "ranges": [{ "startOffset": 2573, "endOffset": 2654, "count": 3 }], + "isBlockCoverage": false + }, + { + "functionName": "toggleTraceCategoryState", + "ranges": [{ "startOffset": 15587, "endOffset": 15870, "count": 1 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "29", + "url": "node:diagnostics_channel", + "functions": [ + { + "functionName": "set", + "ranges": [{ "startOffset": 1130, "endOffset": 1247, "count": 20 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1251, "endOffset": 1299, "count": 20 }], + "isBlockCoverage": false + }, + { + "functionName": "Channel", + "ranges": [{ "startOffset": 4320, "endOffset": 4461, "count": 20 }], + "isBlockCoverage": false + }, + { + "functionName": "get hasSubscribers", + "ranges": [{ "startOffset": 4929, "endOffset": 4973, "count": 430 }], + "isBlockCoverage": false + }, + { + "functionName": "channel", + "ranges": [{ "startOffset": 5120, "endOffset": 5386, "count": 20 }], + "isBlockCoverage": false + }, + { + "functionName": "tracingChannelFrom", + "ranges": [{ "startOffset": 5944, "endOffset": 6469, "count": 15 }], + "isBlockCoverage": false + }, + { + "functionName": "TracingChannel", + "ranges": [{ "startOffset": 6496, "endOffset": 6769, "count": 3 }], + "isBlockCoverage": false + }, + { + "functionName": "get hasSubscribers", + "ranges": [{ "startOffset": 6773, "endOffset": 6988, "count": 412 }], + "isBlockCoverage": false + }, + { + "functionName": "tracePromise", + "ranges": [{ "startOffset": 7996, "endOffset": 9182, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "reject", + "ranges": [{ "startOffset": 8199, "endOffset": 8458, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolve", + "ranges": [{ "startOffset": 8464, "endOffset": 8689, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8727, "endOffset": 9176, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "tracingChannel", + "ranges": [{ "startOffset": 10283, "endOffset": 10371, "count": 3 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "30", + "url": "node:internal/process/task_queues", + "functions": [ + { + "functionName": "hasTickScheduled", + "ranges": [{ "startOffset": 1115, "endOffset": 1190, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "setHasTickScheduled", + "ranges": [{ "startOffset": 1192, "endOffset": 1278, "count": 20 }], + "isBlockCoverage": false + }, + { + "functionName": "runNextTicks", + "ranges": [{ "startOffset": 1380, "endOffset": 1576, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "processTicksAndRejections", + "ranges": [{ "startOffset": 1578, "endOffset": 2667, "count": 10 }], + "isBlockCoverage": false + }, + { + "functionName": "nextTick", + "ranges": [{ "startOffset": 2811, "endOffset": 3741, "count": 32 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "31", + "url": "node:internal/process/promises", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 1335, "endOffset": 1447, "count": 11 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1482, "endOffset": 1637, "count": 10 }], + "isBlockCoverage": false + }, + { + "functionName": "setHasRejectionToWarn", + "ranges": [{ "startOffset": 4165, "endOffset": 4255, "count": 12 }], + "isBlockCoverage": false + }, + { + "functionName": "hasRejectionToWarn", + "ranges": [{ "startOffset": 4287, "endOffset": 4366, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "promiseRejectHandler", + "ranges": [{ "startOffset": 4664, "endOffset": 5347, "count": 4 }], + "isBlockCoverage": false + }, + { + "functionName": "unhandledRejection", + "ranges": [{ "startOffset": 6776, "endOffset": 7037, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "handledRejection", + "ranges": [{ "startOffset": 7075, "endOffset": 7656, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "getUnhandledRejectionsMode", + "ranges": [{ "startOffset": 11428, "endOffset": 11979, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "processPromiseRejections", + "ranges": [{ "startOffset": 12152, "endOffset": 13663, "count": 10 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "32", + "url": "node:internal/fixed_queue", + "functions": [ + { + "functionName": "isEmpty", + "ranges": [{ "startOffset": 3130, "endOffset": 3182, "count": 84 }], + "isBlockCoverage": false + }, + { + "functionName": "isFull", + "ranges": [{ "startOffset": 3186, "endOffset": 3253, "count": 32 }], + "isBlockCoverage": false + }, + { + "functionName": "push", + "ranges": [{ "startOffset": 3257, "endOffset": 3344, "count": 32 }], + "isBlockCoverage": false + }, + { + "functionName": "shift", + "ranges": [{ "startOffset": 3348, "endOffset": 3563, "count": 42 }], + "isBlockCoverage": false + }, + { + "functionName": "isEmpty", + "ranges": [{ "startOffset": 3731, "endOffset": 3778, "count": 42 }], + "isBlockCoverage": false + }, + { + "functionName": "push", + "ranges": [{ "startOffset": 3782, "endOffset": 4072, "count": 32 }], + "isBlockCoverage": false + }, + { + "functionName": "shift", + "ranges": [{ "startOffset": 4076, "endOffset": 4482, "count": 42 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "33", + "url": "node:async_hooks", + "functions": [ + { + "functionName": "get AsyncLocalStorage", + "ranges": [{ "startOffset": 8663, "endOffset": 8858, "count": 2 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "34", + "url": "node:timers", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 1806, "endOffset": 1831, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "unenroll", + "ranges": [{ "startOffset": 2106, "endOffset": 3159, "count": 10 }], + "isBlockCoverage": false + }, + { + "functionName": "setTimeout", + "ranges": [{ "startOffset": 3358, "endOffset": 3601, "count": 10 }], + "isBlockCoverage": false + }, + { + "functionName": "clearTimeout", + "ranges": [{ "startOffset": 3896, "endOffset": 4254, "count": 27 }], + "isBlockCoverage": false + }, + { + "functionName": "setImmediate", + "ranges": [{ "startOffset": 5686, "endOffset": 5838, "count": 2 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "35", + "url": "node:internal/process/execution", + "functions": [ + { + "functionName": "tryGetCwd", + "ranges": [{ "startOffset": 1182, "endOffset": 1512, "count": 1 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "36", + "url": "node:path", + "functions": [ + { + "functionName": "isPosixPathSeparator", + "ranges": [{ "startOffset": 2121, "endOffset": 2198, "count": 1037 }], + "isBlockCoverage": false + }, + { + "functionName": "normalizeString", + "ranges": [{ "startOffset": 2933, "endOffset": 4873, "count": 58 }], + "isBlockCoverage": false + }, + { + "functionName": "resolve", + "ranges": [{ "startOffset": 39344, "endOffset": 40673, "count": 371 }], + "isBlockCoverage": false + }, + { + "functionName": "normalize", + "ranges": [{ "startOffset": 40739, "endOffset": 41352, "count": 1513 }], + "isBlockCoverage": false + }, + { + "functionName": "isAbsolute", + "ranges": [{ "startOffset": 41419, "endOffset": 41575, "count": 412 }], + "isBlockCoverage": false + }, + { + "functionName": "join", + "ranges": [{ "startOffset": 41644, "endOffset": 42008, "count": 212 }], + "isBlockCoverage": false + }, + { + "functionName": "relative", + "ranges": [{ "startOffset": 42098, "endOffset": 44458, "count": 22 }], + "isBlockCoverage": false + }, + { + "functionName": "toNamespacedPath", + "ranges": [{ "startOffset": 44524, "endOffset": 44600, "count": 411 }], + "isBlockCoverage": false + }, + { + "functionName": "dirname", + "ranges": [{ "startOffset": 44666, "endOffset": 45342, "count": 109 }], + "isBlockCoverage": false + }, + { + "functionName": "basename", + "ranges": [{ "startOffset": 45438, "endOffset": 47868, "count": 127 }], + "isBlockCoverage": false + }, + { + "functionName": "extname", + "ranges": [{ "startOffset": 47934, "endOffset": 49577, "count": 53 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "37", + "url": "node:internal/url", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 3976, "endOffset": 4379, "count": 411 }], + "isBlockCoverage": false + }, + { + "functionName": "get hasSearch", + "ranges": [{ "startOffset": 4453, "endOffset": 4528, "count": 415 }], + "isBlockCoverage": false + }, + { + "functionName": "get hasHash", + "ranges": [{ "startOffset": 4532, "endOffset": 4603, "count": 411 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4757, "endOffset": 4783, "count": 411 }], + "isBlockCoverage": false + }, + { + "functionName": "URLSearchParamsIterator", + "ranges": [{ "startOffset": 4854, "endOffset": 4956, "count": 411 }], + "isBlockCoverage": false + }, + { + "functionName": "next", + "ranges": [{ "startOffset": 4960, "endOffset": 5668, "count": 926 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 7333, "endOffset": 7393, "count": 411 }], + "isBlockCoverage": false + }, + { + "functionName": "setURLSearchParamsContext", + "ranges": [{ "startOffset": 7439, "endOffset": 7486, "count": 38 }], + "isBlockCoverage": false + }, + { + "functionName": "getURLSearchParamsList", + "ranges": [{ "startOffset": 7517, "endOffset": 7543, "count": 411 }], + "isBlockCoverage": false + }, + { + "functionName": "URLSearchParams", + "ranges": [{ "startOffset": 7998, "endOffset": 12135, "count": 411 }], + "isBlockCoverage": false + }, + { + "functionName": "get size", + "ranges": [{ "startOffset": 13311, "endOffset": 13501, "count": 38 }], + "isBlockCoverage": false + }, + { + "functionName": "delete", + "ranges": [{ "startOffset": 13999, "endOffset": 14862, "count": 38 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 14866, "endOffset": 15319, "count": 416 }], + "isBlockCoverage": false + }, + { + "functionName": "entries", + "ranges": [{ "startOffset": 19102, "endOffset": 19309, "count": 411 }], + "isBlockCoverage": false + }, + { + "functionName": "isURL", + "ranges": [{ "startOffset": 21951, "endOffset": 22076, "count": 1027 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 22567, "endOffset": 22636, "count": 411 }], + "isBlockCoverage": false + }, + { + "functionName": "setURLSearchParamsModified", + "ranges": [{ "startOffset": 22683, "endOffset": 23171, "count": 38 }], + "isBlockCoverage": false + }, + { + "functionName": "URL", + "ranges": [{ "startOffset": 23180, "endOffset": 24085, "count": 1514 }], + "isBlockCoverage": false + }, + { + "functionName": "parse", + "ranges": [{ "startOffset": 24096, "endOffset": 24338, "count": 411 }], + "isBlockCoverage": false + }, + { + "functionName": "#getSearchFromContext", + "ranges": [{ "startOffset": 25066, "endOffset": 25400, "count": 75 }], + "isBlockCoverage": false + }, + { + "functionName": "#getSearchFromParams", + "ranges": [{ "startOffset": 25404, "endOffset": 25515, "count": 38 }], + "isBlockCoverage": false + }, + { + "functionName": "#ensureSearchParamsUpdated", + "ranges": [{ "startOffset": 25519, "endOffset": 25958, "count": 417 }], + "isBlockCoverage": false + }, + { + "functionName": "#updateContext", + "ranges": [{ "startOffset": 26206, "endOffset": 27851, "count": 1514 }], + "isBlockCoverage": false + }, + { + "functionName": "toString", + "ranges": [{ "startOffset": 27855, "endOffset": 28040, "count": 411 }], + "isBlockCoverage": false + }, + { + "functionName": "get href", + "ranges": [{ "startOffset": 28044, "endOffset": 28229, "count": 418 }], + "isBlockCoverage": false + }, + { + "functionName": "get protocol", + "ranges": [{ "startOffset": 29343, "endOffset": 29447, "count": 439 }], + "isBlockCoverage": false + }, + { + "functionName": "get hostname", + "ranges": [{ "startOffset": 31044, "endOffset": 31326, "count": 210 }], + "isBlockCoverage": false + }, + { + "functionName": "get pathname", + "ranges": [{ "startOffset": 31788, "endOffset": 32080, "count": 411 }], + "isBlockCoverage": false + }, + { + "functionName": "get search", + "ranges": [{ "startOffset": 32261, "endOffset": 32458, "count": 37 }], + "isBlockCoverage": false + }, + { + "functionName": "set search", + "ranges": [{ "startOffset": 32462, "endOffset": 32666, "count": 37 }], + "isBlockCoverage": false + }, + { + "functionName": "get searchParams", + "ranges": [{ "startOffset": 32684, "endOffset": 33042, "count": 38 }], + "isBlockCoverage": false + }, + { + "functionName": "get hash", + "ranges": [{ "startOffset": 33046, "endOffset": 33261, "count": 37 }], + "isBlockCoverage": false + }, + { + "functionName": "set hash", + "ranges": [{ "startOffset": 33265, "endOffset": 33430, "count": 37 }], + "isBlockCoverage": false + }, + { + "functionName": "getPathFromURLPosix", + "ranges": [{ "startOffset": 47293, "endOffset": 47956, "count": 7 }], + "isBlockCoverage": false + }, + { + "functionName": "fileURLToPath", + "ranges": [{ "startOffset": 49100, "endOffset": 49512, "count": 411 }], + "isBlockCoverage": false + }, + { + "functionName": "pathToFileURL", + "ranges": [{ "startOffset": 50226, "endOffset": 52077, "count": 888 }], + "isBlockCoverage": false + }, + { + "functionName": "toPathIfFileURL", + "ranges": [{ "startOffset": 52079, "endOffset": 52216, "count": 673 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "44", + "url": "node:internal/process/warning", + "functions": [ + { + "functionName": "lazyOption", + "ranges": [{ "startOffset": 705, "endOffset": 1100, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "writeOut", + "ranges": [{ "startOffset": 1201, "endOffset": 1303, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "doEmitWarning", + "ranges": [{ "startOffset": 1749, "endOffset": 1820, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "onWarning", + "ranges": [{ "startOffset": 1846, "endOffset": 3392, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "emitWarning", + "ranges": [{ "startOffset": 3515, "endOffset": 4888, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4792, "endOffset": 4830, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createWarningObject", + "ranges": [{ "startOffset": 5022, "endOffset": 5765, "count": 1 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "45", + "url": "node:internal/source_map/source_map_cache", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 885, "endOffset": 1013, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "getSourceMapsSupport", + "ranges": [{ "startOffset": 1883, "endOffset": 1978, "count": 411 }], + "isBlockCoverage": false + }, + { + "functionName": "setSourceMapsSupport", + "ranges": [{ "startOffset": 2182, "endOffset": 2951, "count": 3 }], + "isBlockCoverage": false + }, + { + "functionName": "extractSourceURLMagicComment", + "ranges": [{ "startOffset": 3269, "endOffset": 3869, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "maybeCacheSourceMap", + "ranges": [{ "startOffset": 5496, "endOffset": 7016, "count": 630 }], + "isBlockCoverage": false + }, + { + "functionName": "maybeCacheGeneratedSourceMap", + "ranges": [{ "startOffset": 7142, "endOffset": 7916, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "dataFromUrl", + "ranges": [{ "startOffset": 8316, "endOffset": 8737, "count": 355 }], + "isBlockCoverage": false + }, + { + "functionName": "lineLengths", + "ranges": [{ "startOffset": 8927, "endOffset": 9723, "count": 4 }], + "isBlockCoverage": false + }, + { + "functionName": "sourceMapFromFile", + "ranges": [{ "startOffset": 9875, "endOffset": 10122, "count": 62 }], + "isBlockCoverage": false + }, + { + "functionName": "sourceMapFromDataUrl", + "ranges": [{ "startOffset": 10216, "endOffset": 10994, "count": 293 }], + "isBlockCoverage": false + }, + { + "functionName": "sourcesToAbsolute", + "ranges": [{ "startOffset": 11266, "endOffset": 11670, "count": 355 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 11344, "endOffset": 11527, "count": 755 }], + "isBlockCoverage": false + }, + { + "functionName": "findSourceMap", + "ranges": [{ "startOffset": 12832, "endOffset": 13860, "count": 155 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "46", + "url": "node:fs", + "functions": [ + { + "functionName": "lazyLoadUtf8Stream", + "ranges": [{ "startOffset": 4202, "endOffset": 4298, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "makeCallback", + "ranges": [{ "startOffset": 4501, "endOffset": 4613, "count": 4 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4569, "endOffset": 4610, "count": 4 }], + "isBlockCoverage": false + }, + { + "functionName": "isFileType", + "ranges": [{ "startOffset": 4986, "endOffset": 5246, "count": 530 }], + "isBlockCoverage": false + }, + { + "functionName": "existsSync", + "ranges": [{ "startOffset": 6808, "endOffset": 7214, "count": 11 }], + "isBlockCoverage": false + }, + { + "functionName": "tryStatSync", + "ranges": [{ "startOffset": 9761, "endOffset": 9963, "count": 14 }], + "isBlockCoverage": false + }, + { + "functionName": "tryCreateBuffer", + "ranges": [{ "startOffset": 9965, "endOffset": 10276, "count": 14 }], + "isBlockCoverage": false + }, + { + "functionName": "tryReadSync", + "ranges": [{ "startOffset": 10278, "endOffset": 10533, "count": 14 }], + "isBlockCoverage": false + }, + { + "functionName": "readFileSync", + "ranges": [{ "startOffset": 10757, "endOffset": 12367, "count": 1928 }], + "isBlockCoverage": false + }, + { + "functionName": "close", + "ranges": [{ "startOffset": 12563, "endOffset": 12789, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "closeSync", + "ranges": [{ "startOffset": 12885, "endOffset": 12932, "count": 14 }], + "isBlockCoverage": false + }, + { + "functionName": "open", + "ranges": [{ "startOffset": 13175, "endOffset": 13678, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "openSync", + "ranges": [{ "startOffset": 13850, "endOffset": 14012, "count": 14 }], + "isBlockCoverage": false + }, + { + "functionName": "read", + "ranges": [{ "startOffset": 15055, "endOffset": 17058, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "tick", + "ranges": [{ "startOffset": 16373, "endOffset": 16429, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "wrapper", + "ranges": [{ "startOffset": 16779, "endOffset": 16932, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "readSync", + "ranges": [{ "startOffset": 17579, "endOffset": 18604, "count": 14 }], + "isBlockCoverage": false + }, + { + "functionName": "rmSync", + "ranges": [{ "startOffset": 30520, "endOffset": 30713, "count": 4 }], + "isBlockCoverage": false + }, + { + "functionName": "mkdirSync", + "ranges": [{ "startOffset": 33608, "endOffset": 34206, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "readdir", + "ranges": [{ "startOffset": 38335, "endOffset": 39189, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 38958, "endOffset": 39088, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "readdirSync", + "ranges": [{ "startOffset": 39453, "endOffset": 39932, "count": 3 }], + "isBlockCoverage": false + }, + { + "functionName": "lstatSync", + "ranges": [{ "startOffset": 43057, "endOffset": 43609, "count": 3 }], + "isBlockCoverage": false + }, + { + "functionName": "statSync", + "ranges": [{ "startOffset": 43824, "endOffset": 44120, "count": 8 }], + "isBlockCoverage": false + }, + { + "functionName": "splitRoot", + "ranges": [{ "startOffset": 69421, "endOffset": 69631, "count": 238 }], + "isBlockCoverage": false + }, + { + "functionName": "encodeRealpathResult", + "ranges": [{ "startOffset": 69636, "endOffset": 69923, "count": 1569 }], + "isBlockCoverage": false + }, + { + "functionName": "nextPart", + "ranges": [{ "startOffset": 70329, "endOffset": 70404, "count": 411 }], + "isBlockCoverage": false + }, + { + "functionName": "realpathSync", + "ranges": [{ "startOffset": 70578, "endOffset": 74269, "count": 160 }], + "isBlockCoverage": false + }, + { + "functionName": "mkdtempSync", + "ranges": [{ "startOffset": 79833, "endOffset": 80044, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "copyFileSync", + "ranges": [{ "startOffset": 81781, "endOffset": 81928, "count": 3 }], + "isBlockCoverage": false + }, + { + "functionName": "lazyLoadStreams", + "ranges": [{ "startOffset": 83048, "endOffset": 83239, "count": 7 }], + "isBlockCoverage": false + }, + { + "functionName": "createReadStream", + "ranges": [{ "startOffset": 83702, "endOffset": 83807, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "get ReadStream", + "ranges": [{ "startOffset": 86143, "endOffset": 86211, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "get WriteStream", + "ranges": [{ "startOffset": 86268, "endOffset": 86338, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "get FileReadStream", + "ranges": [{ "startOffset": 86530, "endOffset": 86606, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "get FileWriteStream", + "ranges": [{ "startOffset": 86671, "endOffset": 86749, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "get Utf8Stream", + "ranges": [{ "startOffset": 86816, "endOffset": 86887, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 88152, "endOffset": 88248, "count": 7 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "48", + "url": "node:internal/encoding", + "functions": [ + { + "functionName": "validateEncoder", + "ranges": [{ "startOffset": 1595, "endOffset": 1720, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "validateDecoder", + "ranges": [{ "startOffset": 1722, "endOffset": 1847, "count": 15 }], + "isBlockCoverage": false + }, + { + "functionName": "getEncodingFromLabel", + "ranges": [{ "startOffset": 9643, "endOffset": 9822, "count": 7 }], + "isBlockCoverage": false + }, + { + "functionName": "TextEncoder", + "ranges": [{ "startOffset": 9846, "endOffset": 9892, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "encode", + "ranges": [{ "startOffset": 9967, "endOffset": 10059, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "TextDecoder", + "ranges": [{ "startOffset": 11925, "endOffset": 13100, "count": 7 }], + "isBlockCoverage": false + }, + { + "functionName": "decode", + "ranges": [{ "startOffset": 13776, "endOffset": 16506, "count": 15 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "51", + "url": "node:internal/fs/utils", + "functions": [ + { + "functionName": "lazyLoadFs", + "ranges": [{ "startOffset": 3454, "endOffset": 3510, "count": 3 }], + "isBlockCoverage": false + }, + { + "functionName": "assertEncoding", + "ranges": [{ "startOffset": 3512, "endOffset": 3712, "count": 411 }], + "isBlockCoverage": false + }, + { + "functionName": "Dirent", + "ranges": [{ "startOffset": 3731, "endOffset": 3840, "count": 5 }], + "isBlockCoverage": false + }, + { + "functionName": "isFile", + "ranges": [{ "startOffset": 3909, "endOffset": 3966, "count": 5 }], + "isBlockCoverage": false + }, + { + "functionName": "copyObject", + "ranges": [{ "startOffset": 4637, "endOffset": 4765, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "getDirents", + "ranges": [{ "startOffset": 5424, "endOffset": 6539, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5982, "endOffset": 6233, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getOptions", + "ranges": [{ "startOffset": 7320, "endOffset": 7946, "count": 930 }], + "isBlockCoverage": false + }, + { + "functionName": "StatsBase", + "ranges": [{ "startOffset": 9278, "endOffset": 9585, "count": 9 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9621, "endOffset": 9678, "count": 5 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9710, "endOffset": 9767, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "msFromTimeSpec", + "ranges": [{ "startOffset": 10372, "endOffset": 10454, "count": 36 }], + "isBlockCoverage": false + }, + { + "functionName": "dateFromMs", + "ranges": [{ "startOffset": 10941, "endOffset": 11052, "count": 8 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 11180, "endOffset": 11245, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 11251, "endOffset": 11356, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 11445, "endOffset": 11510, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 11516, "endOffset": 11621, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 11710, "endOffset": 11775, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 11781, "endOffset": 11886, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 11979, "endOffset": 12052, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 12058, "endOffset": 12167, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "Stats", + "ranges": [{ "startOffset": 13213, "endOffset": 13603, "count": 9 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 13800, "endOffset": 14030, "count": 7 }], + "isBlockCoverage": false + }, + { + "functionName": "getStatsFromBinding", + "ranges": [{ "startOffset": 14148, "endOffset": 15227, "count": 9 }], + "isBlockCoverage": false + }, + { + "functionName": "stringToFlags", + "ranges": [{ "startOffset": 15629, "endOffset": 16885, "count": 1016 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 17711, "endOffset": 18174, "count": 16 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 18233, "endOffset": 18718, "count": 3 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 18761, "endOffset": 19473, "count": 501 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 19518, "endOffset": 19653, "count": 1515 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 19696, "endOffset": 19817, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "warnOnNonPortableTemplate", + "ranges": [{ "startOffset": 20279, "endOffset": 20879, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 23032, "endOffset": 23706, "count": 4 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 24292, "endOffset": 24761, "count": 4 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 25251, "endOffset": 25456, "count": 3 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "52", + "url": "node:internal/process/permission", + "functions": [ + { + "functionName": "isEnabled", + "ranges": [{ "startOffset": 321, "endOffset": 519, "count": 5 }], + "isBlockCoverage": false + }, + { + "functionName": "availableFlags", + "ranges": [{ "startOffset": 883, "endOffset": 1104, "count": 1 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "53", + "url": "node:internal/modules/helpers", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 1344, "endOffset": 1369, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "toRealPath", + "ranges": [{ "startOffset": 1859, "endOffset": 1991, "count": 417 }], + "isBlockCoverage": false + }, + { + "functionName": "initializeCjsConditions", + "ranges": [{ "startOffset": 2175, "endOffset": 2751, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "getCjsConditions", + "ranges": [{ "startOffset": 2844, "endOffset": 2971, "count": 411 }], + "isBlockCoverage": false + }, + { + "functionName": "getCjsConditionsArray", + "ranges": [{ "startOffset": 2973, "endOffset": 3115, "count": 411 }], + "isBlockCoverage": false + }, + { + "functionName": "loadBuiltinModule", + "ranges": [{ "startOffset": 3291, "endOffset": 3657, "count": 183 }], + "isBlockCoverage": false + }, + { + "functionName": "lazyModule", + "ranges": [{ "startOffset": 3771, "endOffset": 3864, "count": 411 }], + "isBlockCoverage": false + }, + { + "functionName": "makeRequireFunction", + "ranges": [{ "startOffset": 4066, "endOffset": 5190, "count": 891 }], + "isBlockCoverage": false + }, + { + "functionName": "require", + "ranges": [{ "startOffset": 4261, "endOffset": 4319, "count": 1755 }], + "isBlockCoverage": false + }, + { + "functionName": "resolve", + "ranges": [{ "startOffset": 4523, "endOffset": 4669, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "paths", + "ranges": [{ "startOffset": 4837, "endOffset": 4959, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stripBOM", + "ranges": [{ "startOffset": 5423, "endOffset": 5578, "count": 167 }], + "isBlockCoverage": false + }, + { + "functionName": "normalizeReferrerURL", + "ranges": [{ "startOffset": 8059, "endOffset": 8558, "count": 955 }], + "isBlockCoverage": false + }, + { + "functionName": "urlToFilename", + "ranges": [{ "startOffset": 8913, "endOffset": 9510, "count": 3 }], + "isBlockCoverage": false + }, + { + "functionName": "lazyTypes", + "ranges": [{ "startOffset": 10792, "endOffset": 10908, "count": 23 }], + "isBlockCoverage": false + }, + { + "functionName": "assertBufferSource", + "ranges": [{ "startOffset": 11410, "endOffset": 11831, "count": 23 }], + "isBlockCoverage": false + }, + { + "functionName": "stringify", + "ranges": [{ "startOffset": 12076, "endOffset": 12343, "count": 12 }], + "isBlockCoverage": false + }, + { + "functionName": "hasStartedUserCJSExecution", + "ranges": [{ "startOffset": 14795, "endOffset": 14869, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "setHasStartedUserCJSExecution", + "ranges": [{ "startOffset": 14873, "endOffset": 14950, "count": 411 }], + "isBlockCoverage": false + }, + { + "functionName": "hasStartedUserESMExecution", + "ranges": [{ "startOffset": 14954, "endOffset": 15028, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "setHasStartedUserESMExecution", + "ranges": [{ "startOffset": 15032, "endOffset": 15109, "count": 2 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "56", + "url": "node:internal/console/constructor", + "functions": [ + { + "functionName": "Console", + "ranges": [{ "startOffset": 2760, "endOffset": 5056, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4574, "endOffset": 4940, "count": 38 }], + "isBlockCoverage": false + }, + { + "functionName": "value", + "ranges": [{ "startOffset": 5677, "endOffset": 5918, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "value", + "ranges": [{ "startOffset": 6143, "endOffset": 6722, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 6352, "endOffset": 6416, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 6428, "endOffset": 6458, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 6588, "endOffset": 6652, "count": 4 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 6664, "endOffset": 6694, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "value", + "ranges": [{ "startOffset": 6814, "endOffset": 8272, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "value", + "ranges": [{ "startOffset": 8364, "endOffset": 9827, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "value", + "ranges": [{ "startOffset": 11054, "endOffset": 11482, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "createWriteErrorHandler", + "ranges": [{ "startOffset": 11572, "endOffset": 12461, "count": 4 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 11640, "endOffset": 12458, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "warn", + "ranges": [{ "startOffset": 13203, "endOffset": 13358, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 13363, "endOffset": 13521, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "initializeGlobalConsole", + "ranges": [{ "startOffset": 20685, "endOffset": 21675, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 21570, "endOffset": 21671, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "58", + "url": "node:internal/event_target", + "functions": [ + { + "functionName": "isEvent", + "ranges": [{ "startOffset": 2282, "endOffset": 2354, "count": 6 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2372, "endOffset": 2514, "count": 3 }], + "isBlockCoverage": false + }, + { + "functionName": "Event", + "ranges": [{ "startOffset": 2672, "endOffset": 3188, "count": 3 }], + "isBlockCoverage": false + }, + { + "functionName": "get type", + "ranges": [{ "startOffset": 5193, "endOffset": 5300, "count": 3 }], + "isBlockCoverage": false + }, + { + "functionName": "get defaultPrevented", + "ranges": [{ "startOffset": 5492, "endOffset": 5642, "count": 3 }], + "isBlockCoverage": false + }, + { + "functionName": "Listener", + "ranges": [{ "startOffset": 11230, "endOffset": 12694, "count": 18 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 12521, "endOffset": 12651, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get once", + "ranges": [{ "startOffset": 12698, "endOffset": 12758, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "get passive", + "ranges": [{ "startOffset": 12830, "endOffset": 12896, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "get isNodeStyleListener", + "ranges": [{ "startOffset": 12899, "endOffset": 12979, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "get weak", + "ranges": [{ "startOffset": 12982, "endOffset": 13042, "count": 19 }], + "isBlockCoverage": false + }, + { + "functionName": "get removed", + "ranges": [{ "startOffset": 13142, "endOffset": 13208, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "set removed", + "ranges": [{ "startOffset": 13211, "endOffset": 13328, "count": 18 }], + "isBlockCoverage": false + }, + { + "functionName": "initEventTarget", + "ranges": [{ "startOffset": 13764, "endOffset": 13983, "count": 8 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 14276, "endOffset": 15132, "count": 18 }], + "isBlockCoverage": false + }, + { + "functionName": "addEventListener", + "ranges": [{ "startOffset": 15575, "endOffset": 18556, "count": 18 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 16627, "endOffset": 16705, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "dispatchEvent", + "ranges": [{ "startOffset": 20246, "endOffset": 20706, "count": 3 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 20710, "endOffset": 23225, "count": 4 }], + "isBlockCoverage": false + }, + { + "functionName": "createEvent", + "ranges": [{ "startOffset": 20778, "endOffset": 20978, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "iterationCondition", + "ranges": [{ "startOffset": 21361, "endOffset": 21526, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "initNodeEventTarget", + "ranges": [{ "startOffset": 23951, "endOffset": 24014, "count": 7 }], + "isBlockCoverage": false + }, + { + "functionName": "on", + "ranges": [{ "startOffset": 25956, "endOffset": 26161, "count": 18 }], + "isBlockCoverage": false + }, + { + "functionName": "validateEventListener", + "ranges": [{ "startOffset": 28026, "endOffset": 28398, "count": 18 }], + "isBlockCoverage": false + }, + { + "functionName": "validateEventListenerOptions", + "ranges": [{ "startOffset": 28400, "endOffset": 28958, "count": 18 }], + "isBlockCoverage": false + }, + { + "functionName": "isEventTarget", + "ranges": [{ "startOffset": 29263, "endOffset": 29339, "count": 21 }], + "isBlockCoverage": false + }, + { + "functionName": "isNodeEventTarget", + "ranges": [{ "startOffset": 29341, "endOffset": 29425, "count": 18 }], + "isBlockCoverage": false + }, + { + "functionName": "addCatch", + "ranges": [{ "startOffset": 29427, "endOffset": 29741, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 29573, "endOffset": 29733, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "defineEventHandler", + "ranges": [{ "startOffset": 30237, "endOffset": 31711, "count": 6 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 30397, "endOffset": 30537, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 30636, "endOffset": 31478, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "59", + "url": "node:util", + "functions": [ + { + "functionName": "lazyAbortController", + "ranges": [{ "startOffset": 2757, "endOffset": 2877, "count": 3 }], + "isBlockCoverage": false + }, + { + "functionName": "getSystemErrorName", + "ranges": [{ "startOffset": 10002, "endOffset": 10218, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "deprecate", + "ranges": [{ "startOffset": 14442, "endOffset": 14576, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "get transferableAbortSignal", + "ranges": [{ "startOffset": 15693, "endOffset": 15786, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "get transferableAbortController", + "ranges": [{ "startOffset": 15790, "endOffset": 15891, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "get aborted", + "ranges": [{ "startOffset": 15895, "endOffset": 15956, "count": 1 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "60", + "url": "node:internal/streams/utils", + "functions": [ + { + "functionName": "isIterable", + "ranges": [{ "startOffset": 2909, "endOffset": 3239, "count": 6 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "63", + "url": "node:internal/bootstrap/switches/is_main_thread", + "functions": [ + { + "functionName": "createWritableStdioStream", + "ranges": [{ "startOffset": 1428, "endOffset": 3030, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "write", + "ranges": [{ "startOffset": 2845, "endOffset": 2892, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addCleanup", + "ranges": [{ "startOffset": 3643, "endOffset": 3734, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "getStdout", + "ranges": [{ "startOffset": 3736, "endOffset": 4428, "count": 11 }], + "isBlockCoverage": false + }, + { + "functionName": "cleanupStdout", + "ranges": [{ "startOffset": 4094, "endOffset": 4272, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getStderr", + "ranges": [{ "startOffset": 4430, "endOffset": 5121, "count": 12 }], + "isBlockCoverage": false + }, + { + "functionName": "cleanupStderr", + "ranges": [{ "startOffset": 4787, "endOffset": 4965, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "64", + "url": "node:internal/v8/startup_snapshot", + "functions": [ + { + "functionName": "isBuildingSnapshot", + "ranges": [{ "startOffset": 433, "endOffset": 504, "count": 10 }], + "isBlockCoverage": false + }, + { + "functionName": "throwIfBuildingSnapshot", + "ranges": [{ "startOffset": 627, "endOffset": 758, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "runDeserializeCallbacks", + "ranges": [{ "startOffset": 831, "endOffset": 1004, "count": 1 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "65", + "url": "node:internal/process/signal", + "functions": [ + { + "functionName": "isSignal", + "ranges": [{ "startOffset": 238, "endOffset": 334, "count": 11 }], + "isBlockCoverage": false + }, + { + "functionName": "startListeningIfSignal", + "ranges": [{ "startOffset": 398, "endOffset": 908, "count": 11 }], + "isBlockCoverage": false + }, + { + "functionName": "stopListeningIfSignal", + "ranges": [{ "startOffset": 910, "endOffset": 1105, "count": 10 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "66", + "url": "node:url", + "functions": [ + { + "functionName": "pathToFileURL", + "ranges": [{ "startOffset": 32485, "endOffset": 32599, "count": 293 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "67", + "url": "node:internal/modules/cjs/loader", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 5438, "endOffset": 5481, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6206, "endOffset": 6265, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6354, "endOffset": 6392, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "wrapModuleLoad", + "ranges": [{ "startOffset": 6648, "endOffset": 7335, "count": 1504 }], + "isBlockCoverage": false + }, + { + "functionName": "stat", + "ranges": [{ "startOffset": 7494, "endOffset": 8053, "count": 481 }], + "isBlockCoverage": false + }, + { + "functionName": "updateChildren", + "ranges": [{ "startOffset": 8563, "endOffset": 8765, "count": 1733 }], + "isBlockCoverage": false + }, + { + "functionName": "reportModuleToWatchMode", + "ranges": [{ "startOffset": 8901, "endOffset": 9057, "count": 411 }], + "isBlockCoverage": false + }, + { + "functionName": "reportModuleNotFoundToWatchMode", + "ranges": [{ "startOffset": 9260, "endOffset": 9499, "count": 413 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9446, "endOffset": 9488, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Module", + "ranges": [{ "startOffset": 9609, "endOffset": 9913, "count": 1400 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 11922, "endOffset": 11947, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "initializeCJS", + "ranges": [{ "startOffset": 12686, "endOffset": 13285, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 12943, "endOffset": 12967, "count": 73 }], + "isBlockCoverage": false + }, + { + "functionName": "_readPackage", + "ranges": [{ "startOffset": 13532, "endOffset": 13614, "count": 411 }], + "isBlockCoverage": false + }, + { + "functionName": "tryPackage", + "ranges": [{ "startOffset": 14240, "endOffset": 15438, "count": 131 }], + "isBlockCoverage": false + }, + { + "functionName": "tryFile", + "ranges": [{ "startOffset": 15830, "endOffset": 16093, "count": 568 }], + "isBlockCoverage": false + }, + { + "functionName": "tryExtensions", + "ranges": [{ "startOffset": 16385, "endOffset": 16605, "count": 267 }], + "isBlockCoverage": false + }, + { + "functionName": "findLongestRegisteredExtension", + "ranges": [{ "startOffset": 16810, "endOffset": 17286, "count": 803 }], + "isBlockCoverage": false + }, + { + "functionName": "trySelfParentPath", + "ranges": [{ "startOffset": 17441, "endOffset": 17734, "count": 2753 }], + "isBlockCoverage": false + }, + { + "functionName": "trySelf", + "ranges": [{ "startOffset": 18000, "endOffset": 18914, "count": 1091 }], + "isBlockCoverage": false + }, + { + "functionName": "resolveExports", + "ranges": [{ "startOffset": 19366, "endOffset": 20188, "count": 1517 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 20481, "endOffset": 24100, "count": 434 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 26227, "endOffset": 27415, "count": 7 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 27578, "endOffset": 28865, "count": 1795 }], + "isBlockCoverage": false + }, + { + "functionName": "getExportsForCircularRequire", + "ranges": [{ "startOffset": 30361, "endOffset": 31365, "count": 41 }], + "isBlockCoverage": false + }, + { + "functionName": "resolveForCJSWithHooks", + "ranges": [{ "startOffset": 31695, "endOffset": 34856, "count": 1857 }], + "isBlockCoverage": false + }, + { + "functionName": "defaultResolveImpl", + "ranges": [{ "startOffset": 31853, "endOffset": 32559, "count": 2699 }], + "isBlockCoverage": false + }, + { + "functionName": "defaultResolve", + "ranges": [{ "startOffset": 33148, "endOffset": 34217, "count": 411 }], + "isBlockCoverage": false + }, + { + "functionName": "defaultLoadImpl", + "ranges": [{ "startOffset": 35261, "endOffset": 35791, "count": 543 }], + "isBlockCoverage": false + }, + { + "functionName": "getDefaultLoad", + "ranges": [{ "startOffset": 36060, "endOffset": 36656, "count": 241 }], + "isBlockCoverage": false + }, + { + "functionName": "defaultLoad", + "ranges": [{ "startOffset": 36110, "endOffset": 36653, "count": 241 }], + "isBlockCoverage": false + }, + { + "functionName": "loadBuiltinWithHooks", + "ranges": [{ "startOffset": 37209, "endOffset": 38223, "count": 173 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 38989, "endOffset": 44507, "count": 2109 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 45072, "endOffset": 48098, "count": 2034 }], + "isBlockCoverage": false + }, + { + "functionName": "finalizeEsmResolution", + "ranges": [{ "startOffset": 48561, "endOffset": 49058, "count": 357 }], + "isBlockCoverage": false + }, + { + "functionName": "createEsmNotFoundErr", + "ranges": [{ "startOffset": 49282, "endOffset": 49578, "count": 4 }], + "isBlockCoverage": false + }, + { + "functionName": "getExtensionForFormat", + "ranges": [{ "startOffset": 49580, "endOffset": 49758, "count": 8 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 49926, "endOffset": 50633, "count": 1069 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 50855, "endOffset": 51156, "count": 826 }], + "isBlockCoverage": false + }, + { + "functionName": "loadESMFromCJS", + "ranges": [{ "startOffset": 51565, "endOffset": 54258, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 51840, "endOffset": 52013, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "populateCJSExportsFromESM", + "ranges": [{ "startOffset": 54524, "endOffset": 56606, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "wrapSafe", + "ranges": [{ "startOffset": 56979, "endOffset": 59004, "count": 1235 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 59473, "endOffset": 61205, "count": 1253 }], + "isBlockCoverage": false + }, + { + "functionName": "loadSource", + "ranges": [{ "startOffset": 61630, "endOffset": 62695, "count": 740 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 64684, "endOffset": 66271, "count": 437 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 66453, "endOffset": 66715, "count": 167 }], + "isBlockCoverage": false + }, + { + "functionName": "createRequireFromPath", + "ranges": [{ "startOffset": 67222, "endOffset": 67846, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "createRequire", + "ranges": [{ "startOffset": 68298, "endOffset": 69111, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "isRelative", + "ranges": [{ "startOffset": 69261, "endOffset": 69602, "count": 1617 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 69722, "endOffset": 70687, "count": 1 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "68", + "url": "node:internal/modules/customization_hooks", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 679, "endOffset": 704, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "ModuleHooks", + "ranges": [{ "startOffset": 1757, "endOffset": 2144, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "registerHooks", + "ranges": [{ "startOffset": 3058, "endOffset": 3296, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "convertCJSFilenameToURL", + "ranges": [{ "startOffset": 3355, "endOffset": 3891, "count": 412 }], + "isBlockCoverage": false + }, + { + "functionName": "buildHooks", + "ranges": [{ "startOffset": 4895, "endOffset": 6448, "count": 278 }], + "isBlockCoverage": false + }, + { + "functionName": "wrapHook", + "ranges": [{ "startOffset": 5591, "endOffset": 6210, "count": 412 }], + "isBlockCoverage": false + }, + { + "functionName": "nextStep", + "ranges": [{ "startOffset": 5654, "endOffset": 6205, "count": 412 }], + "isBlockCoverage": false + }, + { + "functionName": "validateResolve", + "ranges": [{ "startOffset": 7104, "endOffset": 7834, "count": 412 }], + "isBlockCoverage": false + }, + { + "functionName": "validateLoadStrict", + "ranges": [{ "startOffset": 8398, "endOffset": 8554, "count": 414 }], + "isBlockCoverage": false + }, + { + "functionName": "validateSourceStrict", + "ranges": [{ "startOffset": 8718, "endOffset": 9393, "count": 414 }], + "isBlockCoverage": false + }, + { + "functionName": "validateFormat", + "ranges": [{ "startOffset": 9809, "endOffset": 10069, "count": 414 }], + "isBlockCoverage": false + }, + { + "functionName": "ModuleResolveContext", + "ranges": [{ "startOffset": 10325, "endOffset": 10574, "count": 411 }], + "isBlockCoverage": false + }, + { + "functionName": "ModuleLoadContext", + "ranges": [{ "startOffset": 10817, "endOffset": 10978, "count": 241 }], + "isBlockCoverage": false + }, + { + "functionName": "loadWithHooks", + "ranges": [{ "startOffset": 11458, "endOffset": 12406, "count": 241 }], + "isBlockCoverage": false + }, + { + "functionName": "resolveWithHooks", + "ranges": [{ "startOffset": 12779, "endOffset": 13251, "count": 411 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "69", + "url": "node:internal/modules/package_json_reader", + "functions": [ + { + "functionName": "deserializePackageJSON", + "ranges": [{ "startOffset": 1133, "endOffset": 2579, "count": 623 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1877, "endOffset": 2103, "count": 411 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2272, "endOffset": 2498, "count": 415 }], + "isBlockCoverage": false + }, + { + "functionName": "requiresJSONParse", + "ranges": [{ "startOffset": 2830, "endOffset": 2904, "count": 413 }], + "isBlockCoverage": false + }, + { + "functionName": "read", + "ranges": [{ "startOffset": 3139, "endOffset": 3685, "count": 626 }], + "isBlockCoverage": false + }, + { + "functionName": "getNearestParentPackageJSON", + "ranges": [{ "startOffset": 4761, "endOffset": 5493, "count": 854 }], + "isBlockCoverage": false + }, + { + "functionName": "getPackageScopeConfig", + "ranges": [{ "startOffset": 5721, "endOffset": 6241, "count": 81 }], + "isBlockCoverage": false + }, + { + "functionName": "parsePackageName", + "ranges": [{ "startOffset": 6719, "endOffset": 7777, "count": 3 }], + "isBlockCoverage": false + }, + { + "functionName": "getPackageJSONURL", + "ranges": [{ "startOffset": 7779, "endOffset": 9096, "count": 3 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "70", + "url": "node:internal/modules/esm/utils", + "functions": [ + { + "functionName": "getDefaultConditions", + "ranges": [{ "startOffset": 1170, "endOffset": 1276, "count": 50 }], + "isBlockCoverage": false + }, + { + "functionName": "getDefaultConditionsSet", + "ranges": [{ "startOffset": 1429, "endOffset": 1544, "count": 49 }], + "isBlockCoverage": false + }, + { + "functionName": "initializeDefaultConditions", + "ranges": [{ "startOffset": 1713, "endOffset": 2218, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "getConditionsSet", + "ranges": [{ "startOffset": 2288, "endOffset": 2647, "count": 49 }], + "isBlockCoverage": false + }, + { + "functionName": "defaultInitializeImportMetaForModule", + "ranges": [{ "startOffset": 5932, "endOffset": 6182, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "initializeImportMetaObject", + "ranges": [{ "startOffset": 6496, "endOffset": 6951, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "defaultImportModuleDynamicallyForModule", + "ranges": [{ "startOffset": 7414, "endOffset": 7683, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "importModuleDynamicallyCallback", + "ranges": [{ "startOffset": 9140, "endOffset": 10699, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "initializeESM", + "ranges": [{ "startOffset": 10902, "endOffset": 11314, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "shouldSpawnLoaderHookWorker", + "ranges": [{ "startOffset": 11457, "endOffset": 11538, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "compileSourceTextModule", + "ranges": [{ "startOffset": 12077, "endOffset": 12643, "count": 12 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "72", + "url": "node:internal/modules/run_main", + "functions": [ + { + "functionName": "resolveMainPath", + "ranges": [{ "startOffset": 749, "endOffset": 1347, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "shouldUseESMLoader", + "ranges": [{ "startOffset": 1530, "endOffset": 2844, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "executeUserEntryPoint", + "ranges": [{ "startOffset": 5151, "endOffset": 6277, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6019, "endOffset": 6269, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "73", + "url": "node:internal/dns/utils", + "functions": [ + { + "functionName": "initializeDns", + "ranges": [{ "startOffset": 5863, "endOffset": 6320, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6260, "endOffset": 6316, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "75", + "url": "node:internal/process/pre_execution", + "functions": [ + { + "functionName": "prepareMainThreadExecution", + "ranges": [{ "startOffset": 853, "endOffset": 1134, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "prepareExecution", + "ranges": [{ "startOffset": 2844, "endOffset": 5151, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "setupVmModules", + "ranges": [{ "startOffset": 5153, "endOffset": 5652, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "setupHttpProxy", + "ranges": [{ "startOffset": 5654, "endOffset": 6628, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "initializeModuleLoaders", + "ranges": [{ "startOffset": 6630, "endOffset": 7949, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "refreshRuntimeOptions", + "ranges": [{ "startOffset": 7951, "endOffset": 8007, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "patchProcessObject", + "ranges": [{ "startOffset": 8457, "endOffset": 10794, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "addReadOnlyProcessAlias", + "ranges": [{ "startOffset": 10796, "endOffset": 11077, "count": 13 }], + "isBlockCoverage": false + }, + { + "functionName": "setupWarningHandler", + "ranges": [{ "startOffset": 11079, "endOffset": 11599, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 11483, "endOffset": 11585, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setupWebsocket", + "ranges": [{ "startOffset": 11640, "endOffset": 11795, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "setupEventsource", + "ranges": [{ "startOffset": 11863, "endOffset": 11988, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "setupNavigator", + "ranges": [{ "startOffset": 12092, "endOffset": 12493, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "setupSQLite", + "ranges": [{ "startOffset": 12495, "endOffset": 12702, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "initializeConfigFileSupport", + "ranges": [{ "startOffset": 12704, "endOffset": 12925, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "setupQuic", + "ranges": [{ "startOffset": 12927, "endOffset": 13126, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "setupWebStorage", + "ranges": [{ "startOffset": 13128, "endOffset": 13533, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "setupCodeCoverage", + "ranges": [{ "startOffset": 13535, "endOffset": 14056, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "setupStacktracePrinterOnSigint", + "ranges": [{ "startOffset": 14058, "endOffset": 14224, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "initializeReport", + "ranges": [{ "startOffset": 14226, "endOffset": 14475, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 14371, "endOffset": 14466, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setupDebugEnv", + "ranges": [{ "startOffset": 14477, "endOffset": 14708, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "initializeReportSignalHandlers", + "ranges": [{ "startOffset": 14770, "endOffset": 14958, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "initializeHeapSnapshotSignalHandlers", + "ranges": [{ "startOffset": 14960, "endOffset": 15694, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "doWriteHeapSnapshot", + "ranges": [{ "startOffset": 15268, "endOffset": 15422, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 15614, "endOffset": 15686, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setupTraceCategoryState", + "ranges": [{ "startOffset": 15696, "endOffset": 15955, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "setupInspectorHooks", + "ranges": [{ "startOffset": 15957, "endOffset": 16539, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "setupNetworkInspection", + "ranges": [{ "startOffset": 16541, "endOffset": 16854, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "initializeDeprecations", + "ranges": [{ "startOffset": 17049, "endOffset": 18951, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "setupChildProcessIpcChannel", + "ranges": [{ "startOffset": 18953, "endOffset": 19470, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "initializeClusterIPC", + "ranges": [{ "startOffset": 19472, "endOffset": 19742, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "initializePermission", + "ranges": [{ "startOffset": 19744, "endOffset": 21540, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "binding", + "ranges": [{ "startOffset": 19873, "endOffset": 19960, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 21385, "endOffset": 21532, "count": 7 }], + "isBlockCoverage": false + }, + { + "functionName": "initializeSourceMapsHandlers", + "ranges": [{ "startOffset": 21542, "endOffset": 22048, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "initializeFrozenIntrinsics", + "ranges": [{ "startOffset": 22050, "endOffset": 22237, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "loadPreloadModules", + "ranges": [{ "startOffset": 22344, "endOffset": 22692, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "markBootstrapComplete", + "ranges": [{ "startOffset": 22694, "endOffset": 22788, "count": 1 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "76", + "url": "node:internal/bootstrap/switches/does_own_process_state", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 3373, "endOffset": 3408, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "wrappedCwd", + "ranges": [{ "startOffset": 3731, "endOffset": 3834, "count": 2 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "77", + "url": "node:internal/main/run_main_module", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1232, "count": 1 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "78", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/bin/cucumber.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 61, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "79", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/cli/run.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1362, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 70, "endOffset": 151, "count": 1 }, + { "startOffset": 128, "endOffset": 148, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "logErrorMessageAndExit", + "ranges": [{ "startOffset": 544, "endOffset": 637, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "run", + "ranges": [ + { "startOffset": 638, "endOffset": 1330, "count": 1 }, + { "startOffset": 1091, "endOffset": 1151, "count": 0 }, + { "startOffset": 1192, "endOffset": 1195, "count": 0 }, + { "startOffset": 1235, "endOffset": 1274, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 744, "endOffset": 817, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "80", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/cli/validate_node_engine_version.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1396, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 70, "endOffset": 151, "count": 3 }, + { "startOffset": 122, "endOffset": 127, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "readActualPackageJSON", + "ranges": [{ "startOffset": 476, "endOffset": 613, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "validateNodeEngineVersion", + "ranges": [ + { "startOffset": 615, "endOffset": 1339, "count": 1 }, + { "startOffset": 926, "endOffset": 1058, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "81", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/node_modules/semver/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2616, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "82", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/node_modules/semver/internal/re.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 7998, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "makeSafeRegex", + "ranges": [ + { "startOffset": 987, "endOffset": 1198, "count": 43 }, + { "startOffset": 1052, "endOffset": 1181, "count": 129 } + ], + "isBlockCoverage": true + }, + { + "functionName": "createToken", + "ranges": [ + { "startOffset": 1220, "endOffset": 1520, "count": 43 }, + { "startOffset": 1437, "endOffset": 1442, "count": 5 }, + { "startOffset": 1443, "endOffset": 1454, "count": 38 }, + { "startOffset": 1500, "endOffset": 1505, "count": 5 }, + { "startOffset": 1506, "endOffset": 1517, "count": 38 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "83", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/node_modules/semver/internal/constants.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 859, "count": 1 }, + { "startOffset": 233, "endOffset": 279, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "84", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/node_modules/semver/internal/debug.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 226, "count": 1 }, + { "startOffset": 91, "endOffset": 138, "count": 0 }, + { "startOffset": 141, "endOffset": 188, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "debug", + "ranges": [{ "startOffset": 143, "endOffset": 188, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "debug", + "ranges": [{ "startOffset": 193, "endOffset": 201, "count": 192 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "85", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/node_modules/semver/classes/semver.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 9338, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "SemVer", + "ranges": [ + { "startOffset": 325, "endOffset": 2250, "count": 43 }, + { "startOffset": 430, "endOffset": 633, "count": 30 }, + { "startOffset": 578, "endOffset": 627, "count": 0 }, + { "startOffset": 633, "endOffset": 773, "count": 13 }, + { "startOffset": 672, "endOffset": 773, "count": 0 }, + { "startOffset": 773, "endOffset": 812, "count": 13 }, + { "startOffset": 812, "endOffset": 912, "count": 0 }, + { "startOffset": 912, "endOffset": 1251, "count": 13 }, + { "startOffset": 1251, "endOffset": 1264, "count": 0 }, + { "startOffset": 1265, "endOffset": 1277, "count": 13 }, + { "startOffset": 1292, "endOffset": 1356, "count": 0 }, + { "startOffset": 1356, "endOffset": 1541, "count": 13 }, + { "startOffset": 1543, "endOffset": 1601, "count": 0 }, + { "startOffset": 1601, "endOffset": 1658, "count": 13 }, + { "startOffset": 1660, "endOffset": 1718, "count": 0 }, + { "startOffset": 1718, "endOffset": 1775, "count": 13 }, + { "startOffset": 1777, "endOffset": 1835, "count": 0 }, + { "startOffset": 1835, "endOffset": 1896, "count": 13 }, + { "startOffset": 1896, "endOffset": 1930, "count": 8 }, + { "startOffset": 1930, "endOffset": 2182, "count": 5 }, + { "startOffset": 2182, "endOffset": 2206, "count": 13 }, + { "startOffset": 2206, "endOffset": 2223, "count": 0 }, + { "startOffset": 2224, "endOffset": 2228, "count": 13 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 1982, "endOffset": 2175, "count": 5 }, + { "startOffset": 2149, "endOffset": 2174, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "format", + "ranges": [ + { "startOffset": 2254, "endOffset": 2450, "count": 13 }, + { "startOffset": 2361, "endOffset": 2422, "count": 5 } + ], + "isBlockCoverage": true + }, + { + "functionName": "toString", + "ranges": [{ "startOffset": 2454, "endOffset": 2495, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "compare", + "ranges": [ + { "startOffset": 2499, "endOffset": 2889, "count": 15 }, + { "startOffset": 2616, "endOffset": 2759, "count": 0 }, + { "startOffset": 2801, "endOffset": 2823, "count": 0 }, + { "startOffset": 2860, "endOffset": 2885, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "compareMain", + "ranges": [ + { "startOffset": 2893, "endOffset": 3184, "count": 15 }, + { "startOffset": 2951, "endOffset": 3004, "count": 0 }, + { "startOffset": 3069, "endOffset": 3121, "count": 1 }, + { "startOffset": 3122, "endOffset": 3174, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "comparePre", + "ranges": [{ "startOffset": 3188, "endOffset": 4039, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "compareBuild", + "ranges": [{ "startOffset": 4043, "endOffset": 4580, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inc", + "ranges": [{ "startOffset": 4733, "endOffset": 9310, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "86", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/node_modules/semver/internal/parse-options.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 324, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "parseOptions", + "ranges": [ + { "startOffset": 153, "endOffset": 293, "count": 56 }, + { "startOffset": 182, "endOffset": 208, "count": 15 }, + { "startOffset": 208, "endOffset": 245, "count": 41 }, + { "startOffset": 245, "endOffset": 273, "count": 0 }, + { "startOffset": 273, "endOffset": 292, "count": 41 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "87", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/node_modules/semver/internal/identifiers.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 410, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "compareIdentifiers", + "ranges": [ + { "startOffset": 54, "endOffset": 278, "count": 16 }, + { "startOffset": 195, "endOffset": 198, "count": 1 }, + { "startOffset": 203, "endOffset": 276, "count": 15 }, + { "startOffset": 221, "endOffset": 225, "count": 0 }, + { "startOffset": 248, "endOffset": 251, "count": 0 }, + { "startOffset": 264, "endOffset": 268, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "rcompareIdentifiers", + "ranges": [{ "startOffset": 308, "endOffset": 342, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "88", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/node_modules/semver/functions/parse.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 317, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "parse", + "ranges": [{ "startOffset": 58, "endOffset": 292, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "89", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/node_modules/semver/functions/valid.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 162, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "valid", + "ranges": [{ "startOffset": 47, "endOffset": 138, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "90", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/node_modules/semver/functions/clean.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 191, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "clean", + "ranges": [{ "startOffset": 47, "endOffset": 167, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "91", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/node_modules/semver/functions/inc.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 464, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "inc", + "ranges": [{ "startOffset": 57, "endOffset": 442, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "92", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/node_modules/semver/functions/diff.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1407, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "diff", + "ranges": [{ "startOffset": 50, "endOffset": 1383, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "93", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/node_modules/semver/functions/major.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 122, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "major", + "ranges": [{ "startOffset": 58, "endOffset": 98, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "94", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/node_modules/semver/functions/minor.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 122, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "minor", + "ranges": [{ "startOffset": 58, "endOffset": 98, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "95", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/node_modules/semver/functions/patch.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 122, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "patch", + "ranges": [{ "startOffset": 58, "endOffset": 98, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "96", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/node_modules/semver/functions/prerelease.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 220, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "prerelease", + "ranges": [{ "startOffset": 52, "endOffset": 191, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "97", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/node_modules/semver/functions/compare.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 156, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "compare", + "ranges": [{ "startOffset": 60, "endOffset": 129, "count": 15 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "98", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/node_modules/semver/functions/rcompare.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 118, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "rcompare", + "ranges": [{ "startOffset": 54, "endOffset": 91, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "99", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/node_modules/semver/functions/compare-loose.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 118, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "compareLoose", + "ranges": [{ "startOffset": 58, "endOffset": 87, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "100", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/node_modules/semver/functions/compare-build.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 267, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "compareBuild", + "ranges": [{ "startOffset": 65, "endOffset": 236, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "101", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/node_modules/semver/functions/sort.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 147, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "sort", + "ranges": [{ "startOffset": 61, "endOffset": 124, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "102", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/node_modules/semver/functions/rsort.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 149, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "rsort", + "ranges": [{ "startOffset": 62, "endOffset": 125, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "103", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/node_modules/semver/functions/gt.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 110, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "gt", + "ranges": [{ "startOffset": 48, "endOffset": 89, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "104", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/node_modules/semver/functions/lt.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 110, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "lt", + "ranges": [{ "startOffset": 48, "endOffset": 89, "count": 7 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "105", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/node_modules/semver/functions/eq.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 112, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "eq", + "ranges": [{ "startOffset": 48, "endOffset": 91, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "106", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/node_modules/semver/functions/neq.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 114, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "neq", + "ranges": [{ "startOffset": 49, "endOffset": 92, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "107", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/node_modules/semver/functions/gte.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 113, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "gte", + "ranges": [{ "startOffset": 49, "endOffset": 91, "count": 8 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "108", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/node_modules/semver/functions/lte.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 113, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "lte", + "ranges": [{ "startOffset": 49, "endOffset": 91, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "109", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/node_modules/semver/functions/cmp.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 947, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "cmp", + "ranges": [ + { "startOffset": 181, "endOffset": 925, "count": 15 }, + { "startOffset": 224, "endOffset": 386, "count": 0 }, + { "startOffset": 392, "endOffset": 554, "count": 0 }, + { "startOffset": 560, "endOffset": 568, "count": 0 }, + { "startOffset": 573, "endOffset": 582, "count": 0 }, + { "startOffset": 587, "endOffset": 626, "count": 0 }, + { "startOffset": 632, "endOffset": 672, "count": 0 }, + { "startOffset": 678, "endOffset": 716, "count": 0 }, + { "startOffset": 722, "endOffset": 762, "count": 8 }, + { "startOffset": 768, "endOffset": 806, "count": 7 }, + { "startOffset": 812, "endOffset": 852, "count": 0 }, + { "startOffset": 858, "endOffset": 919, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "110", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/node_modules/semver/functions/coerce.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1990, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "coerce", + "ranges": [{ "startOffset": 145, "endOffset": 1965, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "111", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/node_modules/semver/classes/comparator.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3617, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get ANY", + "ranges": [{ "startOffset": 100, "endOffset": 131, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "Comparator", + "ranges": [ + { "startOffset": 135, "endOffset": 682, "count": 11 }, + { "startOffset": 238, "endOffset": 358, "count": 0 }, + { "startOffset": 556, "endOffset": 585, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "parse", + "ranges": [ + { "startOffset": 686, "endOffset": 1182, "count": 11 }, + { "startOffset": 734, "endOffset": 757, "count": 0 }, + { "startOffset": 818, "endOffset": 882, "count": 0 }, + { "startOffset": 930, "endOffset": 934, "count": 0 }, + { "startOffset": 966, "endOffset": 998, "count": 0 }, + { "startOffset": 1077, "endOffset": 1108, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "toString", + "ranges": [{ "startOffset": 1186, "endOffset": 1225, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "test", + "ranges": [ + { "startOffset": 1229, "endOffset": 1609, "count": 15 }, + { "startOffset": 1353, "endOffset": 1378, "count": 0 }, + { "startOffset": 1417, "endOffset": 1538, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "intersects", + "ranges": [{ "startOffset": 1613, "endOffset": 3323, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "112", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/node_modules/semver/classes/range.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 14924, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Range", + "ranges": [ + { "startOffset": 88, "endOffset": 2098, "count": 2 }, + { "startOffset": 188, "endOffset": 412, "count": 0 }, + { "startOffset": 451, "endOffset": 608, "count": 0 }, + { "startOffset": 1414, "endOffset": 1484, "count": 0 }, + { "startOffset": 1767, "endOffset": 1803, "count": 0 }, + { "startOffset": 1933, "endOffset": 2048, "count": 8 }, + { "startOffset": 1964, "endOffset": 1978, "count": 1 }, + { "startOffset": 1980, "endOffset": 2038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1117, "endOffset": 1147, "count": 8 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1372, "endOffset": 1385, "count": 8 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1711, "endOffset": 1732, "count": 8 }], + "isBlockCoverage": true + }, + { + "functionName": "get range", + "ranges": [{ "startOffset": 2102, "endOffset": 2557, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "format", + "ranges": [{ "startOffset": 2561, "endOffset": 2598, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toString", + "ranges": [{ "startOffset": 2602, "endOffset": 2641, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseRange", + "ranges": [ + { "startOffset": 2645, "endOffset": 4928, "count": 8 }, + { "startOffset": 2828, "endOffset": 2854, "count": 0 }, + { "startOffset": 2884, "endOffset": 2897, "count": 0 }, + { "startOffset": 2996, "endOffset": 3023, "count": 3 }, + { "startOffset": 3023, "endOffset": 3127, "count": 5 }, + { "startOffset": 3127, "endOffset": 3151, "count": 0 }, + { "startOffset": 3152, "endOffset": 3171, "count": 5 }, + { "startOffset": 4024, "endOffset": 4263, "count": 0 }, + { "startOffset": 4263, "endOffset": 4648, "count": 5 }, + { "startOffset": 4648, "endOffset": 4751, "count": 9 }, + { "startOffset": 4677, "endOffset": 4708, "count": 0 }, + { "startOffset": 4751, "endOffset": 4778, "count": 5 }, + { "startOffset": 4778, "endOffset": 4797, "count": 4 }, + { "startOffset": 4799, "endOffset": 4832, "count": 0 }, + { "startOffset": 4832, "endOffset": 4927, "count": 5 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3838, "endOffset": 3881, "count": 5 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3967, "endOffset": 4006, "count": 9 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4130, "endOffset": 4256, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4568, "endOffset": 4610, "count": 9 }], + "isBlockCoverage": true + }, + { + "functionName": "intersects", + "ranges": [{ "startOffset": 4932, "endOffset": 5562, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "test", + "ranges": [ + { "startOffset": 5630, "endOffset": 6012, "count": 2 }, + { "startOffset": 5665, "endOffset": 5691, "count": 0 }, + { "startOffset": 5804, "endOffset": 5845, "count": 0 }, + { "startOffset": 5899, "endOffset": 5991, "count": 8 }, + { "startOffset": 5956, "endOffset": 5985, "count": 1 }, + { "startOffset": 5991, "endOffset": 6011, "count": 1 } + ], + "isBlockCoverage": true + }, + { + "functionName": "isNullSet", + "ranges": [{ "startOffset": 6510, "endOffset": 6537, "count": 17 }], + "isBlockCoverage": true + }, + { + "functionName": "isAny", + "ranges": [{ "startOffset": 6552, "endOffset": 6571, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "isSatisfiable", + "ranges": [{ "startOffset": 6693, "endOffset": 7099, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseComparator", + "ranges": [{ "startOffset": 7269, "endOffset": 7582, "count": 5 }], + "isBlockCoverage": true + }, + { + "functionName": "isX", + "ranges": [ + { "startOffset": 7596, "endOffset": 7647, "count": 10 }, + { "startOffset": 7606, "endOffset": 7633, "count": 5 }, + { "startOffset": 7634, "endOffset": 7647, "count": 5 } + ], + "isBlockCoverage": true + }, + { + "functionName": "replaceTildes", + "ranges": [{ "startOffset": 7983, "endOffset": 8106, "count": 5 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8057, "endOffset": 8088, "count": 5 }], + "isBlockCoverage": true + }, + { + "functionName": "replaceTilde", + "ranges": [ + { "startOffset": 8129, "endOffset": 8803, "count": 5 }, + { "startOffset": 8176, "endOffset": 8194, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8234, "endOffset": 8800, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "replaceCarets", + "ranges": [{ "startOffset": 9096, "endOffset": 9219, "count": 5 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9170, "endOffset": 9201, "count": 5 }], + "isBlockCoverage": true + }, + { + "functionName": "replaceCaret", + "ranges": [ + { "startOffset": 9242, "endOffset": 10544, "count": 5 }, + { "startOffset": 9321, "endOffset": 9339, "count": 0 }, + { "startOffset": 9392, "endOffset": 9398, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9429, "endOffset": 10541, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "replaceXRanges", + "ranges": [{ "startOffset": 10569, "endOffset": 10722, "count": 5 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 10672, "endOffset": 10704, "count": 5 }], + "isBlockCoverage": true + }, + { + "functionName": "replaceXRange", + "ranges": [ + { "startOffset": 10746, "endOffset": 12446, "count": 5 }, + { "startOffset": 10814, "endOffset": 10833, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 10874, "endOffset": 12443, "count": 5 }, + { "startOffset": 11022, "endOffset": 11031, "count": 0 }, + { "startOffset": 11074, "endOffset": 11081, "count": 0 }, + { "startOffset": 11083, "endOffset": 11106, "count": 0 }, + { "startOffset": 11271, "endOffset": 11277, "count": 0 }, + { "startOffset": 11296, "endOffset": 11473, "count": 0 }, + { "startOffset": 11488, "endOffset": 11495, "count": 1 }, + { "startOffset": 11497, "endOffset": 12241, "count": 1 }, + { "startOffset": 11662, "endOffset": 11878, "count": 0 }, + { "startOffset": 11903, "endOffset": 12140, "count": 0 }, + { "startOffset": 12166, "endOffset": 12193, "count": 0 }, + { "startOffset": 12241, "endOffset": 12390, "count": 4 }, + { "startOffset": 12309, "endOffset": 12390, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "replaceStars", + "ranges": [{ "startOffset": 12592, "endOffset": 12777, "count": 5 }], + "isBlockCoverage": true + }, + { + "functionName": "replaceGTE0", + "ranges": [ + { "startOffset": 12799, "endOffset": 12954, "count": 9 }, + { "startOffset": 12926, "endOffset": 12937, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "hyphenReplace", + "ranges": [{ "startOffset": 13211, "endOffset": 13881, "count": 5 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 13220, "endOffset": 13881, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "testSet", + "ranges": [ + { "startOffset": 13899, "endOffset": 14923, "count": 8 }, + { "startOffset": 13967, "endOffset": 14030, "count": 15 }, + { "startOffset": 14000, "endOffset": 14026, "count": 7 }, + { "startOffset": 14030, "endOffset": 14064, "count": 1 }, + { "startOffset": 14064, "endOffset": 14093, "count": 0 }, + { "startOffset": 14095, "endOffset": 14906, "count": 0 }, + { "startOffset": 14906, "endOffset": 14922, "count": 1 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "113", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/node_modules/semver/internal/lrucache.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 788, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "LRUCache", + "ranges": [{ "startOffset": 19, "endOffset": 84, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [ + { "startOffset": 88, "endOffset": 348, "count": 8 }, + { "startOffset": 165, "endOffset": 195, "count": 5 }, + { "startOffset": 195, "endOffset": 344, "count": 3 } + ], + "isBlockCoverage": true + }, + { + "functionName": "delete", + "ranges": [{ "startOffset": 352, "endOffset": 402, "count": 5 }], + "isBlockCoverage": true + }, + { + "functionName": "set", + "ranges": [ + { "startOffset": 406, "endOffset": 758, "count": 5 }, + { "startOffset": 606, "endOffset": 699, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "114", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/node_modules/semver/functions/satisfies.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 233, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "satisfies", + "ranges": [ + { "startOffset": 60, "endOffset": 205, "count": 2 }, + { "startOffset": 141, "endOffset": 174, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "115", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/node_modules/semver/ranges/to-comparators.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 268, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "toComparators", + "ranges": [{ "startOffset": 115, "endOffset": 235, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "116", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/node_modules/semver/ranges/max-satisfying.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 579, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "maxSatisfying", + "ranges": [{ "startOffset": 109, "endOffset": 547, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "117", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/node_modules/semver/ranges/min-satisfying.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 577, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "minSatisfying", + "ranges": [{ "startOffset": 108, "endOffset": 545, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "118", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/node_modules/semver/ranges/min-version.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1500, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "minVersion", + "ranges": [{ "startOffset": 144, "endOffset": 1471, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "119", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/node_modules/semver/ranges/valid.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 312, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "validRange", + "ranges": [{ "startOffset": 61, "endOffset": 283, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "120", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/node_modules/semver/ranges/outside.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2190, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "outside", + "ranges": [{ "startOffset": 390, "endOffset": 2163, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "121", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/node_modules/semver/ranges/gtr.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 217, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "gtr", + "ranges": [{ "startOffset": 129, "endOffset": 195, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "122", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/node_modules/semver/ranges/ltr.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 213, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "ltr", + "ranges": [{ "startOffset": 125, "endOffset": 191, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "123", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/node_modules/semver/ranges/intersects.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 210, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "intersects", + "ranges": [{ "startOffset": 61, "endOffset": 181, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "124", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/node_modules/semver/ranges/simplify.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1341, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "module.exports", + "ranges": [{ "startOffset": 329, "endOffset": 1340, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "125", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/node_modules/semver/ranges/subset.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 7510, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "subset", + "ranges": [{ "startOffset": 1996, "endOffset": 2727, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "simpleSubset", + "ranges": [{ "startOffset": 2869, "endOffset": 6974, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "higherGT", + "ranges": [{ "startOffset": 7025, "endOffset": 7229, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lowerLT", + "ranges": [{ "startOffset": 7280, "endOffset": 7484, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "126", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/cli/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2170, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 70, "endOffset": 151, "count": 1 }, + { "startOffset": 122, "endOffset": 127, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 463, "endOffset": 509, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Cli", + "ranges": [{ "startOffset": 515, "endOffset": 722, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "run", + "ranges": [ + { "startOffset": 727, "endOffset": 2111, "count": 1 }, + { "startOffset": 833, "endOffset": 906, "count": 0 }, + { "startOffset": 1049, "endOffset": 1231, "count": 0 }, + { "startOffset": 1266, "endOffset": 1467, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "127", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/node_modules/debug/src/index.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 314, "count": 1 }, + { "startOffset": 218, "endOffset": 264, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "128", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/node_modules/debug/src/node.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 4728, "count": 1 }, + { "startOffset": 816, "endOffset": 832, "count": 0 }, + { "startOffset": 1454, "endOffset": 1555, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 334, "endOffset": 342, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1779, "endOffset": 1819, "count": 87 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1828, "endOffset": 2286, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "useColors", + "ranges": [{ "startOffset": 2362, "endOffset": 2501, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "formatArgs", + "ranges": [{ "startOffset": 2574, "endOffset": 3008, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getDate", + "ranges": [{ "startOffset": 3010, "endOffset": 3125, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "log", + "ranges": [{ "startOffset": 3225, "endOffset": 3341, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "save", + "ranges": [ + { "startOffset": 3422, "endOffset": 3679, "count": 1 }, + { "startOffset": 3467, "endOffset": 3505, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "load", + "ranges": [{ "startOffset": 3796, "endOffset": 3842, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "init", + "ranges": [{ "startOffset": 4007, "endOffset": 4210, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "formatters.o", + "ranges": [{ "startOffset": 4375, "endOffset": 4531, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "formatters.O", + "ranges": [{ "startOffset": 4624, "endOffset": 4726, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "129", + "url": "node:tty", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 5045, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "isatty", + "ranges": [{ "startOffset": 1540, "endOffset": 1646, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "ReadStream", + "ranges": [{ "startOffset": 1648, "endOffset": 2117, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ReadStream.setRawMode", + "ranges": [{ "startOffset": 2266, "endOffset": 2480, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "WriteStream", + "ranges": [{ "startOffset": 2483, "endOffset": 3449, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "WriteStream._refreshSize", + "ranges": [{ "startOffset": 3740, "endOffset": 4167, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "WriteStream.cursorTo", + "ranges": [{ "startOffset": 4223, "endOffset": 4363, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "WriteStream.moveCursor", + "ranges": [{ "startOffset": 4400, "endOffset": 4546, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "WriteStream.clearLine", + "ranges": [{ "startOffset": 4582, "endOffset": 4721, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "WriteStream.clearScreenDown", + "ranges": [{ "startOffset": 4763, "endOffset": 4898, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "WriteStream.getWindowSize", + "ranges": [{ "startOffset": 4938, "endOffset": 4988, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "130", + "url": "node:net", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 70232, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1684, "endOffset": 1709, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "noop", + "ranges": [{ "startOffset": 4225, "endOffset": 4233, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getFlags", + "ranges": [{ "startOffset": 4706, "endOffset": 4935, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createHandle", + "ranges": [ + { "startOffset": 4937, "endOffset": 5320, "count": 2 }, + { "startOffset": 5104, "endOffset": 5126, "count": 0 }, + { "startOffset": 5161, "endOffset": 5319, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "getNewAsyncId", + "ranges": [ + { "startOffset": 5323, "endOffset": 5461, "count": 4 }, + { "startOffset": 5418, "endOffset": 5436, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "isPipeName", + "ranges": [{ "startOffset": 5464, "endOffset": 5547, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "createServer", + "ranges": [{ "startOffset": 5748, "endOffset": 5852, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "connect", + "ranges": [ + { "startOffset": 6075, "endOffset": 6366, "count": 2 }, + { "startOffset": 6281, "endOffset": 6326, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "getDefaultAutoSelectFamily", + "ranges": [{ "startOffset": 6368, "endOffset": 6443, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setDefaultAutoSelectFamily", + "ranges": [{ "startOffset": 6445, "endOffset": 6561, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getDefaultAutoSelectFamilyAttemptTimeout", + "ranges": [{ "startOffset": 6563, "endOffset": 6666, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setDefaultAutoSelectFamilyAttemptTimeout", + "ranges": [{ "startOffset": 6668, "endOffset": 6855, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "normalizeArgs", + "ranges": [ + { "startOffset": 7349, "endOffset": 8075, "count": 2 }, + { "startOffset": 7417, "endOffset": 7498, "count": 0 }, + { "startOffset": 7575, "endOffset": 7591, "count": 0 }, + { "startOffset": 7593, "endOffset": 7646, "count": 0 }, + { "startOffset": 7729, "endOffset": 7894, "count": 0 }, + { "startOffset": 7968, "endOffset": 7990, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "initSocketHandle", + "ranges": [ + { "startOffset": 8147, "endOffset": 8750, "count": 6 }, + { "startOffset": 8314, "endOffset": 8748, "count": 4 }, + { "startOffset": 8503, "endOffset": 8744, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "closeSocketHandle", + "ranges": [{ "startOffset": 8752, "endOffset": 9092, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 8871, "endOffset": 9084, "count": 2 }, + { "startOffset": 8973, "endOffset": 9078, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "Socket", + "ranges": [ + { "startOffset": 9344, "endOffset": 14202, "count": 4 }, + { "startOffset": 9404, "endOffset": 9431, "count": 0 }, + { "startOffset": 9459, "endOffset": 9588, "count": 0 }, + { "startOffset": 9658, "endOffset": 9906, "count": 0 }, + { "startOffset": 9959, "endOffset": 10155, "count": 0 }, + { "startOffset": 10717, "endOffset": 10743, "count": 0 }, + { "startOffset": 11149, "endOffset": 11257, "count": 0 }, + { "startOffset": 11293, "endOffset": 12505, "count": 2 }, + { "startOffset": 11785, "endOffset": 11823, "count": 0 }, + { "startOffset": 11899, "endOffset": 11910, "count": 1 }, + { "startOffset": 11968, "endOffset": 12501, "count": 0 }, + { "startOffset": 12592, "endOffset": 12669, "count": 0 }, + { "startOffset": 12670, "endOffset": 12716, "count": 0 }, + { "startOffset": 12718, "endOffset": 12933, "count": 0 }, + { "startOffset": 13437, "endOffset": 13466, "count": 2 }, + { "startOffset": 13468, "endOffset": 13733, "count": 0 }, + { "startOffset": 13757, "endOffset": 13809, "count": 0 }, + { "startOffset": 13986, "endOffset": 14200, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "_unrefTimer", + "ranges": [ + { "startOffset": 14375, "endOffset": 14505, "count": 21 }, + { "startOffset": 14477, "endOffset": 14499, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "Socket._final", + "ranges": [{ "startOffset": 14625, "endOffset": 15248, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "afterShutdown", + "ranges": [{ "startOffset": 15251, "endOffset": 15397, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writeAfterFIN", + "ranges": [{ "startOffset": 15604, "endOffset": 16112, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket._onTimeout", + "ranges": [{ "startOffset": 16194, "endOffset": 16698, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.setNoDelay", + "ranges": [{ "startOffset": 16732, "endOffset": 17109, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.setKeepAlive", + "ranges": [{ "startOffset": 17145, "endOffset": 17751, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.address", + "ranges": [{ "startOffset": 17782, "endOffset": 17826, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 17912, "endOffset": 17956, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 18036, "endOffset": 18092, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 18203, "endOffset": 18518, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 18607, "endOffset": 18687, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 18775, "endOffset": 18820, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "tryReadStart", + "ranges": [{ "startOffset": 18828, "endOffset": 19078, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket._read", + "ranges": [{ "startOffset": 19170, "endOffset": 19489, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.end", + "ranges": [{ "startOffset": 19516, "endOffset": 19672, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.resetAndDestroy", + "ranges": [{ "startOffset": 19710, "endOffset": 20060, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.pause", + "ranges": [{ "startOffset": 20088, "endOffset": 20405, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.resume", + "ranges": [{ "startOffset": 20435, "endOffset": 20619, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.read", + "ranges": [{ "startOffset": 20647, "endOffset": 20833, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "onReadableStreamEnd", + "ranges": [{ "startOffset": 20880, "endOffset": 20979, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.destroySoon", + "ranges": [{ "startOffset": 21013, "endOffset": 21160, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket._destroy", + "ranges": [ + { "startOffset": 21192, "endOffset": 22706, "count": 2 }, + { "startOffset": 21496, "endOffset": 21503, "count": 0 }, + { "startOffset": 21715, "endOffset": 21960, "count": 0 }, + { "startOffset": 22001, "endOffset": 22237, "count": 0 }, + { "startOffset": 22456, "endOffset": 22527, "count": 0 }, + { "startOffset": 22549, "endOffset": 22704, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 21790, "endOffset": 21875, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 22181, "endOffset": 22229, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket._reset", + "ranges": [{ "startOffset": 22735, "endOffset": 22834, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket._getpeername", + "ranges": [{ "startOffset": 22869, "endOffset": 23166, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "protoGetter", + "ranges": [{ "startOffset": 23169, "endOffset": 23351, "count": 9 }], + "isBlockCoverage": true + }, + { + "functionName": "bytesRead", + "ranges": [{ "startOffset": 23378, "endOffset": 23469, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "remoteAddress", + "ranges": [{ "startOffset": 23502, "endOffset": 23568, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "remoteFamily", + "ranges": [{ "startOffset": 23600, "endOffset": 23664, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "remotePort", + "ranges": [{ "startOffset": 23694, "endOffset": 23754, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket._getsockname", + "ranges": [{ "startOffset": 23791, "endOffset": 24067, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "localAddress", + "ranges": [{ "startOffset": 24099, "endOffset": 24164, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "localPort", + "ranges": [{ "startOffset": 24194, "endOffset": 24253, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "localFamily", + "ranges": [{ "startOffset": 24284, "endOffset": 24347, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.", + "ranges": [{ "startOffset": 24388, "endOffset": 24435, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket._writeGeneric", + "ranges": [ + { "startOffset": 24471, "endOffset": 25383, "count": 19 }, + { "startOffset": 24693, "endOffset": 25037, "count": 0 }, + { "startOffset": 25118, "endOffset": 25174, "count": 0 }, + { "startOffset": 25228, "endOffset": 25264, "count": 0 }, + { "startOffset": 25343, "endOffset": 25381, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "connect", + "ranges": [{ "startOffset": 24788, "endOffset": 24902, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "onClose", + "ranges": [{ "startOffset": 24909, "endOffset": 24988, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket._writev", + "ranges": [{ "startOffset": 25414, "endOffset": 25482, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket._write", + "ranges": [{ "startOffset": 25512, "endOffset": 25593, "count": 19 }], + "isBlockCoverage": true + }, + { + "functionName": "_bytesDispatched", + "ranges": [{ "startOffset": 25786, "endOffset": 25890, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "bytesWritten", + "ranges": [{ "startOffset": 25922, "endOffset": 26851, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "checkBindError", + "ranges": [{ "startOffset": 26856, "endOffset": 27655, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "internalConnect", + "ranges": [ + { "startOffset": 27658, "endOffset": 29955, "count": 2 }, + { "startOffset": 27913, "endOffset": 28555, "count": 0 }, + { "startOffset": 28764, "endOffset": 29302, "count": 0 }, + { "startOffset": 29474, "endOffset": 29757, "count": 0 }, + { "startOffset": 29808, "endOffset": 29829, "count": 0 }, + { "startOffset": 29831, "endOffset": 29953, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "emitErrorAndDestroy", + "ranges": [{ "startOffset": 30198, "endOffset": 30262, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "internalConnectMultiple", + "ranges": [{ "startOffset": 30265, "endOffset": 33545, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.connect", + "ranges": [ + { "startOffset": 33574, "endOffset": 35272, "count": 2 }, + { "startOffset": 33983, "endOffset": 34032, "count": 0 }, + { "startOffset": 34140, "endOffset": 34210, "count": 0 }, + { "startOffset": 34360, "endOffset": 34372, "count": 0 }, + { "startOffset": 34374, "endOffset": 34396, "count": 0 }, + { "startOffset": 34510, "endOffset": 34566, "count": 0 }, + { "startOffset": 34617, "endOffset": 34653, "count": 0 }, + { "startOffset": 34677, "endOffset": 34761, "count": 0 }, + { "startOffset": 34930, "endOffset": 34966, "count": 0 }, + { "startOffset": 35207, "endOffset": 35255, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "reinitializeHandle", + "ranges": [{ "startOffset": 35315, "endOffset": 35469, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "socketToDnsFamily", + "ranges": [{ "startOffset": 35472, "endOffset": 35618, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lookupAndConnect", + "ranges": [{ "startOffset": 35620, "endOffset": 39611, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lookupAndConnectMultiple", + "ranges": [{ "startOffset": 39613, "endOffset": 43669, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "connectErrorNT", + "ranges": [{ "startOffset": 43671, "endOffset": 43730, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.ref", + "ranges": [{ "startOffset": 43756, "endOffset": 43943, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.unref", + "ranges": [ + { "startOffset": 43972, "endOffset": 44165, "count": 2 }, + { "startOffset": 44006, "endOffset": 44066, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "afterConnect", + "ranges": [ + { "startOffset": 44169, "endOffset": 45857, "count": 2 }, + { "startOffset": 44339, "endOffset": 44356, "count": 0 }, + { "startOffset": 44484, "endOffset": 45251, "count": 0 }, + { "startOffset": 45301, "endOffset": 45317, "count": 0 }, + { "startOffset": 45319, "endOffset": 45382, "count": 0 }, + { "startOffset": 45657, "endOffset": 45742, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "addClientAbortSignalOption", + "ranges": [{ "startOffset": 45859, "endOffset": 46269, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createConnectionError", + "ranges": [{ "startOffset": 46271, "endOffset": 46792, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "afterConnectMultiple", + "ranges": [{ "startOffset": 46794, "endOffset": 48112, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "internalConnectMultipleTimeout", + "ranges": [{ "startOffset": 48114, "endOffset": 48610, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addServerAbortSignalOption", + "ranges": [{ "startOffset": 48612, "endOffset": 49042, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Server", + "ranges": [{ "startOffset": 49044, "endOffset": 50878, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toNumber", + "ranges": [ + { "startOffset": 50989, "endOffset": 51054, "count": 2 }, + { "startOffset": 51040, "endOffset": 51043, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "createServerHandle", + "ranges": [{ "startOffset": 51122, "endOffset": 52610, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setupListenHandle", + "ranges": [{ "startOffset": 52612, "endOffset": 55306, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "emitErrorNT", + "ranges": [{ "startOffset": 55373, "endOffset": 55435, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "emitListeningNT", + "ranges": [{ "startOffset": 55438, "endOffset": 55553, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "listenInCluster", + "ranges": [{ "startOffset": 55556, "endOffset": 57138, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Server.listen", + "ranges": [{ "startOffset": 57167, "endOffset": 61594, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isIpv6LinkLocal", + "ranges": [{ "startOffset": 61597, "endOffset": 62235, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "filterOnlyValidAddress", + "ranges": [{ "startOffset": 62237, "endOffset": 62522, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lookupAndListen", + "ranges": [{ "startOffset": 62524, "endOffset": 63145, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 63227, "endOffset": 63270, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Server.address", + "ranges": [{ "startOffset": 63346, "endOffset": 63624, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "onconnection", + "ranges": [{ "startOffset": 63627, "endOffset": 65887, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Server.getConnections", + "ranges": [{ "startOffset": 66036, "endOffset": 66789, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Server.close", + "ranges": [{ "startOffset": 66818, "endOffset": 67708, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Server.", + "ranges": [{ "startOffset": 67750, "endOffset": 67869, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Server._emitCloseIfDrained", + "ranges": [{ "startOffset": 67911, "endOffset": 68297, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "emitCloseNT", + "ranges": [{ "startOffset": 68301, "endOffset": 68384, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Server.", + "ranges": [{ "startOffset": 68443, "endOffset": 68605, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 68827, "endOffset": 68863, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 68867, "endOffset": 68908, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 68988, "endOffset": 69019, "count": 69 }], + "isBlockCoverage": true + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 69023, "endOffset": 69059, "count": 6 }], + "isBlockCoverage": true + }, + { + "functionName": "Server._setupWorker", + "ranges": [{ "startOffset": 69098, "endOffset": 69339, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Server.ref", + "ranges": [{ "startOffset": 69365, "endOffset": 69463, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Server.unref", + "ranges": [{ "startOffset": 69491, "endOffset": 69590, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get BlockList", + "ranges": [{ "startOffset": 69690, "endOffset": 69792, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get SocketAddress", + "ranges": [{ "startOffset": 69796, "endOffset": 69918, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "131", + "url": "node:stream", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 5099, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "fn", + "ranges": [{ "startOffset": 2556, "endOffset": 2716, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fn", + "ranges": [{ "startOffset": 3218, "endOffset": 3356, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 4404, "endOffset": 4436, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 4534, "endOffset": 4575, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 4668, "endOffset": 4709, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_uint8ArrayToBuffer", + "ranges": [{ "startOffset": 4890, "endOffset": 5097, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "132", + "url": "node:internal/streams/operators", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 8832, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "map", + "ranges": [{ "startOffset": 721, "endOffset": 3732, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "some", + "ranges": [{ "startOffset": 3734, "endOffset": 3882, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "every", + "ranges": [{ "startOffset": 3884, "endOffset": 4120, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "find", + "ranges": [{ "startOffset": 4122, "endOffset": 4264, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "forEach", + "ranges": [{ "startOffset": 4266, "endOffset": 4544, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "filter", + "ranges": [{ "startOffset": 4546, "endOffset": 4781, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ReduceAwareErrMissingArgs", + "ranges": [{ "startOffset": 4997, "endOffset": 5111, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "reduce", + "ranges": [{ "startOffset": 5115, "endOffset": 6460, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toArray", + "ranges": [{ "startOffset": 6462, "endOffset": 6891, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "flatMap", + "ranges": [{ "startOffset": 6893, "endOffset": 7087, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toIntegerOrInfinity", + "ranges": [{ "startOffset": 7089, "endOffset": 7411, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "drop", + "ranges": [{ "startOffset": 7413, "endOffset": 7961, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "take", + "ranges": [{ "startOffset": 7963, "endOffset": 8633, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "133", + "url": "node:internal/abort_controller", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 16475, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "lazyMessageChannel", + "ranges": [{ "startOffset": 1723, "endOffset": 1856, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2000, "endOffset": 2249, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2363, "endOffset": 2776, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "customInspect", + "ranges": [{ "startOffset": 3131, "endOffset": 3390, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "validateThisAbortSignal", + "ranges": [{ "startOffset": 3392, "endOffset": 3517, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setWeakAbortSignalTimeout", + "ranges": [{ "startOffset": 4099, "endOffset": 4499, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "AbortSignal", + "ranges": [{ "startOffset": 4759, "endOffset": 5270, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get aborted", + "ranges": [{ "startOffset": 5307, "endOffset": 5390, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get reason", + "ranges": [{ "startOffset": 5423, "endOffset": 5502, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "throwIfAborted", + "ranges": [{ "startOffset": 5506, "endOffset": 5622, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5626, "endOffset": 5755, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "abort", + "ranges": [{ "startOffset": 5833, "endOffset": 5993, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "timeout", + "ranges": [{ "startOffset": 6071, "endOffset": 6351, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "any", + "ranges": [{ "startOffset": 6438, "endOffset": 9063, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9067, "endOffset": 9835, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9839, "endOffset": 10193, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 10197, "endOffset": 10804, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 10808, "endOffset": 11060, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 11064, "endOffset": 11512, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ClonedAbortSignal", + "ranges": [{ "startOffset": 11693, "endOffset": 11793, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ClonedAbortSignal.", + "ranges": [{ "startOffset": 11838, "endOffset": 11846, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "abortSignal", + "ranges": [{ "startOffset": 12216, "endOffset": 14011, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "runAbort", + "ranges": [{ "startOffset": 14065, "endOffset": 14193, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 14221, "endOffset": 14228, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get signal", + "ranges": [{ "startOffset": 14270, "endOffset": 14370, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "abort", + "ranges": [{ "startOffset": 14413, "endOffset": 14572, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 14576, "endOffset": 14703, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 14714, "endOffset": 14894, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transferableAbortSignal", + "ranges": [{ "startOffset": 15044, "endOffset": 15255, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transferableAbortController", + "ranges": [{ "startOffset": 15357, "endOffset": 15446, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "aborted", + "ranges": [{ "startOffset": 15540, "endOffset": 16026, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "134", + "url": "node:internal/streams/end-of-stream", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 8882, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "isRequest", + "ranges": [{ "startOffset": 916, "endOffset": 1011, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "nop", + "ranges": [{ "startOffset": 1025, "endOffset": 1033, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "bindAsyncResource", + "ranges": [{ "startOffset": 1036, "endOffset": 1268, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "eos", + "ranges": [{ "startOffset": 1270, "endOffset": 7468, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "eosWeb", + "ranges": [{ "startOffset": 7470, "endOffset": 8379, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "finished", + "ranges": [{ "startOffset": 8381, "endOffset": 8839, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "135", + "url": "node:internal/streams/compose", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 5515, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "compose", + "ranges": [{ "startOffset": 596, "endOffset": 5513, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "136", + "url": "node:internal/streams/pipeline", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 12689, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "destroyer", + "ranges": [{ "startOffset": 1093, "endOffset": 1522, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "popCallback", + "ranges": [{ "startOffset": 1524, "endOffset": 1852, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "makeAsyncIterable", + "ranges": [{ "startOffset": 1854, "endOffset": 2140, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fromReadable", + "ranges": [{ "startOffset": 2142, "endOffset": 2292, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pumpToNode", + "ranges": [{ "startOffset": 2294, "endOffset": 3338, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pumpToWeb", + "ranges": [{ "startOffset": 3340, "endOffset": 3938, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pipeline", + "ranges": [{ "startOffset": 3940, "endOffset": 4033, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pipelineImpl", + "ranges": [{ "startOffset": 4035, "endOffset": 10810, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pipe", + "ranges": [{ "startOffset": 10812, "endOffset": 12642, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "137", + "url": "node:internal/streams/destroy", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 7355, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "checkError", + "ranges": [ + { "startOffset": 488, "endOffset": 799, "count": 12 }, + { "startOffset": 532, "endOffset": 797, "count": 4 }, + { "startOffset": 707, "endOffset": 737, "count": 2 }, + { "startOffset": 763, "endOffset": 793, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "destroy", + "ranges": [ + { "startOffset": 909, "endOffset": 1786, "count": 6 }, + { "startOffset": 1078, "endOffset": 1082, "count": 1 }, + { "startOffset": 1099, "endOffset": 1132, "count": 5 }, + { "startOffset": 1183, "endOffset": 1260, "count": 0 }, + { "startOffset": 1445, "endOffset": 1479, "count": 5 }, + { "startOffset": 1621, "endOffset": 1728, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1647, "endOffset": 1722, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_destroy", + "ranges": [ + { "startOffset": 1788, "endOffset": 2412, "count": 6 }, + { "startOffset": 2348, "endOffset": 2355, "count": 4 }, + { "startOffset": 2373, "endOffset": 2410, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "onDestroy", + "ranges": [ + { "startOffset": 1848, "endOffset": 2317, "count": 6 }, + { "startOffset": 1890, "endOffset": 1911, "count": 0 }, + { "startOffset": 2042, "endOffset": 2077, "count": 5 }, + { "startOffset": 2160, "endOffset": 2182, "count": 0 }, + { "startOffset": 2197, "endOffset": 2257, "count": 2 }, + { "startOffset": 2257, "endOffset": 2313, "count": 4 } + ], + "isBlockCoverage": true + }, + { + "functionName": "emitErrorCloseNT", + "ranges": [{ "startOffset": 2414, "endOffset": 2501, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "emitCloseNT", + "ranges": [ + { "startOffset": 2503, "endOffset": 2823, "count": 6 }, + { "startOffset": 2608, "endOffset": 2645, "count": 5 }, + { "startOffset": 2708, "endOffset": 2741, "count": 5 }, + { "startOffset": 2743, "endOffset": 2787, "count": 3 }, + { "startOffset": 2792, "endOffset": 2821, "count": 4 } + ], + "isBlockCoverage": true + }, + { + "functionName": "emitErrorNT", + "ranges": [ + { "startOffset": 2825, "endOffset": 3172, "count": 2 }, + { "startOffset": 3030, "endOffset": 3047, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "undestroy", + "ranges": [{ "startOffset": 3174, "endOffset": 3864, "count": 6 }], + "isBlockCoverage": true + }, + { + "functionName": "errorOrDestroy", + "ranges": [{ "startOffset": 3866, "endOffset": 5005, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "construct", + "ranges": [ + { "startOffset": 5007, "endOffset": 5423, "count": 1 }, + { "startOffset": 5087, "endOffset": 5104, "count": 0 }, + { "startOffset": 5233, "endOffset": 5270, "count": 0 }, + { "startOffset": 5348, "endOffset": 5379, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "constructNT", + "ranges": [ + { "startOffset": 5425, "endOffset": 6164, "count": 1 }, + { "startOffset": 6105, "endOffset": 6162, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "onConstruct", + "ranges": [ + { "startOffset": 5481, "endOffset": 6008, "count": 1 }, + { "startOffset": 5525, "endOffset": 5612, "count": 0 }, + { "startOffset": 5793, "endOffset": 5833, "count": 0 }, + { "startOffset": 5856, "endOffset": 5897, "count": 0 }, + { "startOffset": 5912, "endOffset": 5960, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6040, "endOffset": 6098, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "isRequest", + "ranges": [{ "startOffset": 6166, "endOffset": 6262, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "emitCloseLegacy", + "ranges": [{ "startOffset": 6264, "endOffset": 6324, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "emitErrorCloseLegacy", + "ranges": [{ "startOffset": 6326, "endOffset": 6446, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "destroyer", + "ranges": [{ "startOffset": 6481, "endOffset": 7263, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "138", + "url": "node:internal/streams/duplex", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 6547, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "Duplex", + "ranges": [ + { "startOffset": 2315, "endOffset": 4278, "count": 7 }, + { "startOffset": 2379, "endOffset": 2406, "count": 0 }, + { "startOffset": 3093, "endOffset": 3229, "count": 2 }, + { "startOffset": 3267, "endOffset": 3442, "count": 0 }, + { "startOffset": 3494, "endOffset": 3520, "count": 0 }, + { "startOffset": 3573, "endOffset": 3601, "count": 0 }, + { "startOffset": 3655, "endOffset": 3685, "count": 0 }, + { "startOffset": 3740, "endOffset": 3772, "count": 0 }, + { "startOffset": 3825, "endOffset": 3853, "count": 0 }, + { "startOffset": 3910, "endOffset": 3946, "count": 0 }, + { "startOffset": 3978, "endOffset": 4015, "count": 0 }, + { "startOffset": 4019, "endOffset": 4061, "count": 0 }, + { "startOffset": 4125, "endOffset": 4276, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4159, "endOffset": 4270, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [ + { "startOffset": 5426, "endOffset": 5638, "count": 5 }, + { "startOffset": 5524, "endOffset": 5555, "count": 0 }, + { "startOffset": 5599, "endOffset": 5631, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 5644, "endOffset": 5905, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lazyWebStreams", + "ranges": [{ "startOffset": 5979, "endOffset": 6143, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Duplex.fromWeb", + "ranges": [{ "startOffset": 6162, "endOffset": 6280, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Duplex.toWeb", + "ranges": [{ "startOffset": 6298, "endOffset": 6405, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Duplex.from", + "ranges": [{ "startOffset": 6438, "endOffset": 6545, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "139", + "url": "node:internal/streams/legacy", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3328, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "Stream", + "ranges": [{ "startOffset": 130, "endOffset": 178, "count": 10 }], + "isBlockCoverage": true + }, + { + "functionName": "Stream.pipe", + "ranges": [{ "startOffset": 292, "endOffset": 2171, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "eventNames", + "ranges": [{ "startOffset": 2204, "endOffset": 2470, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "prependListener", + "ranges": [ + { "startOffset": 2473, "endOffset": 3280, "count": 5 }, + { "startOffset": 2732, "endOffset": 3095, "count": 0 }, + { "startOffset": 3101, "endOffset": 3278, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "140", + "url": "node:internal/streams/readable", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 51947, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1874, "endOffset": 1899, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "nop", + "ranges": [{ "startOffset": 2887, "endOffset": 2895, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "makeBitMapDescriptor", + "ranges": [{ "startOffset": 3791, "endOffset": 4013, "count": 19 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3866, "endOffset": 3910, "count": 32 }], + "isBlockCoverage": true + }, + { + "functionName": "set", + "ranges": [ + { "startOffset": 3916, "endOffset": 4005, "count": 55 }, + { "startOffset": 3946, "endOffset": 3966, "count": 14 }, + { "startOffset": 3966, "endOffset": 3999, "count": 41 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [ + { "startOffset": 6187, "endOffset": 6275, "count": 4 }, + { "startOffset": 6240, "endOffset": 6261, "count": 2 }, + { "startOffset": 6262, "endOffset": 6268, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "set", + "ranges": [ + { "startOffset": 6281, "endOffset": 6447, "count": 8 }, + { "startOffset": 6311, "endOffset": 6391, "count": 2 }, + { "startOffset": 6391, "endOffset": 6441, "count": 6 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 6524, "endOffset": 6624, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 6630, "endOffset": 6860, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 6929, "endOffset": 7017, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [ + { "startOffset": 7023, "endOffset": 7189, "count": 1 }, + { "startOffset": 7133, "endOffset": 7183, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 7259, "endOffset": 7349, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [ + { "startOffset": 7355, "endOffset": 7524, "count": 1 }, + { "startOffset": 7467, "endOffset": 7518, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 7593, "endOffset": 7696, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 7702, "endOffset": 7969, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ReadableState", + "ranges": [ + { "startOffset": 7982, "endOffset": 9948, "count": 10 }, + { "startOffset": 8354, "endOffset": 8366, "count": 8 }, + { "startOffset": 8372, "endOffset": 8400, "count": 0 }, + { "startOffset": 8417, "endOffset": 8447, "count": 7 }, + { "startOffset": 8453, "endOffset": 8481, "count": 3 }, + { "startOffset": 8656, "endOffset": 8728, "count": 8 }, + { "startOffset": 8729, "endOffset": 8765, "count": 2 }, + { "startOffset": 8924, "endOffset": 8954, "count": 8 }, + { "startOffset": 8956, "endOffset": 8984, "count": 4 }, + { "startOffset": 9073, "endOffset": 9105, "count": 8 }, + { "startOffset": 9107, "endOffset": 9137, "count": 0 }, + { "startOffset": 9367, "endOffset": 9384, "count": 8 }, + { "startOffset": 9416, "endOffset": 9445, "count": 0 }, + { "startOffset": 9446, "endOffset": 9476, "count": 0 }, + { "startOffset": 9525, "endOffset": 9684, "count": 0 }, + { "startOffset": 9835, "endOffset": 9845, "count": 8 }, + { "startOffset": 9847, "endOffset": 9946, "count": 1 } + ], + "isBlockCoverage": true + }, + { + "functionName": "onConstructed", + "ranges": [{ "startOffset": 9992, "endOffset": 10109, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Readable", + "ranges": [ + { "startOffset": 10112, "endOffset": 11146, "count": 3 }, + { "startOffset": 10180, "endOffset": 10209, "count": 0 }, + { "startOffset": 10647, "endOffset": 10978, "count": 1 }, + { "startOffset": 10699, "endOffset": 10725, "count": 0 }, + { "startOffset": 10780, "endOffset": 10812, "count": 0 }, + { "startOffset": 10869, "endOffset": 10905, "count": 0 }, + { "startOffset": 10937, "endOffset": 10974, "count": 0 }, + { "startOffset": 11042, "endOffset": 11144, "count": 1 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 11076, "endOffset": 11138, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Readable._destroy", + "ranges": [{ "startOffset": 11283, "endOffset": 11315, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "Readable.", + "ranges": [{ "startOffset": 11366, "endOffset": 11404, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Readable.", + "ranges": [{ "startOffset": 11448, "endOffset": 11709, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Readable.push", + "ranges": [ + { "startOffset": 11938, "endOffset": 12207, "count": 16 }, + { "startOffset": 12073, "endOffset": 12137, "count": 2 }, + { "startOffset": 12138, "endOffset": 12204, "count": 14 } + ], + "isBlockCoverage": true + }, + { + "functionName": "Readable.unshift", + "ranges": [{ "startOffset": 12303, "endOffset": 12570, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readableAddChunkUnshiftByteMode", + "ranges": [{ "startOffset": 12574, "endOffset": 13630, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readableAddChunkUnshiftObjectMode", + "ranges": [{ "startOffset": 13632, "endOffset": 13872, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readableAddChunkUnshiftValue", + "ranges": [{ "startOffset": 13874, "endOffset": 14207, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readableAddChunkPushByteMode", + "ranges": [ + { "startOffset": 14209, "endOffset": 15591, "count": 2 }, + { "startOffset": 14303, "endOffset": 14424, "count": 1 }, + { "startOffset": 14424, "endOffset": 14579, "count": 0 }, + { "startOffset": 14579, "endOffset": 14932, "count": 1 }, + { "startOffset": 14638, "endOffset": 14932, "count": 0 }, + { "startOffset": 14932, "endOffset": 14967, "count": 1 }, + { "startOffset": 14969, "endOffset": 15072, "count": 0 }, + { "startOffset": 15072, "endOffset": 15112, "count": 1 }, + { "startOffset": 15112, "endOffset": 15196, "count": 0 }, + { "startOffset": 15196, "endOffset": 15253, "count": 1 }, + { "startOffset": 15253, "endOffset": 15276, "count": 0 }, + { "startOffset": 15276, "endOffset": 15359, "count": 1 }, + { "startOffset": 15361, "endOffset": 15518, "count": 1 }, + { "startOffset": 15438, "endOffset": 15514, "count": 0 }, + { "startOffset": 15518, "endOffset": 15590, "count": 1 } + ], + "isBlockCoverage": true + }, + { + "functionName": "readableAddChunkPushObjectMode", + "ranges": [ + { "startOffset": 15593, "endOffset": 16190, "count": 14 }, + { "startOffset": 15689, "endOffset": 15775, "count": 3 }, + { "startOffset": 15775, "endOffset": 15815, "count": 11 }, + { "startOffset": 15815, "endOffset": 15899, "count": 0 }, + { "startOffset": 15899, "endOffset": 15956, "count": 11 }, + { "startOffset": 15956, "endOffset": 15979, "count": 0 }, + { "startOffset": 15979, "endOffset": 16051, "count": 11 }, + { "startOffset": 16051, "endOffset": 16063, "count": 0 }, + { "startOffset": 16065, "endOffset": 16117, "count": 0 }, + { "startOffset": 16117, "endOffset": 16189, "count": 11 } + ], + "isBlockCoverage": true + }, + { + "functionName": "canPushMore", + "ranges": [ + { "startOffset": 16192, "endOffset": 16522, "count": 12 }, + { "startOffset": 16497, "endOffset": 16518, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "addChunk", + "ranges": [ + { "startOffset": 16524, "endOffset": 17468, "count": 12 }, + { "startOffset": 16839, "endOffset": 16885, "count": 0 }, + { "startOffset": 17008, "endOffset": 17434, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "Readable.isPaused", + "ranges": [{ "startOffset": 17500, "endOffset": 17655, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Readable.setEncoding", + "ranges": [{ "startOffset": 17719, "endOffset": 18289, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "computeNewHighWaterMark", + "ranges": [{ "startOffset": 18350, "endOffset": 18701, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "howMuchToRead", + "ranges": [ + { "startOffset": 18814, "endOffset": 19295, "count": 21 }, + { "startOffset": 18862, "endOffset": 18919, "count": 10 }, + { "startOffset": 18925, "endOffset": 18934, "count": 15 }, + { "startOffset": 18934, "endOffset": 18982, "count": 6 }, + { "startOffset": 18982, "endOffset": 19194, "count": 3 }, + { "startOffset": 19119, "endOffset": 19165, "count": 0 }, + { "startOffset": 19194, "endOffset": 19288, "count": 0 }, + { "startOffset": 19289, "endOffset": 19292, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "Readable.read", + "ranges": [ + { "startOffset": 19392, "endOffset": 24067, "count": 21 }, + { "startOffset": 19576, "endOffset": 19594, "count": 10 }, + { "startOffset": 19594, "endOffset": 19661, "count": 11 }, + { "startOffset": 19625, "endOffset": 19661, "count": 0 }, + { "startOffset": 19826, "endOffset": 19875, "count": 0 }, + { "startOffset": 19896, "endOffset": 19931, "count": 10 }, + { "startOffset": 20117, "endOffset": 20163, "count": 11 }, + { "startOffset": 20164, "endOffset": 20316, "count": 5 }, + { "startOffset": 20247, "endOffset": 20273, "count": 0 }, + { "startOffset": 20318, "endOffset": 20495, "count": 0 }, + { "startOffset": 20604, "endOffset": 20637, "count": 18 }, + { "startOffset": 20639, "endOffset": 20714, "count": 4 }, + { "startOffset": 20714, "endOffset": 22009, "count": 17 }, + { "startOffset": 22009, "endOffset": 22050, "count": 0 }, + { "startOffset": 22052, "endOffset": 22437, "count": 17 }, + { "startOffset": 22437, "endOffset": 22515, "count": 8 }, + { "startOffset": 22515, "endOffset": 23139, "count": 9 }, + { "startOffset": 22824, "endOffset": 22876, "count": 0 }, + { "startOffset": 23103, "endOffset": 23135, "count": 0 }, + { "startOffset": 23139, "endOffset": 23169, "count": 17 }, + { "startOffset": 23169, "endOffset": 23194, "count": 3 }, + { "startOffset": 23194, "endOffset": 23217, "count": 14 }, + { "startOffset": 23217, "endOffset": 23333, "count": 17 }, + { "startOffset": 23314, "endOffset": 23317, "count": 0 }, + { "startOffset": 23333, "endOffset": 23515, "count": 0 }, + { "startOffset": 23515, "endOffset": 23901, "count": 17 }, + { "startOffset": 23838, "endOffset": 23871, "count": 6 }, + { "startOffset": 23879, "endOffset": 23897, "count": 0 }, + { "startOffset": 23901, "endOffset": 23922, "count": 17 }, + { "startOffset": 23922, "endOffset": 23980, "count": 0 }, + { "startOffset": 23982, "endOffset": 24050, "count": 0 }, + { "startOffset": 24050, "endOffset": 24066, "count": 17 } + ], + "isBlockCoverage": true + }, + { + "functionName": "onEofChunk", + "ranges": [ + { "startOffset": 24070, "endOffset": 25024, "count": 4 }, + { "startOffset": 24168, "endOffset": 24175, "count": 0 }, + { "startOffset": 24227, "endOffset": 24249, "count": 1 }, + { "startOffset": 24250, "endOffset": 24256, "count": 3 }, + { "startOffset": 24273, "endOffset": 24452, "count": 1 }, + { "startOffset": 24331, "endOffset": 24448, "count": 0 }, + { "startOffset": 24518, "endOffset": 24720, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "emitReadable", + "ranges": [{ "startOffset": 25225, "endOffset": 25556, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "emitReadable_", + "ranges": [ + { "startOffset": 25558, "endOffset": 26230, "count": 4 }, + { "startOffset": 26149, "endOffset": 26191, "count": 0 }, + { "startOffset": 26192, "endOffset": 26207, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "maybeReadMore", + "ranges": [ + { "startOffset": 26580, "endOffset": 26798, "count": 13 }, + { "startOffset": 26703, "endOffset": 26796, "count": 5 } + ], + "isBlockCoverage": true + }, + { + "functionName": "maybeReadMore_", + "ranges": [ + { "startOffset": 26800, "endOffset": 28629, "count": 5 }, + { "startOffset": 28295, "endOffset": 28413, "count": 4 }, + { "startOffset": 28343, "endOffset": 28412, "count": 0 }, + { "startOffset": 28415, "endOffset": 28593, "count": 4 } + ], + "isBlockCoverage": true + }, + { + "functionName": "Readable._read", + "ranges": [{ "startOffset": 28900, "endOffset": 28966, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Readable.pipe", + "ranges": [ + { "startOffset": 28995, "endOffset": 33581, "count": 5 }, + { "startOffset": 29112, "endOffset": 29336, "count": 0 }, + { "startOffset": 29456, "endOffset": 29481, "count": 1 }, + { "startOffset": 29524, "endOffset": 29564, "count": 4 }, + { "startOffset": 29589, "endOffset": 29596, "count": 3 }, + { "startOffset": 29597, "endOffset": 29605, "count": 2 }, + { "startOffset": 29654, "endOffset": 29678, "count": 0 }, + { "startOffset": 33452, "endOffset": 33470, "count": 0 }, + { "startOffset": 33514, "endOffset": 33563, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "onunpipe", + "ranges": [{ "startOffset": 29748, "endOffset": 29974, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "onend", + "ranges": [{ "startOffset": 29978, "endOffset": 30036, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "cleanup", + "ranges": [ + { "startOffset": 30081, "endOffset": 30973, "count": 3 }, + { "startOffset": 30284, "endOffset": 30336, "count": 0 }, + { "startOffset": 30858, "endOffset": 30884, "count": 0 }, + { "startOffset": 30885, "endOffset": 30951, "count": 0 }, + { "startOffset": 30959, "endOffset": 30969, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "pause", + "ranges": [{ "startOffset": 30977, "endOffset": 31979, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ondata", + "ranges": [ + { "startOffset": 32009, "endOffset": 32245, "count": 7 }, + { "startOffset": 32160, "endOffset": 32186, "count": 0 }, + { "startOffset": 32193, "endOffset": 32241, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "onerror", + "ranges": [{ "startOffset": 32367, "endOffset": 32778, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "onclose", + "ranges": [{ "startOffset": 32958, "endOffset": 33041, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "onfinish", + "ranges": [{ "startOffset": 33075, "endOffset": 33180, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "unpipe", + "ranges": [{ "startOffset": 33217, "endOffset": 33283, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "pipeOnDrain", + "ranges": [{ "startOffset": 33584, "endOffset": 34261, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Readable.unpipe", + "ranges": [ + { "startOffset": 34292, "endOffset": 34993, "count": 3 }, + { "startOffset": 34479, "endOffset": 34491, "count": 0 }, + { "startOffset": 34506, "endOffset": 34722, "count": 0 }, + { "startOffset": 34838, "endOffset": 34850, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "Readable.on", + "ranges": [ + { "startOffset": 35119, "endOffset": 36128, "count": 47 }, + { "startOffset": 35251, "endOffset": 35680, "count": 6 }, + { "startOffset": 35480, "endOffset": 35500, "count": 0 }, + { "startOffset": 35680, "endOffset": 36111, "count": 41 }, + { "startOffset": 35709, "endOffset": 36111, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "Readable.removeListener", + "ranges": [ + { "startOffset": 36223, "endOffset": 36930, "count": 33 }, + { "startOffset": 36423, "endOffset": 36809, "count": 0 }, + { "startOffset": 36833, "endOffset": 36868, "count": 3 }, + { "startOffset": 36870, "endOffset": 36913, "count": 3 } + ], + "isBlockCoverage": true + }, + { + "functionName": "Readable.removeAllListeners", + "ranges": [{ "startOffset": 37033, "endOffset": 37627, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "updateReadableListening", + "ranges": [{ "startOffset": 37630, "endOffset": 38332, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "nReadingNextTick", + "ranges": [{ "startOffset": 38334, "endOffset": 38422, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Readable.resume", + "ranges": [ + { "startOffset": 38576, "endOffset": 39081, "count": 6 }, + { "startOffset": 38928, "endOffset": 38975, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "resume", + "ranges": [{ "startOffset": 39084, "endOffset": 39257, "count": 6 }], + "isBlockCoverage": true + }, + { + "functionName": "resume_", + "ranges": [ + { "startOffset": 39259, "endOffset": 39573, "count": 6 }, + { "startOffset": 39556, "endOffset": 39571, "count": 1 } + ], + "isBlockCoverage": true + }, + { + "functionName": "Readable.pause", + "ranges": [{ "startOffset": 39602, "endOffset": 39914, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "flow", + "ranges": [ + { "startOffset": 39917, "endOffset": 40068, "count": 10 }, + { "startOffset": 40065, "endOffset": 40066, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "Readable.wrap", + "ranges": [{ "startOffset": 40252, "endOffset": 41273, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Readable.", + "ranges": [{ "startOffset": 41318, "endOffset": 41370, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Readable.iterator", + "ranges": [{ "startOffset": 41403, "endOffset": 41546, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "streamToAsyncIterator", + "ranges": [{ "startOffset": 41549, "endOffset": 41798, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createAsyncIterator", + "ranges": [{ "startOffset": 41800, "endOffset": 42876, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "compose", + "ranges": [{ "startOffset": 42925, "endOffset": 43425, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 43645, "endOffset": 44034, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 44040, "endOffset": 44170, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 44252, "endOffset": 44316, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 44398, "endOffset": 44606, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 44694, "endOffset": 44760, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 44841, "endOffset": 44901, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 44983, "endOffset": 45043, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 45054, "endOffset": 45163, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 45239, "endOffset": 45293, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 45373, "endOffset": 45461, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 45539, "endOffset": 45624, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 45693, "endOffset": 45777, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 45822, "endOffset": 45906, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [ + { "startOffset": 45977, "endOffset": 46064, "count": 2 }, + { "startOffset": 46050, "endOffset": 46057, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 46070, "endOffset": 46359, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 46434, "endOffset": 46522, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 46663, "endOffset": 46708, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 46788, "endOffset": 46846, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 46852, "endOffset": 47013, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fromList", + "ranges": [ + { "startOffset": 47319, "endOffset": 49772, "count": 3 }, + { "startOffset": 47414, "endOffset": 49771, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "endReadable", + "ranges": [{ "startOffset": 49774, "endOffset": 50000, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "endReadableNT", + "ranges": [ + { "startOffset": 50002, "endOffset": 50895, "count": 4 }, + { "startOffset": 50296, "endOffset": 50329, "count": 0 }, + { "startOffset": 50331, "endOffset": 50385, "count": 0 }, + { "startOffset": 50617, "endOffset": 50822, "count": 3 }, + { "startOffset": 50848, "endOffset": 50883, "count": 1 } + ], + "isBlockCoverage": true + }, + { + "functionName": "endWritableNT", + "ranges": [{ "startOffset": 50897, "endOffset": 51057, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Readable.from", + "ranges": [{ "startOffset": 51075, "endOffset": 51144, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lazyWebStreams", + "ranges": [{ "startOffset": 51209, "endOffset": 51373, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Readable.fromWeb", + "ranges": [{ "startOffset": 51394, "endOffset": 51528, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Readable.toWeb", + "ranges": [{ "startOffset": 51548, "endOffset": 51682, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Readable.wrap", + "ranges": [{ "startOffset": 51701, "endOffset": 51945, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "141", + "url": "node:internal/streams/add-abort-signal", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1725, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "validateAbortSignal", + "ranges": [{ "startOffset": 554, "endOffset": 713, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addAbortSignal", + "ranges": [{ "startOffset": 748, "endOffset": 1059, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "module.exports.addAbortSignalNoValidate", + "ranges": [{ "startOffset": 1104, "endOffset": 1723, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "142", + "url": "node:internal/streams/state", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1440, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "highWaterMarkFrom", + "ranges": [ + { "startOffset": 395, "endOffset": 562, "count": 18 }, + { "startOffset": 493, "endOffset": 516, "count": 1 }, + { "startOffset": 517, "endOffset": 559, "count": 17 }, + { "startOffset": 553, "endOffset": 559, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "getDefaultHighWaterMark", + "ranges": [ + { "startOffset": 564, "endOffset": 694, "count": 19 }, + { "startOffset": 631, "endOffset": 663, "count": 5 }, + { "startOffset": 664, "endOffset": 691, "count": 14 } + ], + "isBlockCoverage": true + }, + { + "functionName": "setDefaultHighWaterMark", + "ranges": [{ "startOffset": 696, "endOffset": 907, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getHighWaterMark", + "ranges": [ + { "startOffset": 909, "endOffset": 1342, "count": 18 }, + { "startOffset": 1056, "endOffset": 1268, "count": 1 }, + { "startOffset": 1100, "endOffset": 1237, "count": 0 }, + { "startOffset": 1268, "endOffset": 1341, "count": 17 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "143", + "url": "node:string_decoder", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 4518, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "StringDecoder", + "ranges": [ + { "startOffset": 1929, "endOffset": 2215, "count": 1 }, + { "startOffset": 2046, "endOffset": 2097, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "write", + "ranges": [ + { "startOffset": 2538, "endOffset": 2923, "count": 1 }, + { "startOffset": 2595, "endOffset": 2606, "count": 0 }, + { "startOffset": 2642, "endOffset": 2793, "count": 0 }, + { "startOffset": 2823, "endOffset": 2877, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "end", + "ranges": [ + { "startOffset": 3200, "endOffset": 3385, "count": 1 }, + { "startOffset": 3257, "endOffset": 3274, "count": 0 }, + { "startOffset": 3328, "endOffset": 3369, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "text", + "ranges": [{ "startOffset": 3596, "endOffset": 3753, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3891, "endOffset": 4104, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 4196, "endOffset": 4259, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 4352, "endOffset": 4467, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "144", + "url": "node:internal/streams/from", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 4321, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "from", + "ranges": [{ "startOffset": 241, "endOffset": 4296, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "145", + "url": "node:internal/streams/writable", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 33563, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "nop", + "ranges": [{ "startOffset": 2745, "endOffset": 2762, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "makeBitMapDescriptor", + "ranges": [{ "startOffset": 3818, "endOffset": 4040, "count": 20 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3893, "endOffset": 3937, "count": 20 }], + "isBlockCoverage": true + }, + { + "functionName": "set", + "ranges": [ + { "startOffset": 3943, "endOffset": 4032, "count": 60 }, + { "startOffset": 3973, "endOffset": 3993, "count": 6 }, + { "startOffset": 3993, "endOffset": 4026, "count": 54 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [ + { "startOffset": 7004, "endOffset": 7082, "count": 4 }, + { "startOffset": 7051, "endOffset": 7072, "count": 2 }, + { "startOffset": 7073, "endOffset": 7079, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "set", + "ranges": [ + { "startOffset": 7088, "endOffset": 7254, "count": 8 }, + { "startOffset": 7118, "endOffset": 7198, "count": 2 }, + { "startOffset": 7198, "endOffset": 7248, "count": 6 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [ + { "startOffset": 7324, "endOffset": 7424, "count": 24 }, + { "startOffset": 7375, "endOffset": 7409, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 7430, "endOffset": 7703, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 7780, "endOffset": 7880, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 7886, "endOffset": 8116, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 8257, "endOffset": 8334, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [ + { "startOffset": 8340, "endOffset": 8504, "count": 28 }, + { "startOffset": 8405, "endOffset": 8448, "count": 2 }, + { "startOffset": 8448, "endOffset": 8498, "count": 26 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 8691, "endOffset": 8791, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 8797, "endOffset": 8994, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 9064, "endOffset": 9142, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 9148, "endOffset": 9315, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "WritableState", + "ranges": [ + { "startOffset": 9328, "endOffset": 11610, "count": 7 }, + { "startOffset": 9596, "endOffset": 9624, "count": 0 }, + { "startOffset": 9677, "endOffset": 9705, "count": 2 }, + { "startOffset": 9996, "endOffset": 10032, "count": 0 }, + { "startOffset": 10086, "endOffset": 10117, "count": 3 }, + { "startOffset": 10224, "endOffset": 10252, "count": 4 }, + { "startOffset": 10375, "endOffset": 10405, "count": 0 }, + { "startOffset": 10662, "endOffset": 10668, "count": 0 }, + { "startOffset": 10700, "endOffset": 10729, "count": 0 }, + { "startOffset": 10730, "endOffset": 10760, "count": 0 }, + { "startOffset": 10809, "endOffset": 11018, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "resetBuffer", + "ranges": [{ "startOffset": 11612, "endOffset": 11776, "count": 7 }], + "isBlockCoverage": true + }, + { + "functionName": "getBuffer", + "ranges": [{ "startOffset": 11814, "endOffset": 11943, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 12039, "endOffset": 12150, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "onConstructed", + "ranges": [{ "startOffset": 12199, "endOffset": 12385, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Writable", + "ranges": [{ "startOffset": 12388, "endOffset": 13494, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "value", + "ranges": [{ "startOffset": 13576, "endOffset": 13780, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Writable.pipe", + "ranges": [{ "startOffset": 13881, "endOffset": 13949, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_write", + "ranges": [ + { "startOffset": 13952, "endOffset": 15350, "count": 26 }, + { "startOffset": 14056, "endOffset": 14083, "count": 2 }, + { "startOffset": 14085, "endOffset": 14104, "count": 24 }, + { "startOffset": 14128, "endOffset": 14173, "count": 0 }, + { "startOffset": 14218, "endOffset": 14965, "count": 20 }, + { "startOffset": 14312, "endOffset": 14335, "count": 0 }, + { "startOffset": 14342, "endOffset": 14462, "count": 0 }, + { "startOffset": 14551, "endOffset": 14635, "count": 1 }, + { "startOffset": 14641, "endOffset": 14961, "count": 0 }, + { "startOffset": 15017, "endOffset": 15066, "count": 0 }, + { "startOffset": 15112, "endOffset": 15162, "count": 0 }, + { "startOffset": 15175, "endOffset": 15266, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "Writable.write", + "ranges": [ + { "startOffset": 15379, "endOffset": 15570, "count": 26 }, + { "startOffset": 15434, "endOffset": 15467, "count": 2 }, + { "startOffset": 15469, "endOffset": 15514, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "Writable.cork", + "ranges": [{ "startOffset": 15599, "endOffset": 15697, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Writable.uncork", + "ranges": [{ "startOffset": 15728, "endOffset": 15966, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setDefaultEncoding", + "ranges": [{ "startOffset": 16009, "endOffset": 16334, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writeOrBuffer", + "ranges": [ + { "startOffset": 16524, "endOffset": 17728, "count": 26 }, + { "startOffset": 16641, "endOffset": 16644, "count": 6 }, + { "startOffset": 16645, "endOffset": 16659, "count": 20 }, + { "startOffset": 16775, "endOffset": 17182, "count": 0 }, + { "startOffset": 17242, "endOffset": 17281, "count": 2 }, + { "startOffset": 17472, "endOffset": 17493, "count": 0 }, + { "startOffset": 17508, "endOffset": 17546, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "doWrite", + "ranges": [{ "startOffset": 17730, "endOffset": 18167, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "onwriteError", + "ranges": [{ "startOffset": 18169, "endOffset": 18554, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "onwrite", + "ranges": [ + { "startOffset": 18556, "endOffset": 21162, "count": 26 }, + { "startOffset": 18673, "endOffset": 18747, "count": 0 }, + { "startOffset": 18841, "endOffset": 18863, "count": 2 }, + { "startOffset": 18864, "endOffset": 18869, "count": 24 }, + { "startOffset": 19012, "endOffset": 19626, "count": 0 }, + { "startOffset": 19677, "endOffset": 19718, "count": 0 }, + { "startOffset": 19795, "endOffset": 19816, "count": 0 }, + { "startOffset": 19889, "endOffset": 19902, "count": 20 }, + { "startOffset": 20180, "endOffset": 20531, "count": 24 }, + { "startOffset": 20237, "endOffset": 20248, "count": 20 }, + { "startOffset": 20250, "endOffset": 20370, "count": 2 }, + { "startOffset": 20370, "endOffset": 20523, "count": 22 }, + { "startOffset": 20454, "endOffset": 20513, "count": 0 }, + { "startOffset": 20531, "endOffset": 21097, "count": 2 }, + { "startOffset": 20585, "endOffset": 20646, "count": 0 }, + { "startOffset": 20648, "endOffset": 20706, "count": 0 }, + { "startOffset": 20954, "endOffset": 21097, "count": 0 }, + { "startOffset": 21103, "endOffset": 21156, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "afterWriteTick", + "ranges": [{ "startOffset": 21164, "endOffset": 21351, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "afterWrite", + "ranges": [ + { "startOffset": 21353, "endOffset": 21861, "count": 4 }, + { "startOffset": 21531, "endOffset": 21552, "count": 0 }, + { "startOffset": 21571, "endOffset": 21636, "count": 0 }, + { "startOffset": 21746, "endOffset": 21775, "count": 0 }, + { "startOffset": 21816, "endOffset": 21859, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "errorBuffer", + "ranges": [{ "startOffset": 21933, "endOffset": 22484, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "clearBuffer", + "ranges": [{ "startOffset": 22550, "endOffset": 24220, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Writable._write", + "ranges": [{ "startOffset": 24250, "endOffset": 24419, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Writable.end", + "ranges": [ + { "startOffset": 24483, "endOffset": 26123, "count": 3 }, + { "startOffset": 24588, "endOffset": 24648, "count": 0 }, + { "startOffset": 24690, "endOffset": 24735, "count": 0 }, + { "startOffset": 24770, "endOffset": 24877, "count": 0 }, + { "startOffset": 24945, "endOffset": 24991, "count": 0 }, + { "startOffset": 25004, "endOffset": 25030, "count": 0 }, + { "startOffset": 25504, "endOffset": 25698, "count": 0 }, + { "startOffset": 25732, "endOffset": 26105, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "needFinish", + "ranges": [{ "startOffset": 26126, "endOffset": 26555, "count": 6 }], + "isBlockCoverage": true + }, + { + "functionName": "onFinish", + "ranges": [ + { "startOffset": 26557, "endOffset": 27189, "count": 3 }, + { "startOffset": 26641, "endOffset": 26722, "count": 0 }, + { "startOffset": 26755, "endOffset": 26863, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "prefinish", + "ranges": [ + { "startOffset": 27191, "endOffset": 27715, "count": 3 }, + { "startOffset": 27288, "endOffset": 27305, "count": 0 }, + { "startOffset": 27533, "endOffset": 27588, "count": 0 }, + { "startOffset": 27622, "endOffset": 27713, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 27487, "endOffset": 27524, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "finishMaybe", + "ranges": [ + { "startOffset": 27717, "endOffset": 28216, "count": 3 }, + { "startOffset": 27849, "endOffset": 28210, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 27921, "endOffset": 28083, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "finish", + "ranges": [ + { "startOffset": 28218, "endOffset": 28861, "count": 3 }, + { "startOffset": 28766, "endOffset": 28794, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "callFinishedCallbacks", + "ranges": [ + { "startOffset": 28863, "endOffset": 29181, "count": 3 }, + { "startOffset": 28968, "endOffset": 29180, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 29265, "endOffset": 29368, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 29416, "endOffset": 29522, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 29528, "endOffset": 29778, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 29825, "endOffset": 30228, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 30234, "endOffset": 30368, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 30423, "endOffset": 30541, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 30598, "endOffset": 30718, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 30771, "endOffset": 30866, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 30918, "endOffset": 31034, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [ + { "startOffset": 31090, "endOffset": 31243, "count": 5 }, + { "startOffset": 31229, "endOffset": 31236, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 31303, "endOffset": 31392, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 31445, "endOffset": 31538, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 31591, "endOffset": 31673, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 31742, "endOffset": 31839, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 31898, "endOffset": 32155, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Writable.destroy", + "ranges": [ + { "startOffset": 32233, "endOffset": 32513, "count": 5 }, + { "startOffset": 32378, "endOffset": 32415, "count": 0 }, + { "startOffset": 32417, "endOffset": 32464, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "Writable._destroy", + "ranges": [{ "startOffset": 32601, "endOffset": 32633, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Writable.", + "ranges": [{ "startOffset": 32684, "endOffset": 32722, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lazyWebStreams", + "ranges": [{ "startOffset": 32787, "endOffset": 32951, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Writable.fromWeb", + "ranges": [{ "startOffset": 32972, "endOffset": 33106, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Writable.toWeb", + "ranges": [{ "startOffset": 33126, "endOffset": 33233, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Writable.", + "ranges": [{ "startOffset": 33277, "endOffset": 33561, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "146", + "url": "node:stream/promises", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 917, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "pipeline", + "ranges": [{ "startOffset": 318, "endOffset": 869, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "147", + "url": "node:internal/streams/transform", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 7123, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "Transform", + "ranges": [ + { "startOffset": 3920, "endOffset": 5500, "count": 3 }, + { "startOffset": 3990, "endOffset": 4020, "count": 0 }, + { "startOffset": 4295, "endOffset": 4301, "count": 0 }, + { "startOffset": 4338, "endOffset": 4717, "count": 0 }, + { "startOffset": 5044, "endOffset": 5080, "count": 0 }, + { "startOffset": 5133, "endOffset": 5161, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "final", + "ranges": [ + { "startOffset": 5502, "endOffset": 5946, "count": 3 }, + { "startOffset": 5563, "endOffset": 5581, "count": 1 }, + { "startOffset": 5583, "endOffset": 5880, "count": 1 }, + { "startOffset": 5880, "endOffset": 5944, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 5601, "endOffset": 5874, "count": 1 }, + { "startOffset": 5631, "endOffset": 5747, "count": 0 }, + { "startOffset": 5773, "endOffset": 5807, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "prefinish", + "ranges": [ + { "startOffset": 5948, "endOffset": 6029, "count": 3 }, + { "startOffset": 6000, "endOffset": 6027, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "Transform._transform", + "ranges": [{ "startOffset": 6101, "endOffset": 6196, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Transform._write", + "ranges": [{ "startOffset": 6228, "endOffset": 6965, "count": 7 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 6410, "endOffset": 6961, "count": 7 }, + { "startOffset": 6439, "endOffset": 6481, "count": 0 }, + { "startOffset": 6504, "endOffset": 6533, "count": 5 }, + { "startOffset": 6557, "endOffset": 6727, "count": 0 }, + { "startOffset": 6812, "endOffset": 6878, "count": 0 }, + { "startOffset": 6910, "endOffset": 6957, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "Transform._read", + "ranges": [ + { "startOffset": 6996, "endOffset": 7121, "count": 5 }, + { "startOffset": 7032, "endOffset": 7119, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "148", + "url": "node:internal/streams/passthrough", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1762, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "PassThrough", + "ranges": [ + { "startOffset": 1529, "endOffset": 1671, "count": 1 }, + { "startOffset": 1603, "endOffset": 1635, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "PassThrough._transform", + "ranges": [{ "startOffset": 1708, "endOffset": 1760, "count": 5 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "149", + "url": "node:internal/streams/duplexpair", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1373, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 255, "endOffset": 272, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "DuplexSide", + "ranges": [{ "startOffset": 277, "endOffset": 379, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 383, "endOffset": 613, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_read", + "ranges": [{ "startOffset": 617, "endOffset": 742, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_write", + "ranges": [{ "startOffset": 746, "endOffset": 1035, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_final", + "ranges": [{ "startOffset": 1039, "endOffset": 1134, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "duplexPair", + "ranges": [{ "startOffset": 1138, "endOffset": 1343, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "150", + "url": "node:internal/stream_base_commons", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 7070, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1057, "endOffset": 1082, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "handleWriteReq", + "ranges": [ + { "startOffset": 1201, "endOffset": 2056, "count": 19 }, + { "startOffset": 1301, "endOffset": 1468, "count": 0 }, + { "startOffset": 1473, "endOffset": 1487, "count": 0 }, + { "startOffset": 1492, "endOffset": 1556, "count": 0 }, + { "startOffset": 1644, "endOffset": 1706, "count": 0 }, + { "startOffset": 1711, "endOffset": 1723, "count": 0 }, + { "startOffset": 1728, "endOffset": 1741, "count": 0 }, + { "startOffset": 1746, "endOffset": 1761, "count": 0 }, + { "startOffset": 1766, "endOffset": 1830, "count": 0 }, + { "startOffset": 1835, "endOffset": 2050, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "onWriteComplete", + "ranges": [{ "startOffset": 2058, "endOffset": 2647, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createWriteWrap", + "ranges": [{ "startOffset": 2649, "endOffset": 2887, "count": 19 }], + "isBlockCoverage": true + }, + { + "functionName": "writevGeneric", + "ranges": [{ "startOffset": 2889, "endOffset": 3528, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writeGeneric", + "ranges": [{ "startOffset": 3530, "endOffset": 3735, "count": 19 }], + "isBlockCoverage": true + }, + { + "functionName": "afterWriteDispatched", + "ranges": [ + { "startOffset": 3737, "endOffset": 4044, "count": 19 }, + { "startOffset": 3904, "endOffset": 3959, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "onStreamRead", + "ranges": [{ "startOffset": 4046, "endOffset": 5985, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setStreamTimeout", + "ranges": [{ "startOffset": 5987, "endOffset": 6863, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "151", + "url": "node:internal/perf/observe", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 16758, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "queuePending", + "ranges": [{ "startOffset": 2608, "endOffset": 2869, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getObserverType", + "ranges": [{ "startOffset": 2871, "endOffset": 3211, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "maybeDecrementObserverCounts", + "ranges": [{ "startOffset": 3213, "endOffset": 3634, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "maybeIncrementObserverCount", + "ranges": [{ "startOffset": 3636, "endOffset": 3978, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "performanceObserverSorter", + "ranges": [{ "startOffset": 4055, "endOffset": 4122, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "PerformanceObserverEntryList", + "ranges": [{ "startOffset": 4164, "endOffset": 4392, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getEntries", + "ranges": [{ "startOffset": 4396, "endOffset": 4539, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getEntriesByType", + "ranges": [{ "startOffset": 4543, "endOffset": 4851, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getEntriesByName", + "ranges": [{ "startOffset": 4855, "endOffset": 5352, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5356, "endOffset": 5604, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5986, "endOffset": 6051, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "PerformanceObserver", + "ranges": [{ "startOffset": 6056, "endOffset": 6158, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "observe", + "ranges": [{ "startOffset": 6162, "endOffset": 8433, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "disconnect", + "ranges": [{ "startOffset": 8437, "endOffset": 8644, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "takeRecords", + "ranges": [{ "startOffset": 8648, "endOffset": 8738, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get supportedEntryTypes", + "ranges": [{ "startOffset": 8749, "endOffset": 8813, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8817, "endOffset": 9020, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9024, "endOffset": 9169, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9173, "endOffset": 9555, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "enqueue", + "ranges": [{ "startOffset": 10039, "endOffset": 10241, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "bufferUserTiming", + "ranges": [{ "startOffset": 10302, "endOffset": 11328, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "bufferResourceTiming", + "ranges": [{ "startOffset": 11616, "endOffset": 12880, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setResourceTimingBufferSize", + "ranges": [{ "startOffset": 12968, "endOffset": 13240, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setDispatchBufferFull", + "ranges": [{ "startOffset": 13242, "endOffset": 13307, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "clearEntriesFromBuffer", + "ranges": [{ "startOffset": 13309, "endOffset": 13909, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "filterBufferMapByNameAndType", + "ranges": [{ "startOffset": 13911, "endOffset": 14765, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "observerCallback", + "ranges": [{ "startOffset": 14767, "endOffset": 15883, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hasObserver", + "ranges": [{ "startOffset": 15920, "endOffset": 16039, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "startPerf", + "ranges": [{ "startOffset": 16042, "endOffset": 16152, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stopPerf", + "ranges": [{ "startOffset": 16154, "endOffset": 16469, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "152", + "url": "node:internal/perf/performance_entry", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3304, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "isPerformanceEntry", + "ranges": [{ "startOffset": 679, "endOffset": 752, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "PerformanceEntry", + "ranges": [{ "startOffset": 781, "endOffset": 1136, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get name", + "ranges": [{ "startOffset": 1140, "endOffset": 1244, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get entryType", + "ranges": [{ "startOffset": 1248, "endOffset": 1367, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get startTime", + "ranges": [{ "startOffset": 1371, "endOffset": 1490, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get duration", + "ranges": [{ "startOffset": 1494, "endOffset": 1610, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1614, "endOffset": 1858, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toJSON", + "ranges": [{ "startOffset": 1862, "endOffset": 2088, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createPerformanceEntry", + "ranges": [{ "startOffset": 2310, "endOffset": 2446, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get detail", + "ranges": [{ "startOffset": 2563, "endOffset": 2677, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toJSON", + "ranges": [{ "startOffset": 2681, "endOffset": 2936, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createPerformanceNodeEntry", + "ranges": [{ "startOffset": 2940, "endOffset": 3144, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "153", + "url": "node:internal/tty", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 7150, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "warnOnDeactivatedColors", + "ranges": [ + { "startOffset": 2918, "endOffset": 3428, "count": 1 }, + { "startOffset": 2976, "endOffset": 2983, "count": 0 }, + { "startOffset": 3045, "endOffset": 3078, "count": 0 }, + { "startOffset": 3084, "endOffset": 3113, "count": 0 }, + { "startOffset": 3147, "endOffset": 3169, "count": 0 }, + { "startOffset": 3171, "endOffset": 3254, "count": 0 }, + { "startOffset": 3275, "endOffset": 3426, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "getColorDepth", + "ranges": [ + { "startOffset": 3586, "endOffset": 6821, "count": 1 }, + { "startOffset": 3829, "endOffset": 3837, "count": 0 }, + { "startOffset": 3844, "endOffset": 3853, "count": 0 }, + { "startOffset": 3860, "endOffset": 3936, "count": 0 }, + { "startOffset": 3943, "endOffset": 4017, "count": 0 }, + { "startOffset": 4105, "endOffset": 4138, "count": 0 }, + { "startOffset": 4148, "endOffset": 4228, "count": 0 }, + { "startOffset": 4230, "endOffset": 4325, "count": 0 }, + { "startOffset": 4326, "endOffset": 4548, "count": 0 }, + { "startOffset": 4550, "endOffset": 5299, "count": 0 }, + { "startOffset": 5301, "endOffset": 5982, "count": 0 }, + { "startOffset": 5987, "endOffset": 6004, "count": 0 }, + { "startOffset": 6009, "endOffset": 6049, "count": 0 }, + { "startOffset": 6054, "endOffset": 6101, "count": 0 }, + { "startOffset": 6105, "endOffset": 6171, "count": 0 }, + { "startOffset": 6173, "endOffset": 6820, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6613, "endOffset": 6666, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hasColors", + "ranges": [{ "startOffset": 6823, "endOffset": 7096, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "154", + "url": "node:internal/modules/esm/resolve", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 39202, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "emitTrailingSlashPatternDeprecation", + "ranges": [{ "startOffset": 2507, "endOffset": 3140, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "emitInvalidSegmentDeprecation", + "ranges": [{ "startOffset": 3653, "endOffset": 4395, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "emitLegacyIndexDeprecation", + "ranges": [ + { "startOffset": 4912, "endOffset": 5993, "count": 3 }, + { "startOffset": 5011, "endOffset": 5028, "count": 0 }, + { "startOffset": 5120, "endOffset": 5991, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "legacyMainResolve", + "ranges": [ + { "startOffset": 7126, "endOffset": 7844, "count": 3 }, + { "startOffset": 7327, "endOffset": 7338, "count": 0 }, + { "startOffset": 7564, "endOffset": 7571, "count": 0 }, + { "startOffset": 7572, "endOffset": 7576, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "finalizeResolution", + "ranges": [ + { "startOffset": 8628, "endOffset": 10351, "count": 37 }, + { "startOffset": 8764, "endOffset": 9015, "count": 0 }, + { "startOffset": 9077, "endOffset": 9204, "count": 0 }, + { "startOffset": 9318, "endOffset": 9350, "count": 0 }, + { "startOffset": 9419, "endOffset": 9609, "count": 0 }, + { "startOffset": 9632, "endOffset": 10010, "count": 0 }, + { "startOffset": 10256, "endOffset": 10261, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "importNotDefined", + "ranges": [{ "startOffset": 10765, "endOffset": 10976, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "exportsNotFound", + "ranges": [{ "startOffset": 11372, "endOffset": 11567, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "throwInvalidSubpath", + "ranges": [{ "startOffset": 12205, "endOffset": 12588, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "invalidPackageTarget", + "ranges": [{ "startOffset": 13044, "endOffset": 13422, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolvePackageTargetString", + "ranges": [ + { "startOffset": 14734, "endOffset": 17473, "count": 357 }, + { "startOffset": 14903, "endOffset": 14914, "count": 5 }, + { "startOffset": 14915, "endOffset": 14951, "count": 0 }, + { "startOffset": 14953, "endOffset": 15037, "count": 0 }, + { "startOffset": 15087, "endOffset": 15630, "count": 0 }, + { "startOffset": 15722, "endOffset": 16332, "count": 0 }, + { "startOffset": 16551, "endOffset": 16635, "count": 0 }, + { "startOffset": 16659, "endOffset": 16679, "count": 352 }, + { "startOffset": 16679, "endOffset": 16747, "count": 5 }, + { "startOffset": 16747, "endOffset": 17304, "count": 0 }, + { "startOffset": 17304, "endOffset": 17433, "count": 5 }, + { "startOffset": 17433, "endOffset": 17472, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 15405, "endOffset": 15418, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 15931, "endOffset": 15944, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 16077, "endOffset": 16090, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 16814, "endOffset": 16827, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 17054, "endOffset": 17067, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 17407, "endOffset": 17420, "count": 5 }], + "isBlockCoverage": true + }, + { + "functionName": "isArrayIndex", + "ranges": [ + { "startOffset": 17665, "endOffset": 17809, "count": 759 }, + { "startOffset": 17761, "endOffset": 17806, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "resolvePackageTarget", + "ranges": [ + { "startOffset": 18604, "endOffset": 20822, "count": 614 }, + { "startOffset": 18797, "endOffset": 18951, "count": 357 }, + { "startOffset": 18951, "endOffset": 20705, "count": 257 }, + { "startOffset": 18983, "endOffset": 19797, "count": 0 }, + { "startOffset": 19950, "endOffset": 20178, "count": 759 }, + { "startOffset": 20008, "endOffset": 20172, "count": 0 }, + { "startOffset": 20221, "endOffset": 20630, "count": 731 }, + { "startOffset": 20278, "endOffset": 20300, "count": 668 }, + { "startOffset": 20302, "endOffset": 20624, "count": 257 }, + { "startOffset": 20573, "endOffset": 20586, "count": 0 }, + { "startOffset": 20630, "endOffset": 20705, "count": 0 }, + { "startOffset": 20705, "endOffset": 20821, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "isConditionalExportsMainSugar", + "ranges": [ + { "startOffset": 21128, "endOffset": 22071, "count": 286 }, + { "startOffset": 21234, "endOffset": 21258, "count": 285 }, + { "startOffset": 21260, "endOffset": 21276, "count": 1 }, + { "startOffset": 21276, "endOffset": 21330, "count": 285 }, + { "startOffset": 21332, "endOffset": 21349, "count": 0 }, + { "startOffset": 21349, "endOffset": 21489, "count": 285 }, + { "startOffset": 21489, "endOffset": 22040, "count": 3589 }, + { "startOffset": 21599, "endOffset": 21656, "count": 285 }, + { "startOffset": 21656, "endOffset": 22036, "count": 3304 }, + { "startOffset": 21712, "endOffset": 22036, "count": 0 }, + { "startOffset": 22040, "endOffset": 22070, "count": 285 } + ], + "isBlockCoverage": true + }, + { + "functionName": "packageExportsResolve", + "ranges": [ + { "startOffset": 22568, "endOffset": 25139, "count": 286 }, + { "startOffset": 22772, "endOffset": 22809, "count": 4 }, + { "startOffset": 22872, "endOffset": 22926, "count": 285 }, + { "startOffset": 22927, "endOffset": 22981, "count": 285 }, + { "startOffset": 22983, "endOffset": 23316, "count": 285 }, + { "startOffset": 23211, "endOffset": 23285, "count": 0 }, + { "startOffset": 23316, "endOffset": 23455, "count": 1 }, + { "startOffset": 23455, "endOffset": 24644, "count": 5 }, + { "startOffset": 23569, "endOffset": 23699, "count": 1 }, + { "startOffset": 23701, "endOffset": 24640, "count": 1 }, + { "startOffset": 24006, "endOffset": 24142, "count": 0 }, + { "startOffset": 24644, "endOffset": 25073, "count": 1 }, + { "startOffset": 24969, "endOffset": 25043, "count": 0 }, + { "startOffset": 25073, "endOffset": 25138, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "patternKeyCompare", + "ranges": [ + { "startOffset": 25515, "endOffset": 26070, "count": 5 }, + { "startOffset": 25713, "endOffset": 25732, "count": 0 }, + { "startOffset": 25774, "endOffset": 25784, "count": 0 }, + { "startOffset": 25833, "endOffset": 25847, "count": 0 }, + { "startOffset": 25888, "endOffset": 26069, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "packageImportsResolve", + "ranges": [ + { "startOffset": 26557, "endOffset": 28985, "count": 71 }, + { "startOffset": 26672, "endOffset": 26825, "count": 0 }, + { "startOffset": 27127, "endOffset": 27175, "count": 67 }, + { "startOffset": 27177, "endOffset": 27427, "count": 67 }, + { "startOffset": 27427, "endOffset": 28919, "count": 4 }, + { "startOffset": 27596, "endOffset": 28442, "count": 8 }, + { "startOffset": 27728, "endOffset": 27921, "count": 4 }, + { "startOffset": 27923, "endOffset": 28432, "count": 4 }, + { "startOffset": 28929, "endOffset": 28984, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "packageResolve", + "ranges": [ + { "startOffset": 29310, "endOffset": 30105, "count": 15 }, + { "startOffset": 29474, "endOffset": 29520, "count": 12 }, + { "startOffset": 29520, "endOffset": 29813, "count": 3 }, + { "startOffset": 29813, "endOffset": 29924, "count": 0 }, + { "startOffset": 29924, "endOffset": 30052, "count": 3 }, + { "startOffset": 30052, "endOffset": 30104, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "isBareSpecifier", + "ranges": [{ "startOffset": 30238, "endOffset": 30348, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isRelativeSpecifier", + "ranges": [ + { "startOffset": 30489, "endOffset": 30768, "count": 138 }, + { "startOffset": 30559, "endOffset": 30750, "count": 68 }, + { "startOffset": 30617, "endOffset": 30633, "count": 50 }, + { "startOffset": 30633, "endOffset": 30746, "count": 18 }, + { "startOffset": 30750, "endOffset": 30767, "count": 70 } + ], + "isBlockCoverage": true + }, + { + "functionName": "shouldBeTreatedAsRelativeOrAbsolutePath", + "ranges": [ + { "startOffset": 30939, "endOffset": 31130, "count": 138 }, + { "startOffset": 31025, "endOffset": 31042, "count": 0 }, + { "startOffset": 31071, "endOffset": 31087, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "moduleResolve", + "ranges": [ + { "startOffset": 31511, "endOffset": 32845, "count": 49 }, + { "startOffset": 31702, "endOffset": 31721, "count": 0 }, + { "startOffset": 31936, "endOffset": 32160, "count": 34 }, + { "startOffset": 31997, "endOffset": 32156, "count": 0 }, + { "startOffset": 32160, "endOffset": 32716, "count": 15 }, + { "startOffset": 32216, "endOffset": 32288, "count": 0 }, + { "startOffset": 32355, "endOffset": 32384, "count": 0 }, + { "startOffset": 32409, "endOffset": 32464, "count": 0 }, + { "startOffset": 32466, "endOffset": 32644, "count": 0 }, + { "startOffset": 32754, "endOffset": 32780, "count": 12 }, + { "startOffset": 32780, "endOffset": 32844, "count": 37 } + ], + "isBlockCoverage": true + }, + { + "functionName": "resolveAsCommonJS", + "ranges": [{ "startOffset": 33045, "endOffset": 34871, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "throwIfInvalidParentURL", + "ranges": [ + { "startOffset": 35030, "endOffset": 35303, "count": 89 }, + { "startOffset": 35107, "endOffset": 35158, "count": 0 }, + { "startOffset": 35195, "endOffset": 35215, "count": 0 }, + { "startOffset": 35217, "endOffset": 35301, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "defaultResolve", + "ranges": [ + { "startOffset": 35851, "endOffset": 38016, "count": 89 }, + { "startOffset": 36156, "endOffset": 36212, "count": 34 }, + { "startOffset": 36212, "endOffset": 36257, "count": 55 }, + { "startOffset": 36281, "endOffset": 36481, "count": 74 }, + { "startOffset": 36418, "endOffset": 36477, "count": 0 }, + { "startOffset": 36504, "endOffset": 36514, "count": 0 }, + { "startOffset": 36544, "endOffset": 36591, "count": 40 }, + { "startOffset": 36591, "endOffset": 36650, "count": 49 }, + { "startOffset": 36650, "endOffset": 37157, "count": 0 }, + { "startOffset": 37157, "endOffset": 37313, "count": 49 }, + { "startOffset": 37313, "endOffset": 37335, "count": 0 }, + { "startOffset": 37336, "endOffset": 37354, "count": 49 }, + { "startOffset": 37367, "endOffset": 37790, "count": 0 }, + { "startOffset": 37790, "endOffset": 38015, "count": 49 } + ], + "isBlockCoverage": true + }, + { + "functionName": "decorateErrorWithCommonJSHints", + "ranges": [{ "startOffset": 38279, "endOffset": 38892, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "155", + "url": "node:internal/modules/esm/get_format", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 7578, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "node:", + "ranges": [{ "startOffset": 854, "endOffset": 885, "count": 12 }], + "isBlockCoverage": true + }, + { + "functionName": "detectModuleFormat", + "ranges": [ + { "startOffset": 1089, "endOffset": 1330, "count": 7 }, + { "startOffset": 1147, "endOffset": 1191, "count": 6 }, + { "startOffset": 1176, "endOffset": 1188, "count": 0 }, + { "startOffset": 1191, "endOffset": 1213, "count": 1 }, + { "startOffset": 1213, "endOffset": 1235, "count": 0 }, + { "startOffset": 1235, "endOffset": 1304, "count": 1 }, + { "startOffset": 1304, "endOffset": 1314, "count": 0 }, + { "startOffset": 1315, "endOffset": 1327, "count": 1 } + ], + "isBlockCoverage": true + }, + { + "functionName": "getDataProtocolModuleFormat", + "ranges": [{ "startOffset": 1391, "endOffset": 1607, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "extname", + "ranges": [ + { "startOffset": 1882, "endOffset": 2241, "count": 41 }, + { "startOffset": 1982, "endOffset": 2226, "count": 157 }, + { "startOffset": 2044, "endOffset": 2079, "count": 0 }, + { "startOffset": 2087, "endOffset": 2216, "count": 41 }, + { "startOffset": 2175, "endOffset": 2179, "count": 0 }, + { "startOffset": 2226, "endOffset": 2240, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "underNodeModules", + "ranges": [{ "startOffset": 2493, "endOffset": 2714, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "warnTypelessPackageJsonFile", + "ranges": [{ "startOffset": 2757, "endOffset": 3384, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getFileProtocolModuleFormat", + "ranges": [ + { "startOffset": 3525, "endOffset": 6720, "count": 41 }, + { "startOffset": 3694, "endOffset": 4572, "count": 7 }, + { "startOffset": 3827, "endOffset": 3860, "count": 0 }, + { "startOffset": 4265, "endOffset": 4284, "count": 0 }, + { "startOffset": 4286, "endOffset": 4549, "count": 0 }, + { "startOffset": 4572, "endOffset": 4593, "count": 34 }, + { "startOffset": 4593, "endOffset": 4627, "count": 0 }, + { "startOffset": 4629, "endOffset": 5901, "count": 0 }, + { "startOffset": 5901, "endOffset": 5921, "count": 34 }, + { "startOffset": 5921, "endOffset": 6428, "count": 0 }, + { "startOffset": 6428, "endOffset": 6504, "count": 34 }, + { "startOffset": 6504, "endOffset": 6719, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "defaultGetFormatWithoutErrors", + "ranges": [ + { "startOffset": 6865, "endOffset": 7100, "count": 52 }, + { "startOffset": 7019, "endOffset": 7041, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "defaultGetFormat", + "ranges": [ + { "startOffset": 7245, "endOffset": 7468, "count": 1 }, + { "startOffset": 7386, "endOffset": 7408, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "156", + "url": "node:internal/modules/esm/formats", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1846, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "mimeToFormat", + "ranges": [{ "startOffset": 862, "endOffset": 1173, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getFormatOfExtensionlessFile", + "ranges": [{ "startOffset": 1494, "endOffset": 1752, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "157", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/node_modules/supports-color/index.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 3065, "count": 1 }, + { "startOffset": 254, "endOffset": 278, "count": 0 }, + { "startOffset": 382, "endOffset": 406, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "envForceColor", + "ranges": [ + { "startOffset": 408, "endOffset": 672, "count": 3 }, + { "startOffset": 498, "endOffset": 516, "count": 0 }, + { "startOffset": 553, "endOffset": 571, "count": 0 }, + { "startOffset": 611, "endOffset": 614, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "translateLevel", + "ranges": [ + { "startOffset": 674, "endOffset": 832, "count": 3 }, + { "startOffset": 725, "endOffset": 745, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "supportsColor", + "ranges": [ + { "startOffset": 834, "endOffset": 2729, "count": 3 }, + { "startOffset": 1081, "endOffset": 1099, "count": 0 }, + { "startOffset": 1125, "endOffset": 1141, "count": 0 }, + { "startOffset": 1251, "endOffset": 1269, "count": 0 }, + { "startOffset": 1299, "endOffset": 1317, "count": 0 }, + { "startOffset": 1383, "endOffset": 1399, "count": 0 }, + { "startOffset": 1425, "endOffset": 1429, "count": 0 }, + { "startOffset": 1458, "endOffset": 1476, "count": 0 }, + { "startOffset": 1513, "endOffset": 1868, "count": 0 }, + { "startOffset": 1888, "endOffset": 2077, "count": 0 }, + { "startOffset": 2111, "endOffset": 2192, "count": 0 }, + { "startOffset": 2246, "endOffset": 2728, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1989, "endOffset": 2008, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getSupportLevel", + "ranges": [{ "startOffset": 2731, "endOffset": 2909, "count": 3 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "158", + "url": "node:os", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 8250, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "getCheckedFunction", + "ranges": [{ "startOffset": 2043, "endOffset": 2289, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "checkError", + "ranges": [ + { "startOffset": 2102, "endOffset": 2285, "count": 2 }, + { "startOffset": 2198, "endOffset": 2265, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "getOSRelease", + "ranges": [{ "startOffset": 2671, "endOffset": 2684, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "getOSType", + "ranges": [{ "startOffset": 2733, "endOffset": 2743, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getOSVersion", + "ranges": [{ "startOffset": 2795, "endOffset": 2808, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getMachine", + "ranges": [{ "startOffset": 2858, "endOffset": 2871, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getAvailableParallelism.", + "ranges": [{ "startOffset": 2919, "endOffset": 2950, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getFreeMem.", + "ranges": [{ "startOffset": 2984, "endOffset": 3002, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getHostname.", + "ranges": [{ "startOffset": 3037, "endOffset": 3056, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getOSVersion.", + "ranges": [{ "startOffset": 3092, "endOffset": 3112, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getOSType.", + "ranges": [{ "startOffset": 3145, "endOffset": 3162, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getOSRelease.", + "ranges": [{ "startOffset": 3198, "endOffset": 3218, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getMachine.", + "ranges": [{ "startOffset": 3252, "endOffset": 3270, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getHomeDirectory.", + "ranges": [{ "startOffset": 3310, "endOffset": 3334, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getTotalMem.", + "ranges": [{ "startOffset": 3369, "endOffset": 3388, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getUptime.", + "ranges": [{ "startOffset": 3421, "endOffset": 3438, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "loadavg", + "ranges": [{ "startOffset": 3576, "endOffset": 3676, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cpus", + "ranges": [{ "startOffset": 3956, "endOffset": 4385, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "arch", + "ranges": [{ "startOffset": 4416, "endOffset": 4458, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "arch.", + "ranges": [{ "startOffset": 4485, "endOffset": 4503, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "platform", + "ranges": [{ "startOffset": 4535, "endOffset": 4585, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "platform.", + "ranges": [{ "startOffset": 4616, "endOffset": 4638, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "tmpdir", + "ranges": [ + { "startOffset": 4670, "endOffset": 5052, "count": 5 }, + { "startOffset": 4707, "endOffset": 5016, "count": 0 }, + { "startOffset": 5040, "endOffset": 5049, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "tmpdir.", + "ranges": [{ "startOffset": 5081, "endOffset": 5095, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "endianness", + "ranges": [{ "startOffset": 5132, "endOffset": 5179, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "endianness.", + "ranges": [{ "startOffset": 5212, "endOffset": 5229, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "networkInterfaces", + "ranges": [{ "startOffset": 5441, "endOffset": 6134, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setPriority", + "ranges": [{ "startOffset": 6218, "endOffset": 6507, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getPriority", + "ranges": [{ "startOffset": 6563, "endOffset": 6818, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "userInfo", + "ranges": [{ "startOffset": 7121, "endOffset": 7347, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "159", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/has-flag/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 330, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "module.exports", + "ranges": [ + { "startOffset": 32, "endOffset": 328, "count": 36 }, + { "startOffset": 102, "endOffset": 106, "count": 0 }, + { "startOffset": 128, "endOffset": 133, "count": 0 }, + { "startOffset": 262, "endOffset": 325, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "160", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/node_modules/debug/src/common.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 6915, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "setup", + "ranges": [{ "startOffset": 108, "endOffset": 6889, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 422, "endOffset": 464, "count": 9 }], + "isBlockCoverage": true + }, + { + "functionName": "selectColor", + "ranges": [{ "startOffset": 1012, "endOffset": 1290, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createDebug", + "ranges": [{ "startOffset": 1460, "endOffset": 3626, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "extend", + "ranges": [{ "startOffset": 3629, "endOffset": 3832, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "enable", + "ranges": [ + { "startOffset": 3993, "endOffset": 4436, "count": 1 }, + { "startOffset": 4196, "endOffset": 4208, "count": 0 }, + { "startOffset": 4314, "endOffset": 4433, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "matchesTemplate", + "ranges": [{ "startOffset": 4629, "endOffset": 5656, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "disable", + "ranges": [{ "startOffset": 5742, "endOffset": 5933, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "enabled", + "ranges": [ + { "startOffset": 6076, "endOffset": 6330, "count": 1 }, + { "startOffset": 6141, "endOffset": 6207, "count": 0 }, + { "startOffset": 6247, "endOffset": 6310, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "coerce", + "ranges": [{ "startOffset": 6419, "endOffset": 6528, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "destroy", + "ranges": [{ "startOffset": 6647, "endOffset": 6823, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "161", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/ms/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3024, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "module.exports", + "ranges": [{ "startOffset": 422, "endOffset": 792, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parse", + "ranges": [{ "startOffset": 916, "endOffset": 1999, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fmtShort", + "ranges": [{ "startOffset": 2097, "endOffset": 2414, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fmtLong", + "ranges": [{ "startOffset": 2511, "endOffset": 2847, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "plural", + "ranges": [{ "startOffset": 2883, "endOffset": 3023, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "162", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/configuration/index.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 1571, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 88, "endOffset": 405, "count": 7 }, + { "startOffset": 232, "endOffset": 247, "count": 0 }, + { "startOffset": 264, "endOffset": 284, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 327, "endOffset": 354, "count": 5 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__exportStar", + "ranges": [ + { "startOffset": 541, "endOffset": 692, "count": 8 }, + { "startOffset": 585, "endOffset": 690, "count": 7 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 750, "endOffset": 831, "count": 1 }, + { "startOffset": 808, "endOffset": 828, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1041, "endOffset": 1103, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "163", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/configuration/argv_parser.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 5994, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 70, "endOffset": 151, "count": 1 }, + { "startOffset": 122, "endOffset": 127, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "collect", + "ranges": [ + { "startOffset": 488, "endOffset": 609, "count": 2 }, + { "startOffset": 577, "endOffset": 608, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "mergeJson", + "ranges": [{ "startOffset": 615, "endOffset": 1174, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 650, "endOffset": 1167, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mergeTags", + "ranges": [{ "startOffset": 1180, "endOffset": 1273, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "validateCountOption", + "ranges": [{ "startOffset": 1279, "endOffset": 1542, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "validateLanguage", + "ranges": [{ "startOffset": 1548, "endOffset": 1739, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parse", + "ranges": [{ "startOffset": 1745, "endOffset": 5920, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2670, "endOffset": 2745, "count": 11 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3923, "endOffset": 3981, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4551, "endOffset": 4606, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "164", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/node_modules/commander/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 798, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "165", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/node_modules/commander/lib/argument.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3174, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Argument", + "ranges": [{ "startOffset": 412, "endOffset": 1166, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "name", + "ranges": [{ "startOffset": 1237, "endOffset": 1272, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_concatValue", + "ranges": [{ "startOffset": 1307, "endOffset": 1476, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default", + "ranges": [{ "startOffset": 1676, "endOffset": 1805, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "argParser", + "ranges": [{ "startOffset": 1966, "endOffset": 2026, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "choices", + "ranges": [{ "startOffset": 2155, "endOffset": 2527, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "argRequired", + "ranges": [{ "startOffset": 2572, "endOffset": 2634, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "argOptional", + "ranges": [{ "startOffset": 2679, "endOffset": 2742, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "humanReadableArgName", + "ranges": [{ "startOffset": 2898, "endOffset": 3090, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "166", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/node_modules/commander/lib/error.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1240, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "CommanderError", + "ranges": [{ "startOffset": 385, "endOffset": 672, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "InvalidArgumentError", + "ranges": [{ "startOffset": 925, "endOffset": 1142, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "167", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/node_modules/commander/lib/command.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 70043, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Command", + "ranges": [ + { "startOffset": 614, "endOffset": 2909, "count": 2 }, + { "startOffset": 1153, "endOffset": 1158, "count": 1 } + ], + "isBlockCoverage": true + }, + { + "functionName": "writeOut", + "ranges": [{ "startOffset": 2078, "endOffset": 2112, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writeErr", + "ranges": [{ "startOffset": 2130, "endOffset": 2164, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getOutHelpWidth", + "ranges": [{ "startOffset": 2189, "endOffset": 2252, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getErrHelpWidth", + "ranges": [{ "startOffset": 2277, "endOffset": 2340, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "outputError", + "ranges": [{ "startOffset": 2361, "endOffset": 2387, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "copyInheritedSettings", + "ranges": [{ "startOffset": 3216, "endOffset": 4396, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "command", + "ranges": [{ "startOffset": 5577, "endOffset": 6467, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createCommand", + "ranges": [{ "startOffset": 6780, "endOffset": 6835, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createHelp", + "ranges": [{ "startOffset": 7020, "endOffset": 7098, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "configureHelp", + "ranges": [{ "startOffset": 7409, "endOffset": 7575, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "configureOutput", + "ranges": [{ "startOffset": 8372, "endOffset": 8558, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "showHelpAfterError", + "ranges": [{ "startOffset": 8738, "endOffset": 8913, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "showSuggestionAfterError", + "ranges": [{ "startOffset": 9125, "endOffset": 9256, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addCommand", + "ranges": [{ "startOffset": 9558, "endOffset": 10018, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createArgument", + "ranges": [{ "startOffset": 10371, "endOffset": 10454, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "argument", + "ranges": [{ "startOffset": 10997, "endOffset": 11293, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "arguments", + "ranges": [{ "startOffset": 11572, "endOffset": 11692, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addArgument", + "ranges": [{ "startOffset": 11865, "endOffset": 12362, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addHelpCommand", + "ranges": [{ "startOffset": 12686, "endOffset": 13174, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_hasImplicitHelpCommand", + "ranges": [ + { "startOffset": 13232, "endOffset": 13453, "count": 1 }, + { "startOffset": 13348, "endOffset": 13371, "count": 0 }, + { "startOffset": 13372, "endOffset": 13401, "count": 0 }, + { "startOffset": 13408, "endOffset": 13452, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "hook", + "ranges": [{ "startOffset": 13621, "endOffset": 14072, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "exitOverride", + "ranges": [{ "startOffset": 14322, "endOffset": 14651, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_exit", + "ranges": [{ "startOffset": 14963, "endOffset": 15179, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "action", + "ranges": [{ "startOffset": 15482, "endOffset": 16060, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createOption", + "ranges": [{ "startOffset": 16398, "endOffset": 16479, "count": 27 }], + "isBlockCoverage": true + }, + { + "functionName": "addOption", + "ranges": [ + { "startOffset": 16599, "endOffset": 19141, "count": 26 }, + { "startOffset": 16744, "endOffset": 17092, "count": 1 }, + { "startOffset": 16957, "endOffset": 17086, "count": 0 }, + { "startOffset": 17092, "endOffset": 17219, "count": 25 }, + { "startOffset": 17137, "endOffset": 17219, "count": 1 }, + { "startOffset": 18869, "endOffset": 19119, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "handleOptionValue", + "ranges": [ + { "startOffset": 17357, "endOffset": 18635, "count": 2 }, + { "startOffset": 17558, "endOffset": 17591, "count": 0 }, + { "startOffset": 17593, "endOffset": 17634, "count": 0 }, + { "startOffset": 17830, "endOffset": 18090, "count": 0 }, + { "startOffset": 18098, "endOffset": 18200, "count": 0 }, + { "startOffset": 18302, "endOffset": 18568, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 18669, "endOffset": 18842, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 18907, "endOffset": 19111, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_optionEx", + "ranges": [ + { "startOffset": 19251, "endOffset": 20000, "count": 26 }, + { "startOffset": 19343, "endOffset": 19369, "count": 0 }, + { "startOffset": 19371, "endOffset": 19484, "count": 0 }, + { "startOffset": 19629, "endOffset": 19686, "count": 14 }, + { "startOffset": 19686, "endOffset": 19960, "count": 12 }, + { "startOffset": 19718, "endOffset": 19921, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "fn", + "ranges": [{ "startOffset": 19775, "endOffset": 19864, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "option", + "ranges": [{ "startOffset": 21324, "endOffset": 21443, "count": 26 }], + "isBlockCoverage": true + }, + { + "functionName": "requiredOption", + "ranges": [{ "startOffset": 21960, "endOffset": 22104, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "combineFlagAndOptionalValue", + "ranges": [{ "startOffset": 22563, "endOffset": 22680, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "allowUnknownOption", + "ranges": [{ "startOffset": 22865, "endOffset": 22974, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "allowExcessArguments", + "ranges": [{ "startOffset": 23214, "endOffset": 23325, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "enablePositionalOptions", + "ranges": [{ "startOffset": 23705, "endOffset": 23820, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "passThroughOptions", + "ranges": [{ "startOffset": 24297, "endOffset": 24617, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "storeOptionsAsProperties", + "ranges": [ + { "startOffset": 24917, "endOffset": 25166, "count": 1 }, + { "startOffset": 25057, "endOffset": 25145, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "getOptionValue", + "ranges": [ + { "startOffset": 25269, "endOffset": 25402, "count": 29 }, + { "startOffset": 25331, "endOffset": 25362, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "setOptionValue", + "ranges": [{ "startOffset": 25552, "endOffset": 25649, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setOptionValueWithSource", + "ranges": [ + { "startOffset": 25917, "endOffset": 26153, "count": 3 }, + { "startOffset": 26004, "endOffset": 26036, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "getOptionValueSource", + "ranges": [{ "startOffset": 26325, "endOffset": 26398, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "getOptionValueSourceWithGlobals", + "ranges": [{ "startOffset": 26599, "endOffset": 26900, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_prepareUserArgs", + "ranges": [ + { "startOffset": 27116, "endOffset": 28497, "count": 1 }, + { "startOffset": 27207, "endOffset": 27292, "count": 0 }, + { "startOffset": 27398, "endOffset": 27577, "count": 0 }, + { "startOffset": 27877, "endOffset": 28119, "count": 0 }, + { "startOffset": 28126, "endOffset": 28187, "count": 0 }, + { "startOffset": 28194, "endOffset": 28287, "count": 0 }, + { "startOffset": 28368, "endOffset": 28387, "count": 0 }, + { "startOffset": 28389, "endOffset": 28429, "count": 0 }, + { "startOffset": 28458, "endOffset": 28470, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "parse", + "ranges": [{ "startOffset": 29349, "endOffset": 29500, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "parseAsync", + "ranges": [{ "startOffset": 30353, "endOffset": 30521, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_executeSubCommand", + "ranges": [{ "startOffset": 30600, "endOffset": 35631, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_dispatchSubcommand", + "ranges": [{ "startOffset": 35666, "endOffset": 36222, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_checkNumberOfArguments", + "ranges": [ + { "startOffset": 36312, "endOffset": 36712, "count": 1 }, + { "startOffset": 36546, "endOffset": 36591, "count": 0 }, + { "startOffset": 36593, "endOffset": 36614, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 36378, "endOffset": 36497, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_processArguments", + "ranges": [{ "startOffset": 36824, "endOffset": 38435, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "myParseArg", + "ranges": [{ "startOffset": 36869, "endOffset": 37499, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 37592, "endOffset": 38389, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_chainOrCall", + "ranges": [{ "startOffset": 38647, "endOffset": 38916, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_chainOrCallHooks", + "ranges": [{ "startOffset": 39056, "endOffset": 39684, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_chainOrCallSubCommandHook", + "ranges": [{ "startOffset": 39857, "endOffset": 40189, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parseCommand", + "ranges": [ + { "startOffset": 40333, "endOffset": 43584, "count": 1 }, + { "startOffset": 40708, "endOffset": 40795, "count": 0 }, + { "startOffset": 40835, "endOffset": 40875, "count": 0 }, + { "startOffset": 40877, "endOffset": 41026, "count": 0 }, + { "startOffset": 41061, "endOffset": 41283, "count": 0 }, + { "startOffset": 41313, "endOffset": 41338, "count": 0 }, + { "startOffset": 41339, "endOffset": 41362, "count": 0 }, + { "startOffset": 41363, "endOffset": 41391, "count": 0 }, + { "startOffset": 41393, "endOffset": 41514, "count": 0 }, + { "startOffset": 41973, "endOffset": 42521, "count": 0 }, + { "startOffset": 42542, "endOffset": 42584, "count": 0 }, + { "startOffset": 42586, "endOffset": 42724, "count": 0 }, + { "startOffset": 42787, "endOffset": 42887, "count": 0 }, + { "startOffset": 42931, "endOffset": 43068, "count": 0 }, + { "startOffset": 43100, "endOffset": 43140, "count": 0 }, + { "startOffset": 43229, "endOffset": 43580, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "checkForUnknownOptions", + "ranges": [ + { "startOffset": 41783, "endOffset": 41890, "count": 1 }, + { "startOffset": 41828, "endOffset": 41884, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 42189, "endOffset": 42234, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 42317, "endOffset": 42405, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_findCommand", + "ranges": [ + { "startOffset": 43651, "endOffset": 43797, "count": 2 }, + { "startOffset": 43687, "endOffset": 43704, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 43735, "endOffset": 43791, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_findOption", + "ranges": [{ "startOffset": 43929, "endOffset": 44007, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 43977, "endOffset": 44001, "count": 65 }], + "isBlockCoverage": true + }, + { + "functionName": "_checkForMissingMandatoryOptions", + "ranges": [{ "startOffset": 44184, "endOffset": 44580, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 44384, "endOffset": 44568, "count": 27 }, + { "startOffset": 44431, "endOffset": 44494, "count": 0 }, + { "startOffset": 44496, "endOffset": 44560, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "_checkForConflictingLocalOptions", + "ranges": [{ "startOffset": 44699, "endOffset": 45485, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 44800, "endOffset": 45032, "count": 27 }, + { "startOffset": 44922, "endOffset": 44957, "count": 24 }, + { "startOffset": 44957, "endOffset": 45031, "count": 3 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 45115, "endOffset": 45158, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 45202, "endOffset": 45479, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_checkForConflictingOptions", + "ranges": [{ "startOffset": 45658, "endOffset": 45882, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "parseOptions", + "ranges": [ + { "startOffset": 46360, "endOffset": 50416, "count": 1 }, + { "startOffset": 46741, "endOffset": 50377, "count": 3 }, + { "startOffset": 46817, "endOffset": 46915, "count": 0 }, + { "startOffset": 46948, "endOffset": 46968, "count": 0 }, + { "startOffset": 46970, "endOffset": 47062, "count": 0 }, + { "startOffset": 47127, "endOffset": 48017, "count": 2 }, + { "startOffset": 47399, "endOffset": 47434, "count": 0 }, + { "startOffset": 47503, "endOffset": 47913, "count": 0 }, + { "startOffset": 47963, "endOffset": 47971, "count": 0 }, + { "startOffset": 48017, "endOffset": 48140, "count": 1 }, + { "startOffset": 48141, "endOffset": 48158, "count": 0 }, + { "startOffset": 48160, "endOffset": 48707, "count": 0 }, + { "startOffset": 48707, "endOffset": 48803, "count": 1 }, + { "startOffset": 48803, "endOffset": 49076, "count": 0 }, + { "startOffset": 49076, "endOffset": 49379, "count": 1 }, + { "startOffset": 49379, "endOffset": 49412, "count": 0 }, + { "startOffset": 49412, "endOffset": 49562, "count": 1 }, + { "startOffset": 49564, "endOffset": 49588, "count": 0 }, + { "startOffset": 49589, "endOffset": 49612, "count": 0 }, + { "startOffset": 49614, "endOffset": 50107, "count": 0 }, + { "startOffset": 50107, "endOffset": 50234, "count": 1 }, + { "startOffset": 50234, "endOffset": 50331, "count": 0 }, + { "startOffset": 50331, "endOffset": 50377, "count": 1 } + ], + "isBlockCoverage": true + }, + { + "functionName": "maybeOption", + "ranges": [{ "startOffset": 46577, "endOffset": 46657, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "opts", + "ranges": [ + { "startOffset": 50532, "endOffset": 50981, "count": 1 }, + { "startOffset": 50581, "endOffset": 50945, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "optsWithGlobals", + "ranges": [{ "startOffset": 51115, "endOffset": 51308, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 51603, "endOffset": 52219, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parseOptionsEnv", + "ranges": [{ "startOffset": 52373, "endOffset": 53201, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 52419, "endOffset": 53195, "count": 27 }, + { "startOffset": 52457, "endOffset": 52488, "count": 0 }, + { "startOffset": 52490, "endOffset": 53189, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "_parseOptionsImplied", + "ranges": [{ "startOffset": 53319, "endOffset": 54096, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "hasCustomOptionValue", + "ranges": [{ "startOffset": 53431, "endOffset": 53586, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 53619, "endOffset": 53806, "count": 27 }, + { "startOffset": 53660, "endOffset": 53715, "count": 0 }, + { "startOffset": 53716, "endOffset": 53806, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 53823, "endOffset": 54090, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "missingArgument", + "ranges": [{ "startOffset": 54195, "endOffset": 54352, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "optionMissingArgument", + "ranges": [{ "startOffset": 54458, "endOffset": 54635, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "missingMandatoryOptionValue", + "ranges": [{ "startOffset": 54767, "endOffset": 54962, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_conflictingOption", + "ranges": [{ "startOffset": 55113, "endOffset": 56530, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "unknownOption", + "ranges": [{ "startOffset": 56624, "endOffset": 57403, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_excessArguments", + "ranges": [ + { "startOffset": 57522, "endOffset": 57952, "count": 1 }, + { "startOffset": 57598, "endOffset": 57675, "count": 0 }, + { "startOffset": 57676, "endOffset": 57681, "count": 0 }, + { "startOffset": 57721, "endOffset": 57746, "count": 0 }, + { "startOffset": 57747, "endOffset": 57751, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "unknownCommand", + "ranges": [{ "startOffset": 58014, "endOffset": 58606, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "version", + "ranges": [ + { "startOffset": 59053, "endOffset": 59609, "count": 1 }, + { "startOffset": 59115, "endOffset": 59136, "count": 0 }, + { "startOffset": 59180, "endOffset": 59198, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 59472, "endOffset": 59586, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "description", + "ranges": [{ "startOffset": 59752, "endOffset": 60003, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "summary", + "ranges": [{ "startOffset": 60145, "endOffset": 60254, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "alias", + "ranges": [{ "startOffset": 60491, "endOffset": 61063, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "aliases", + "ranges": [{ "startOffset": 61252, "endOffset": 61499, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "usage", + "ranges": [ + { "startOffset": 61618, "endOffset": 62058, "count": 1 }, + { "startOffset": 61658, "endOffset": 62013, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 61738, "endOffset": 61798, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "name", + "ranges": [ + { "startOffset": 62178, "endOffset": 62278, "count": 1 }, + { "startOffset": 62235, "endOffset": 62277, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "nameFromFilename", + "ranges": [{ "startOffset": 62626, "endOffset": 62742, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "executableDir", + "ranges": [{ "startOffset": 63022, "endOffset": 63152, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "helpInformation", + "ranges": [{ "startOffset": 63343, "endOffset": 63669, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_getHelpContext", + "ranges": [{ "startOffset": 63704, "endOffset": 64125, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "outputHelp", + "ranges": [{ "startOffset": 64391, "endOffset": 65323, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "helpOption", + "ranges": [{ "startOffset": 65642, "endOffset": 66058, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "help", + "ranges": [{ "startOffset": 66305, "endOffset": 66690, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addHelpText", + "ranges": [ + { "startOffset": 67130, "endOffset": 67813, "count": 1 }, + { "startOffset": 67275, "endOffset": 67403, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 67468, "endOffset": 67790, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "outputHelpIfRequested", + "ranges": [ + { "startOffset": 68016, "endOffset": 68365, "count": 1 }, + { "startOffset": 68196, "endOffset": 68363, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 68113, "endOffset": 68175, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "incrementNodeInspectorPort", + "ranges": [{ "startOffset": 68594, "endOffset": 69743, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getCommandAndParents", + "ranges": [{ "startOffset": 69827, "endOffset": 70014, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "168", + "url": "node:child_process", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 28508, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1957, "endOffset": 1986, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fork", + "ranges": [{ "startOffset": 3492, "endOffset": 5149, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_forkChild", + "ranges": [{ "startOffset": 5151, "endOffset": 5640, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "normalizeExecArgs", + "ranges": [{ "startOffset": 5642, "endOffset": 6156, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "exec", + "ranges": [{ "startOffset": 6693, "endOffset": 6940, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "customPromiseExecFunction", + "ranges": [{ "startOffset": 6976, "endOffset": 7375, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 7027, "endOffset": 7371, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "normalizeExecFileArgs", + "ranges": [{ "startOffset": 7512, "endOffset": 8355, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "execFile", + "ranges": [{ "startOffset": 8968, "endOffset": 13657, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "copyProcessEnvToEnv", + "ranges": [{ "startOffset": 13801, "endOffset": 14001, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getPermissionModelFlagsToCopy", + "ranges": [{ "startOffset": 14036, "endOffset": 14254, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "copyPermissionModelFlagsToEnv", + "ranges": [{ "startOffset": 14256, "endOffset": 14737, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "normalizeSpawnArguments", + "ranges": [{ "startOffset": 14774, "endOffset": 20626, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "abortChildProcess", + "ranges": [{ "startOffset": 20628, "endOffset": 20884, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "spawn", + "ranges": [{ "startOffset": 21439, "endOffset": 22663, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "spawnSync", + "ranges": [{ "startOffset": 23423, "endOffset": 24912, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "checkExecSyncError", + "ranges": [{ "startOffset": 24915, "endOffset": 25301, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "execFileSync", + "ranges": [{ "startOffset": 25814, "endOffset": 26278, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "execSync", + "ranges": [{ "startOffset": 26776, "endOffset": 27152, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "validateArgumentNullCheck", + "ranges": [{ "startOffset": 27155, "endOffset": 27378, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "validateArgumentsNullCheck", + "ranges": [{ "startOffset": 27381, "endOffset": 27543, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "validateTimeout", + "ranges": [{ "startOffset": 27546, "endOffset": 27734, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "validateMaxBuffer", + "ranges": [{ "startOffset": 27737, "endOffset": 28010, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "sanitizeKillSignal", + "ranges": [{ "startOffset": 28013, "endOffset": 28376, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "169", + "url": "node:internal/child_process", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 31670, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "send", + "ranges": [{ "startOffset": 2500, "endOffset": 2559, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "got", + "ranges": [{ "startOffset": 2566, "endOffset": 2620, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "send", + "ranges": [{ "startOffset": 2682, "endOffset": 2749, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "got", + "ranges": [{ "startOffset": 2756, "endOffset": 2897, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "send", + "ranges": [{ "startOffset": 2927, "endOffset": 4481, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "postSend", + "ranges": [{ "startOffset": 4488, "endOffset": 5234, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "got", + "ranges": [{ "startOffset": 5241, "endOffset": 5698, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "send", + "ranges": [{ "startOffset": 5763, "endOffset": 5822, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "got", + "ranges": [{ "startOffset": 5829, "endOffset": 5883, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "send", + "ranges": [{ "startOffset": 5948, "endOffset": 6068, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "got", + "ranges": [{ "startOffset": 6075, "endOffset": 6234, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stdioStringToArray", + "ranges": [{ "startOffset": 6245, "endOffset": 6660, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ChildProcess", + "ranges": [{ "startOffset": 6662, "endOffset": 8155, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "flushStdio", + "ranges": [{ "startOffset": 8278, "endOffset": 8756, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createSocket", + "ranges": [{ "startOffset": 8759, "endOffset": 8849, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getHandleWrapType", + "ranges": [{ "startOffset": 8852, "endOffset": 9081, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "closePendingHandle", + "ranges": [{ "startOffset": 9083, "endOffset": 9196, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "spawn", + "ranges": [{ "startOffset": 9230, "endOffset": 12807, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "onErrorNT", + "ranges": [{ "startOffset": 12811, "endOffset": 12872, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "onSpawnNT", + "ranges": [{ "startOffset": 12875, "endOffset": 12925, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "kill", + "ranges": [{ "startOffset": 12958, "endOffset": 13636, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ChildProcess.", + "ranges": [{ "startOffset": 13679, "endOffset": 13736, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ref", + "ranges": [{ "startOffset": 13769, "endOffset": 13827, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "unref", + "ranges": [{ "startOffset": 13862, "endOffset": 13924, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 13966, "endOffset": 14023, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Control", + "ranges": [{ "startOffset": 14028, "endOffset": 14129, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "refCounted", + "ranges": [{ "startOffset": 14443, "endOffset": 14551, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "unrefCounted", + "ranges": [{ "startOffset": 14555, "endOffset": 14667, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ref", + "ranges": [{ "startOffset": 14671, "endOffset": 14742, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "unref", + "ranges": [{ "startOffset": 14746, "endOffset": 14821, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get fd", + "ranges": [{ "startOffset": 14825, "endOffset": 14896, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setupChannel", + "ranges": [{ "startOffset": 15046, "endOffset": 27105, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isInternal", + "ranges": [{ "startOffset": 27140, "endOffset": 27450, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getValidStdio", + "ranges": [{ "startOffset": 27484, "endOffset": 30378, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getSocketList", + "ranges": [{ "startOffset": 30381, "endOffset": 30697, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "maybeClose", + "ranges": [{ "startOffset": 30700, "endOffset": 30901, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "spawnSync", + "ranges": [{ "startOffset": 30903, "endOffset": 31544, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "170", + "url": "node:dgram", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 30111, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "lazyLoadCluster", + "ranges": [{ "startOffset": 3079, "endOffset": 3151, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lazyLoadBlockList", + "ranges": [{ "startOffset": 3175, "endOffset": 3272, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket", + "ranges": [{ "startOffset": 3274, "endOffset": 5564, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createSocket", + "ranges": [{ "startOffset": 5675, "endOffset": 5753, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "startListening", + "ranges": [{ "startOffset": 5756, "endOffset": 6199, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "replaceHandle", + "ranges": [{ "startOffset": 6201, "endOffset": 6766, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "bufferSize", + "ranges": [{ "startOffset": 6768, "endOffset": 7060, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "bindServerHandle", + "ranges": [{ "startOffset": 7128, "endOffset": 7624, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.bind", + "ranges": [{ "startOffset": 7650, "endOffset": 11195, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.connect", + "ranges": [{ "startOffset": 11225, "endOffset": 12028, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_connect", + "ranges": [{ "startOffset": 12032, "endOffset": 12378, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "doConnect", + "ranges": [{ "startOffset": 12381, "endOffset": 13128, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.disconnect", + "ranges": [{ "startOffset": 13161, "endOffset": 13472, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.sendto", + "ranges": [{ "startOffset": 13577, "endOffset": 14018, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "sliceBuffer", + "ranges": [{ "startOffset": 14022, "endOffset": 14782, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fixBufferList", + "ranges": [{ "startOffset": 14785, "endOffset": 15228, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "enqueue", + "ranges": [{ "startOffset": 15231, "endOffset": 15658, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "onListenSuccess", + "ranges": [{ "startOffset": 15661, "endOffset": 15799, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "onListenError", + "ranges": [{ "startOffset": 15802, "endOffset": 15926, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "clearQueue", + "ranges": [{ "startOffset": 15929, "endOffset": 16126, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.send", + "ranges": [{ "startOffset": 16697, "endOffset": 19591, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "doSend", + "ranges": [{ "startOffset": 19594, "endOffset": 20902, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "afterSend", + "ranges": [{ "startOffset": 20904, "endOffset": 21085, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.close", + "ranges": [{ "startOffset": 21112, "endOffset": 21680, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.", + "ranges": [{ "startOffset": 21722, "endOffset": 21854, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "socketCloseNT", + "ranges": [{ "startOffset": 21858, "endOffset": 21912, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.address", + "ranges": [{ "startOffset": 21942, "endOffset": 22136, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.remoteAddress", + "ranges": [{ "startOffset": 22172, "endOffset": 22486, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.setBroadcast", + "ranges": [{ "startOffset": 22522, "endOffset": 22674, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.setTTL", + "ranges": [{ "startOffset": 22704, "endOffset": 22882, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.setMulticastTTL", + "ranges": [{ "startOffset": 22921, "endOffset": 23117, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.setMulticastLoopback", + "ranges": [{ "startOffset": 23161, "endOffset": 23365, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.setMulticastInterface", + "ranges": [{ "startOffset": 23410, "endOffset": 23676, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.addMembership", + "ranges": [{ "startOffset": 23712, "endOffset": 24090, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.dropMembership", + "ranges": [{ "startOffset": 24128, "endOffset": 24509, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.addSourceSpecificMembership", + "ranges": [{ "startOffset": 24559, "endOffset": 25170, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.dropSourceSpecificMembership", + "ranges": [{ "startOffset": 25222, "endOffset": 25839, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "healthCheck", + "ranges": [{ "startOffset": 25843, "endOffset": 26006, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stopReceiving", + "ranges": [{ "startOffset": 26009, "endOffset": 26173, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "onMessage", + "ranges": [{ "startOffset": 26176, "endOffset": 26603, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "onError", + "ranges": [{ "startOffset": 26606, "endOffset": 26721, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.ref", + "ranges": [{ "startOffset": 26747, "endOffset": 26854, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.unref", + "ranges": [{ "startOffset": 26883, "endOffset": 26992, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.setRecvBufferSize", + "ranges": [{ "startOffset": 27033, "endOffset": 27090, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.setSendBufferSize", + "ranges": [{ "startOffset": 27131, "endOffset": 27188, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.getRecvBufferSize", + "ranges": [{ "startOffset": 27229, "endOffset": 27286, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.getSendBufferSize", + "ranges": [{ "startOffset": 27327, "endOffset": 27384, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.getSendQueueSize", + "ranges": [{ "startOffset": 27423, "endOffset": 27492, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Socket.getSendQueueCount", + "ranges": [{ "startOffset": 27532, "endOffset": 27602, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 27721, "endOffset": 27775, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 27848, "endOffset": 27904, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 28057, "endOffset": 28114, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 28190, "endOffset": 28249, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 28405, "endOffset": 28462, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 28538, "endOffset": 28597, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 28749, "endOffset": 28802, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 28874, "endOffset": 28929, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 29081, "endOffset": 29138, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 29214, "endOffset": 29273, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 29380, "endOffset": 29415, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 29524, "endOffset": 29561, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 29846, "endOffset": 29882, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 29886, "endOffset": 29927, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "171", + "url": "node:internal/dgram", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1837, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "lookup4", + "ranges": [{ "startOffset": 464, "endOffset": 565, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lookup6", + "ranges": [{ "startOffset": 568, "endOffset": 663, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "newHandle", + "ranges": [{ "startOffset": 665, "endOffset": 1309, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_createSocketHandle", + "ranges": [{ "startOffset": 1312, "endOffset": 1760, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "172", + "url": "node:internal/socket_list", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2709, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "SocketListSend", + "ranges": [{ "startOffset": 235, "endOffset": 376, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_request", + "ranges": [{ "startOffset": 380, "endOffset": 1035, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "close", + "ranges": [{ "startOffset": 1039, "endOffset": 1190, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getConnections", + "ranges": [{ "startOffset": 1194, "endOffset": 1430, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "SocketListReceive", + "ranges": [{ "startOffset": 1544, "endOffset": 2404, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "add", + "ranges": [{ "startOffset": 2408, "endOffset": 2649, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "173", + "url": "node:process", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 83, "count": 1 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "174", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/node_modules/commander/lib/help.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 14281, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Help", + "ranges": [{ "startOffset": 571, "endOffset": 722, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visibleCommands", + "ranges": [{ "startOffset": 913, "endOffset": 1653, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "compareOptions", + "ranges": [{ "startOffset": 1772, "endOffset": 2107, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visibleOptions", + "ranges": [{ "startOffset": 2292, "endOffset": 3169, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visibleGlobalOptions", + "ranges": [{ "startOffset": 3313, "endOffset": 3740, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visibleArguments", + "ranges": [{ "startOffset": 3877, "endOffset": 4366, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "subcommandTerm", + "ranges": [{ "startOffset": 4499, "endOffset": 4864, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "optionTerm", + "ranges": [{ "startOffset": 4994, "endOffset": 5043, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "argumentTerm", + "ranges": [{ "startOffset": 5181, "endOffset": 5237, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "longestSubcommandTermLength", + "ranges": [{ "startOffset": 5376, "endOffset": 5566, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "longestOptionTermLength", + "ranges": [{ "startOffset": 5704, "endOffset": 5883, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "longestGlobalOptionTermLength", + "ranges": [{ "startOffset": 6028, "endOffset": 6219, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "longestArgumentTermLength", + "ranges": [{ "startOffset": 6359, "endOffset": 6548, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "commandUsage", + "ranges": [{ "startOffset": 6695, "endOffset": 7078, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "commandDescription", + "ranges": [{ "startOffset": 7191, "endOffset": 7292, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "subcommandDescription", + "ranges": [{ "startOffset": 7491, "endOffset": 7612, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "optionDescription", + "ranges": [{ "startOffset": 7748, "endOffset": 8968, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "argumentDescription", + "ranges": [{ "startOffset": 9112, "endOffset": 9821, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "formatHelp", + "ranges": [{ "startOffset": 9956, "endOffset": 12163, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "padWidth", + "ranges": [{ "startOffset": 12319, "endOffset": 12589, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "wrap", + "ranges": [{ "startOffset": 12955, "endOffset": 14256, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "175", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/node_modules/commander/lib/option.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 8651, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Option", + "ranges": [ + { "startOffset": 241, "endOffset": 1396, "count": 27 }, + { "startOffset": 334, "endOffset": 339, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "default", + "ranges": [{ "startOffset": 1594, "endOffset": 1723, "count": 26 }], + "isBlockCoverage": true + }, + { + "functionName": "preset", + "ranges": [{ "startOffset": 2104, "endOffset": 2164, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "conflicts", + "ranges": [{ "startOffset": 2496, "endOffset": 2594, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "implies", + "ranges": [{ "startOffset": 3055, "endOffset": 3418, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "env", + "ranges": [{ "startOffset": 3724, "endOffset": 3780, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "argParser", + "ranges": [{ "startOffset": 3936, "endOffset": 3996, "count": 14 }], + "isBlockCoverage": true + }, + { + "functionName": "makeOptionMandatory", + "ranges": [{ "startOffset": 4153, "endOffset": 4247, "count": 26 }], + "isBlockCoverage": true + }, + { + "functionName": "hideHelp", + "ranges": [{ "startOffset": 4351, "endOffset": 4421, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_concatValue", + "ranges": [{ "startOffset": 4456, "endOffset": 4625, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "choices", + "ranges": [{ "startOffset": 4750, "endOffset": 5122, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "name", + "ranges": [ + { "startOffset": 5191, "endOffset": 5314, "count": 110 }, + { "startOffset": 5269, "endOffset": 5313, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "attributeName", + "ranges": [{ "startOffset": 5472, "endOffset": 5548, "count": 81 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 5688, "endOffset": 5753, "count": 65 }], + "isBlockCoverage": true + }, + { + "functionName": "isBoolean", + "ranges": [{ "startOffset": 5942, "endOffset": 6020, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "DualOptions", + "ranges": [{ "startOffset": 6499, "endOffset": 7002, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 6652, "endOffset": 6851, "count": 27 }, + { "startOffset": 6689, "endOffset": 6764, "count": 1 }, + { "startOffset": 6764, "endOffset": 6845, "count": 26 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6887, "endOffset": 6996, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "valueFromOption", + "ranges": [{ "startOffset": 7184, "endOffset": 7578, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "camelcase", + "ranges": [{ "startOffset": 7701, "endOffset": 7838, "count": 81 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 7758, "endOffset": 7834, "count": 33 }], + "isBlockCoverage": true + }, + { + "functionName": "splitOptionFlags", + "ranges": [ + { "startOffset": 7944, "endOffset": 8544, "count": 27 }, + { "startOffset": 8233, "endOffset": 8263, "count": 21 }, + { "startOffset": 8265, "endOffset": 8295, "count": 11 }, + { "startOffset": 8422, "endOffset": 8449, "count": 16 }, + { "startOffset": 8451, "endOffset": 8508, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "176", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/node_modules/commander/lib/suggestSimilar.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2763, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "editDistance", + "ranges": [{ "startOffset": 24, "endOffset": 1233, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "suggestSimilar", + "ranges": [{ "startOffset": 1383, "endOffset": 2720, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "177", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/lodash.merge/index.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 51155, "count": 1 }, + { "startOffset": 3263, "endOffset": 3270, "count": 0 }, + { "startOffset": 3271, "endOffset": 3296, "count": 0 }, + { "startOffset": 3297, "endOffset": 3304, "count": 0 }, + { "startOffset": 3378, "endOffset": 3389, "count": 0 }, + { "startOffset": 3390, "endOffset": 3418, "count": 0 }, + { "startOffset": 7827, "endOffset": 7838, "count": 0 }, + { "startOffset": 7946, "endOffset": 7957, "count": 0 }, + { "startOffset": 8194, "endOffset": 8205, "count": 0 }, + { "startOffset": 8501, "endOffset": 8512, "count": 0 }, + { "startOffset": 28453, "endOffset": 28463, "count": 0 }, + { "startOffset": 41292, "endOffset": 41434, "count": 0 }, + { "startOffset": 43594, "endOffset": 43606, "count": 0 }, + { "startOffset": 47661, "endOffset": 47679, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 3992, "endOffset": 4339, "count": 1 }, + { "startOffset": 4183, "endOffset": 4288, "count": 0 }, + { "startOffset": 4289, "endOffset": 4319, "count": 0 }, + { "startOffset": 4325, "endOffset": 4337, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "apply", + "ranges": [{ "startOffset": 4811, "endOffset": 5125, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "baseTimes", + "ranges": [{ "startOffset": 5440, "endOffset": 5601, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "baseUnary", + "ranges": [{ "startOffset": 5821, "endOffset": 5905, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5857, "endOffset": 5902, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getValue", + "ranges": [ + { "startOffset": 6118, "endOffset": 6203, "count": 3 }, + { "startOffset": 6175, "endOffset": 6186, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "overArg", + "ranges": [{ "startOffset": 6459, "endOffset": 6559, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6504, "endOffset": 6556, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 7078, "endOffset": 7230, "count": 1 }, + { "startOffset": 7128, "endOffset": 7146, "count": 0 }, + { "startOffset": 7147, "endOffset": 7174, "count": 0 }, + { "startOffset": 7196, "endOffset": 7222, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 8230, "endOffset": 8360, "count": 1 }, + { "startOffset": 8346, "endOffset": 8358, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8962, "endOffset": 9258, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "object", + "ranges": [{ "startOffset": 8977, "endOffset": 8997, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9007, "endOffset": 9255, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Hash", + "ranges": [{ "startOffset": 9387, "endOffset": 9600, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hashClear", + "ranges": [{ "startOffset": 9706, "endOffset": 9805, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hashDelete", + "ranges": [{ "startOffset": 10086, "endOffset": 10221, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hashGet", + "ranges": [{ "startOffset": 10404, "endOffset": 10635, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hashHas", + "ranges": [{ "startOffset": 10870, "endOffset": 11007, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hashSet", + "ranges": [{ "startOffset": 11236, "endOffset": 11427, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ListCache", + "ranges": [{ "startOffset": 11749, "endOffset": 11967, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "listCacheClear", + "ranges": [{ "startOffset": 12084, "endOffset": 12152, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "listCacheDelete", + "ranges": [{ "startOffset": 12400, "endOffset": 12699, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "listCacheGet", + "ranges": [{ "startOffset": 12893, "endOffset": 13040, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "listCacheHas", + "ranges": [{ "startOffset": 13286, "endOffset": 13364, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "listCacheSet", + "ranges": [{ "startOffset": 13610, "endOffset": 13838, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "MapCache", + "ranges": [{ "startOffset": 14238, "endOffset": 14455, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mapCacheClear", + "ranges": [{ "startOffset": 14564, "endOffset": 14714, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mapCacheDelete", + "ranges": [{ "startOffset": 14954, "endOffset": 15087, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mapCacheGet", + "ranges": [{ "startOffset": 15273, "endOffset": 15343, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mapCacheHas", + "ranges": [{ "startOffset": 15581, "endOffset": 15651, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mapCacheSet", + "ranges": [{ "startOffset": 15888, "endOffset": 16066, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Stack", + "ranges": [{ "startOffset": 16457, "endOffset": 16562, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stackClear", + "ranges": [{ "startOffset": 16670, "endOffset": 16745, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stackDelete", + "ranges": [{ "startOffset": 16984, "endOffset": 17120, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stackGet", + "ranges": [{ "startOffset": 17305, "endOffset": 17364, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stackHas", + "ranges": [{ "startOffset": 17601, "endOffset": 17660, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stackSet", + "ranges": [{ "startOffset": 17898, "endOffset": 18286, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "arrayLikeKeys", + "ranges": [{ "startOffset": 18763, "endOffset": 19810, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "assignMergeValue", + "ranges": [{ "startOffset": 20074, "endOffset": 20277, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "assignValue", + "ranges": [{ "startOffset": 20648, "endOffset": 20886, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "assocIndexOf", + "ranges": [{ "startOffset": 21147, "endOffset": 21315, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "baseAssignValue", + "ranges": [{ "startOffset": 21579, "endOffset": 21854, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "baseGetTag", + "ranges": [ + { "startOffset": 22565, "endOffset": 22792, "count": 4 }, + { "startOffset": 22615, "endOffset": 22677, "count": 0 }, + { "startOffset": 22743, "endOffset": 22761, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "baseIsArguments", + "ranges": [{ "startOffset": 22978, "endOffset": 23075, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "baseIsNative", + "ranges": [ + { "startOffset": 23296, "endOffset": 23498, "count": 3 }, + { "startOffset": 23370, "endOffset": 23393, "count": 0 }, + { "startOffset": 23441, "endOffset": 23455, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "baseIsTypedArray", + "ranges": [{ "startOffset": 23721, "endOffset": 23856, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "baseKeysIn", + "ranges": [{ "startOffset": 24070, "endOffset": 24386, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "baseMerge", + "ranges": [{ "startOffset": 24803, "endOffset": 25402, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "baseMergeDeep", + "ranges": [{ "startOffset": 26039, "endOffset": 27758, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "baseRest", + "ranges": [{ "startOffset": 28067, "endOffset": 28167, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "baseSetToString", + "ranges": [{ "startOffset": 28466, "endOffset": 28645, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "cloneBuffer", + "ranges": [{ "startOffset": 28850, "endOffset": 29091, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneArrayBuffer", + "ranges": [{ "startOffset": 29275, "endOffset": 29461, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneTypedArray", + "ranges": [{ "startOffset": 29682, "endOffset": 29898, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "copyArray", + "ranges": [{ "startOffset": 30119, "endOffset": 30324, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "copyObject", + "ranges": [{ "startOffset": 30694, "endOffset": 31240, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createAssigner", + "ranges": [{ "startOffset": 31423, "endOffset": 32158, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 31477, "endOffset": 32154, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createBaseFor", + "ranges": [{ "startOffset": 32377, "endOffset": 32774, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 32422, "endOffset": 32771, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getMapData", + "ranges": [{ "startOffset": 32948, "endOffset": 33103, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getNative", + "ranges": [ + { "startOffset": 33349, "endOffset": 33471, "count": 3 }, + { "startOffset": 33457, "endOffset": 33468, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "getRawTag", + "ranges": [{ "startOffset": 33672, "endOffset": 34080, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "initCloneObject", + "ranges": [{ "startOffset": 34236, "endOffset": 34396, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isIndex", + "ranges": [{ "startOffset": 34671, "endOffset": 34946, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isIterateeCall", + "ranges": [{ "startOffset": 35316, "endOffset": 35644, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isKeyable", + "ranges": [{ "startOffset": 35847, "endOffset": 36046, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isMasked", + "ranges": [ + { "startOffset": 36235, "endOffset": 36309, "count": 3 }, + { "startOffset": 36283, "endOffset": 36306, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "isPrototype", + "ranges": [{ "startOffset": 36503, "endOffset": 36678, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "nativeKeysIn", + "ranges": [{ "startOffset": 36972, "endOffset": 37137, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "objectToString", + "ranges": [{ "startOffset": 37322, "endOffset": 37399, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "overRest", + "ranges": [ + { "startOffset": 37754, "endOffset": 38318, "count": 1 }, + { "startOffset": 37858, "endOffset": 37865, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 37880, "endOffset": 38315, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "safeGet", + "ranges": [{ "startOffset": 38563, "endOffset": 38748, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "shortOut", + "ranges": [{ "startOffset": 39310, "endOffset": 39688, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 39385, "endOffset": 39685, "count": 1 }, + { "startOffset": 39528, "endOffset": 39606, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "toSource", + "ranges": [ + { "startOffset": 39849, "endOffset": 40037, "count": 3 }, + { "startOffset": 39951, "endOffset": 40018, "count": 0 }, + { "startOffset": 40022, "endOffset": 40036, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "eq", + "ranges": [{ "startOffset": 40720, "endOffset": 40815, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 41238, "endOffset": 41270, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "isArguments", + "ranges": [{ "startOffset": 41294, "endOffset": 41434, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isArrayLike", + "ranges": [{ "startOffset": 42513, "endOffset": 42616, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isArrayLikeObject", + "ranges": [{ "startOffset": 43142, "endOffset": 43231, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isFunction", + "ranges": [ + { "startOffset": 43947, "endOffset": 44292, "count": 3 }, + { "startOffset": 44000, "endOffset": 44023, "count": 0 }, + { "startOffset": 44235, "endOffset": 44251, "count": 0 }, + { "startOffset": 44252, "endOffset": 44270, "count": 0 }, + { "startOffset": 44271, "endOffset": 44289, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "isLength", + "ranges": [{ "startOffset": 44839, "endOffset": 44967, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isObject", + "ranges": [{ "startOffset": 45550, "endOffset": 45673, "count": 6 }], + "isBlockCoverage": true + }, + { + "functionName": "isObjectLike", + "ranges": [{ "startOffset": 46172, "endOffset": 46256, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "isPlainObject", + "ranges": [{ "startOffset": 46857, "endOffset": 47244, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toPlainObject", + "ranges": [{ "startOffset": 48238, "endOffset": 48314, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "keysIn", + "ranges": [{ "startOffset": 48822, "endOffset": 48930, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 49954, "endOffset": 50031, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "constant", + "ranges": [{ "startOffset": 50461, "endOffset": 50534, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 50497, "endOffset": 50531, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "identity", + "ranges": [{ "startOffset": 50833, "endOffset": 50877, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stubFalse", + "ranges": [{ "startOffset": 51089, "endOffset": 51129, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "178", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/gherkin/dist/src/index.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 2806, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 1097, "endOffset": 1178, "count": 9 }, + { "startOffset": 1149, "endOffset": 1154, "count": 8 }, + { "startOffset": 1155, "endOffset": 1175, "count": 1 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "179", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/gherkin/dist/src/generateMessages.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 3988, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 1097, "endOffset": 1178, "count": 6 }, + { "startOffset": 1155, "endOffset": 1175, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "generateMessages", + "ranges": [ + { "startOffset": 1799, "endOffset": 3943, "count": 1 }, + { "startOffset": 2094, "endOffset": 2272, "count": 0 }, + { "startOffset": 2281, "endOffset": 2358, "count": 0 }, + { "startOffset": 2560, "endOffset": 2586, "count": 0 }, + { "startOffset": 2588, "endOffset": 2626, "count": 0 }, + { "startOffset": 3149, "endOffset": 3242, "count": 3 }, + { "startOffset": 3263, "endOffset": 3922, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "180", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/gherkin/dist/src/Parser.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 154517, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 149, "endOffset": 230, "count": 2 }, + { "startOffset": 201, "endOffset": 206, "count": 1 }, + { "startOffset": 207, "endOffset": 227, "count": 1 } + ], + "isBlockCoverage": true + }, + { + "functionName": "Token", + "ranges": [{ "startOffset": 602, "endOffset": 725, "count": 21 }], + "isBlockCoverage": true + }, + { + "functionName": "getTokenValue", + "ranges": [{ "startOffset": 730, "endOffset": 816, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "detach", + "ranges": [{ "startOffset": 821, "endOffset": 894, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 936, "endOffset": 1810, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1879, "endOffset": 3804, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Parser", + "ranges": [{ "startOffset": 3874, "endOffset": 4029, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "parse", + "ranges": [ + { "startOffset": 4034, "endOffset": 5075, "count": 1 }, + { "startOffset": 4685, "endOffset": 4863, "count": 21 }, + { "startOffset": 4847, "endOffset": 4853, "count": 1 }, + { "startOffset": 4944, "endOffset": 5036, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 4128, "endOffset": 4369, "count": 21 }, + { "startOffset": 4234, "endOffset": 4240, "count": 1 }, + { "startOffset": 4257, "endOffset": 4305, "count": 20 } + ], + "isBlockCoverage": true + }, + { + "functionName": "addError", + "ranges": [{ "startOffset": 5080, "endOffset": 5373, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "startRule", + "ranges": [{ "startOffset": 5378, "endOffset": 5492, "count": 20 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5446, "endOffset": 5484, "count": 20 }], + "isBlockCoverage": true + }, + { + "functionName": "endRule", + "ranges": [{ "startOffset": 5497, "endOffset": 5589, "count": 20 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5553, "endOffset": 5581, "count": 20 }], + "isBlockCoverage": true + }, + { + "functionName": "build", + "ranges": [{ "startOffset": 5594, "endOffset": 5694, "count": 21 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5655, "endOffset": 5686, "count": 21 }], + "isBlockCoverage": true + }, + { + "functionName": "getResult", + "ranges": [{ "startOffset": 5699, "endOffset": 5759, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "handleAstError", + "ranges": [{ "startOffset": 5764, "endOffset": 5860, "count": 61 }], + "isBlockCoverage": true + }, + { + "functionName": "handleExternalError", + "ranges": [ + { "startOffset": 5865, "endOffset": 6633, "count": 159 }, + { "startOffset": 5965, "endOffset": 5981, "count": 0 }, + { "startOffset": 6043, "endOffset": 6632, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6154, "endOffset": 6194, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readToken", + "ranges": [ + { "startOffset": 6638, "endOffset": 6793, "count": 21 }, + { "startOffset": 6716, "endOffset": 6744, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "matchToken", + "ranges": [ + { "startOffset": 6798, "endOffset": 11035, "count": 21 }, + { "startOffset": 6871, "endOffset": 6938, "count": 1 }, + { "startOffset": 6951, "endOffset": 7018, "count": 0 }, + { "startOffset": 7031, "endOffset": 7098, "count": 0 }, + { "startOffset": 7111, "endOffset": 7178, "count": 2 }, + { "startOffset": 7191, "endOffset": 7258, "count": 0 }, + { "startOffset": 7271, "endOffset": 7338, "count": 0 }, + { "startOffset": 7351, "endOffset": 7418, "count": 0 }, + { "startOffset": 7431, "endOffset": 7498, "count": 0 }, + { "startOffset": 7511, "endOffset": 7578, "count": 0 }, + { "startOffset": 7591, "endOffset": 7658, "count": 0 }, + { "startOffset": 7671, "endOffset": 7740, "count": 0 }, + { "startOffset": 7753, "endOffset": 7822, "count": 0 }, + { "startOffset": 7835, "endOffset": 7904, "count": 3 }, + { "startOffset": 7917, "endOffset": 7986, "count": 0 }, + { "startOffset": 7999, "endOffset": 8068, "count": 0 }, + { "startOffset": 8081, "endOffset": 8150, "count": 11 }, + { "startOffset": 8163, "endOffset": 8232, "count": 4 }, + { "startOffset": 8245, "endOffset": 8314, "count": 0 }, + { "startOffset": 8327, "endOffset": 8396, "count": 0 }, + { "startOffset": 8409, "endOffset": 8478, "count": 0 }, + { "startOffset": 8491, "endOffset": 8560, "count": 0 }, + { "startOffset": 8573, "endOffset": 8642, "count": 0 }, + { "startOffset": 8655, "endOffset": 8724, "count": 0 }, + { "startOffset": 8737, "endOffset": 8806, "count": 0 }, + { "startOffset": 8819, "endOffset": 8888, "count": 0 }, + { "startOffset": 8901, "endOffset": 8970, "count": 0 }, + { "startOffset": 8983, "endOffset": 9052, "count": 0 }, + { "startOffset": 9065, "endOffset": 9134, "count": 0 }, + { "startOffset": 9147, "endOffset": 9216, "count": 0 }, + { "startOffset": 9229, "endOffset": 9298, "count": 0 }, + { "startOffset": 9311, "endOffset": 9380, "count": 0 }, + { "startOffset": 9393, "endOffset": 9462, "count": 0 }, + { "startOffset": 9475, "endOffset": 9544, "count": 0 }, + { "startOffset": 9557, "endOffset": 9626, "count": 0 }, + { "startOffset": 9639, "endOffset": 9708, "count": 0 }, + { "startOffset": 9721, "endOffset": 9790, "count": 0 }, + { "startOffset": 9803, "endOffset": 9872, "count": 0 }, + { "startOffset": 9885, "endOffset": 9954, "count": 0 }, + { "startOffset": 9967, "endOffset": 10036, "count": 0 }, + { "startOffset": 10049, "endOffset": 10118, "count": 0 }, + { "startOffset": 10131, "endOffset": 10200, "count": 0 }, + { "startOffset": 10213, "endOffset": 10282, "count": 0 }, + { "startOffset": 10295, "endOffset": 10364, "count": 0 }, + { "startOffset": 10377, "endOffset": 10446, "count": 0 }, + { "startOffset": 10459, "endOffset": 10528, "count": 0 }, + { "startOffset": 10541, "endOffset": 10610, "count": 0 }, + { "startOffset": 10623, "endOffset": 10692, "count": 0 }, + { "startOffset": 10705, "endOffset": 10774, "count": 0 }, + { "startOffset": 10787, "endOffset": 10856, "count": 0 }, + { "startOffset": 10869, "endOffset": 10938, "count": 0 }, + { "startOffset": 10951, "endOffset": 11019, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "matchTokenAt_0", + "ranges": [ + { "startOffset": 11053, "endOffset": 12675, "count": 1 }, + { "startOffset": 11130, "endOffset": 11204, "count": 0 }, + { "startOffset": 11254, "endOffset": 11443, "count": 0 }, + { "startOffset": 11492, "endOffset": 11733, "count": 0 }, + { "startOffset": 11975, "endOffset": 12464, "count": 0 }, + { "startOffset": 12465, "endOffset": 12551, "count": 0 }, + { "startOffset": 12600, "endOffset": 12674, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "matchTokenAt_1", + "ranges": [{ "startOffset": 12743, "endOffset": 13754, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "matchTokenAt_2", + "ranges": [{ "startOffset": 13828, "endOffset": 14822, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "matchTokenAt_3", + "ranges": [ + { "startOffset": 14893, "endOffset": 17481, "count": 2 }, + { "startOffset": 14970, "endOffset": 15114, "count": 0 }, + { "startOffset": 15161, "endOffset": 15283, "count": 1 }, + { "startOffset": 15283, "endOffset": 15356, "count": 0 }, + { "startOffset": 15356, "endOffset": 15412, "count": 1 }, + { "startOffset": 15412, "endOffset": 15578, "count": 0 }, + { "startOffset": 15578, "endOffset": 15627, "count": 1 }, + { "startOffset": 15627, "endOffset": 15940, "count": 0 }, + { "startOffset": 15940, "endOffset": 15989, "count": 1 }, + { "startOffset": 15989, "endOffset": 16260, "count": 0 }, + { "startOffset": 16260, "endOffset": 16545, "count": 1 }, + { "startOffset": 16545, "endOffset": 17270, "count": 0 }, + { "startOffset": 17271, "endOffset": 17357, "count": 0 }, + { "startOffset": 17406, "endOffset": 17480, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "matchTokenAt_4", + "ranges": [{ "startOffset": 17580, "endOffset": 20228, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "matchTokenAt_5", + "ranges": [{ "startOffset": 20315, "endOffset": 22714, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "matchTokenAt_6", + "ranges": [{ "startOffset": 22785, "endOffset": 25320, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "matchTokenAt_7", + "ranges": [{ "startOffset": 25416, "endOffset": 28011, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "matchTokenAt_8", + "ranges": [{ "startOffset": 28095, "endOffset": 30441, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "matchTokenAt_9", + "ranges": [{ "startOffset": 30513, "endOffset": 33481, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "matchTokenAt_10", + "ranges": [{ "startOffset": 33584, "endOffset": 36499, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "matchTokenAt_11", + "ranges": [{ "startOffset": 36578, "endOffset": 37636, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "matchTokenAt_12", + "ranges": [ + { "startOffset": 37724, "endOffset": 41034, "count": 3 }, + { "startOffset": 37802, "endOffset": 37981, "count": 0 }, + { "startOffset": 38028, "endOffset": 38102, "count": 0 }, + { "startOffset": 38151, "endOffset": 38225, "count": 0 }, + { "startOffset": 38401, "endOffset": 40822, "count": 0 }, + { "startOffset": 40823, "endOffset": 40909, "count": 0 }, + { "startOffset": 40958, "endOffset": 41033, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "matchTokenAt_13", + "ranges": [{ "startOffset": 41149, "endOffset": 44592, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "matchTokenAt_14", + "ranges": [{ "startOffset": 44695, "endOffset": 47815, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "matchTokenAt_15", + "ranges": [ + { "startOffset": 47906, "endOffset": 51722, "count": 11 }, + { "startOffset": 47984, "endOffset": 48198, "count": 1 }, + { "startOffset": 48198, "endOffset": 48248, "count": 10 }, + { "startOffset": 48248, "endOffset": 48379, "count": 2 }, + { "startOffset": 48379, "endOffset": 48439, "count": 8 }, + { "startOffset": 48439, "endOffset": 48570, "count": 0 }, + { "startOffset": 48570, "endOffset": 48620, "count": 8 }, + { "startOffset": 48620, "endOffset": 48830, "count": 4 }, + { "startOffset": 48830, "endOffset": 49143, "count": 0 }, + { "startOffset": 49143, "endOffset": 49192, "count": 4 }, + { "startOffset": 49192, "endOffset": 49583, "count": 0 }, + { "startOffset": 49583, "endOffset": 49632, "count": 4 }, + { "startOffset": 49632, "endOffset": 49973, "count": 0 }, + { "startOffset": 49973, "endOffset": 50027, "count": 4 }, + { "startOffset": 50027, "endOffset": 50258, "count": 0 }, + { "startOffset": 50258, "endOffset": 50312, "count": 4 }, + { "startOffset": 50312, "endOffset": 50663, "count": 2 }, + { "startOffset": 50663, "endOffset": 50952, "count": 0 }, + { "startOffset": 50952, "endOffset": 51001, "count": 2 }, + { "startOffset": 51001, "endOffset": 51075, "count": 0 }, + { "startOffset": 51075, "endOffset": 51196, "count": 2 }, + { "startOffset": 51196, "endOffset": 51510, "count": 0 }, + { "startOffset": 51511, "endOffset": 51597, "count": 0 }, + { "startOffset": 51646, "endOffset": 51721, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "matchTokenAt_16", + "ranges": [ + { "startOffset": 51844, "endOffset": 55677, "count": 4 }, + { "startOffset": 51922, "endOffset": 52171, "count": 0 }, + { "startOffset": 52221, "endOffset": 52541, "count": 2 }, + { "startOffset": 52541, "endOffset": 55465, "count": 0 }, + { "startOffset": 55466, "endOffset": 55552, "count": 0 }, + { "startOffset": 55601, "endOffset": 55676, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "matchTokenAt_17", + "ranges": [{ "startOffset": 55788, "endOffset": 56846, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "matchTokenAt_18", + "ranges": [{ "startOffset": 56966, "endOffset": 60791, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "matchTokenAt_19", + "ranges": [{ "startOffset": 60938, "endOffset": 64896, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "matchTokenAt_20", + "ranges": [{ "startOffset": 65031, "endOffset": 68666, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "matchTokenAt_21", + "ranges": [{ "startOffset": 68798, "endOffset": 72625, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "matchTokenAt_22", + "ranges": [{ "startOffset": 72703, "endOffset": 73697, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "matchTokenAt_23", + "ranges": [{ "startOffset": 73769, "endOffset": 76468, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "matchTokenAt_24", + "ranges": [{ "startOffset": 76571, "endOffset": 79329, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "matchTokenAt_25", + "ranges": [{ "startOffset": 79420, "endOffset": 81929, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "matchTokenAt_26", + "ranges": [{ "startOffset": 82007, "endOffset": 84653, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "matchTokenAt_27", + "ranges": [{ "startOffset": 84756, "endOffset": 87461, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "matchTokenAt_28", + "ranges": [{ "startOffset": 87552, "endOffset": 90008, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "matchTokenAt_29", + "ranges": [{ "startOffset": 90087, "endOffset": 93165, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "matchTokenAt_30", + "ranges": [{ "startOffset": 93275, "endOffset": 96296, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "matchTokenAt_31", + "ranges": [{ "startOffset": 96382, "endOffset": 97440, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "matchTokenAt_32", + "ranges": [{ "startOffset": 97535, "endOffset": 100950, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "matchTokenAt_33", + "ranges": [{ "startOffset": 101072, "endOffset": 104620, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "matchTokenAt_34", + "ranges": [{ "startOffset": 104730, "endOffset": 107955, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "matchTokenAt_35", + "ranges": [{ "startOffset": 108053, "endOffset": 111974, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "matchTokenAt_36", + "ranges": [{ "startOffset": 112103, "endOffset": 116041, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "matchTokenAt_37", + "ranges": [{ "startOffset": 116159, "endOffset": 117217, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "matchTokenAt_38", + "ranges": [{ "startOffset": 117344, "endOffset": 121274, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "matchTokenAt_39", + "ranges": [{ "startOffset": 121428, "endOffset": 125491, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "matchTokenAt_40", + "ranges": [{ "startOffset": 125633, "endOffset": 129373, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "matchTokenAt_41", + "ranges": [{ "startOffset": 129512, "endOffset": 133444, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "matchTokenAt_43", + "ranges": [{ "startOffset": 133583, "endOffset": 134292, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "matchTokenAt_44", + "ranges": [{ "startOffset": 134431, "endOffset": 138232, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "matchTokenAt_45", + "ranges": [{ "startOffset": 138352, "endOffset": 139061, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "matchTokenAt_46", + "ranges": [{ "startOffset": 139181, "endOffset": 142065, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "matchTokenAt_47", + "ranges": [{ "startOffset": 142197, "endOffset": 142906, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "matchTokenAt_48", + "ranges": [{ "startOffset": 143038, "endOffset": 146734, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "matchTokenAt_49", + "ranges": [{ "startOffset": 146847, "endOffset": 147556, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "matchTokenAt_50", + "ranges": [{ "startOffset": 147669, "endOffset": 150447, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "match_EOF", + "ranges": [{ "startOffset": 150452, "endOffset": 150584, "count": 21 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 150536, "endOffset": 150576, "count": 21 }], + "isBlockCoverage": true + }, + { + "functionName": "match_Empty", + "ranges": [ + { "startOffset": 150589, "endOffset": 150776, "count": 7 }, + { "startOffset": 150656, "endOffset": 150669, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 150726, "endOffset": 150768, "count": 7 }], + "isBlockCoverage": true + }, + { + "functionName": "match_Comment", + "ranges": [ + { "startOffset": 150781, "endOffset": 150972, "count": 6 }, + { "startOffset": 150850, "endOffset": 150863, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 150920, "endOffset": 150964, "count": 6 }], + "isBlockCoverage": true + }, + { + "functionName": "match_TagLine", + "ranges": [ + { "startOffset": 150977, "endOffset": 151168, "count": 15 }, + { "startOffset": 151046, "endOffset": 151059, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 151116, "endOffset": 151160, "count": 15 }], + "isBlockCoverage": true + }, + { + "functionName": "match_FeatureLine", + "ranges": [ + { "startOffset": 151173, "endOffset": 151372, "count": 1 }, + { "startOffset": 151246, "endOffset": 151259, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 151316, "endOffset": 151364, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "match_RuleLine", + "ranges": [ + { "startOffset": 151377, "endOffset": 151570, "count": 2 }, + { "startOffset": 151447, "endOffset": 151460, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 151517, "endOffset": 151562, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "match_BackgroundLine", + "ranges": [ + { "startOffset": 151575, "endOffset": 151780, "count": 1 }, + { "startOffset": 151651, "endOffset": 151664, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 151721, "endOffset": 151772, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "match_ScenarioLine", + "ranges": [ + { "startOffset": 151785, "endOffset": 151986, "count": 5 }, + { "startOffset": 151859, "endOffset": 151872, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 151929, "endOffset": 151978, "count": 5 }], + "isBlockCoverage": true + }, + { + "functionName": "match_ExamplesLine", + "ranges": [ + { "startOffset": 151991, "endOffset": 152192, "count": 4 }, + { "startOffset": 152065, "endOffset": 152078, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 152135, "endOffset": 152184, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "match_StepLine", + "ranges": [ + { "startOffset": 152197, "endOffset": 152390, "count": 13 }, + { "startOffset": 152267, "endOffset": 152280, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 152337, "endOffset": 152382, "count": 13 }], + "isBlockCoverage": true + }, + { + "functionName": "match_DocStringSeparator", + "ranges": [ + { "startOffset": 152395, "endOffset": 152608, "count": 8 }, + { "startOffset": 152475, "endOffset": 152488, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 152545, "endOffset": 152600, "count": 8 }], + "isBlockCoverage": true + }, + { + "functionName": "match_TableRow", + "ranges": [ + { "startOffset": 152613, "endOffset": 152806, "count": 14 }, + { "startOffset": 152683, "endOffset": 152696, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 152753, "endOffset": 152798, "count": 14 }], + "isBlockCoverage": true + }, + { + "functionName": "match_Language", + "ranges": [ + { "startOffset": 152811, "endOffset": 153004, "count": 1 }, + { "startOffset": 152881, "endOffset": 152894, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 152951, "endOffset": 152996, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "match_Other", + "ranges": [{ "startOffset": 153009, "endOffset": 153196, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lookahead_0", + "ranges": [{ "startOffset": 153201, "endOffset": 153825, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lookahead_1", + "ranges": [{ "startOffset": 153830, "endOffset": 154454, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "181", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/gherkin/dist/src/Errors.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2138, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "GherkinException", + "ranges": [{ "startOffset": 280, "endOffset": 665, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_create", + "ranges": [{ "startOffset": 677, "endOffset": 984, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 1092, "endOffset": 1255, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 1370, "endOffset": 1566, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 1694, "endOffset": 1775, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 1897, "endOffset": 2042, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "182", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/gherkin/dist/src/TokenExceptions.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1275, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 269, "endOffset": 540, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 680, "endOffset": 910, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "tokenLocation", + "ranges": [{ "startOffset": 970, "endOffset": 1231, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "183", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/gherkin/dist/src/TokenScanner.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1045, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "TokenScanner", + "ranges": [{ "startOffset": 504, "endOffset": 779, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "read", + "ranges": [{ "startOffset": 784, "endOffset": 970, "count": 21 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "184", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/gherkin/dist/src/GherkinLine.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2995, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 70, "endOffset": 151, "count": 1 }, + { "startOffset": 128, "endOffset": 148, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "GherkinLine", + "ranges": [{ "startOffset": 307, "endOffset": 662, "count": 20 }], + "isBlockCoverage": true + }, + { + "functionName": "startsWith", + "ranges": [{ "startOffset": 667, "endOffset": 752, "count": 165 }], + "isBlockCoverage": true + }, + { + "functionName": "startsWithTitleKeyword", + "ranges": [{ "startOffset": 757, "endOffset": 893, "count": 26 }], + "isBlockCoverage": true + }, + { + "functionName": "match", + "ranges": [{ "startOffset": 898, "endOffset": 970, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getLineText", + "ranges": [{ "startOffset": 975, "endOffset": 1212, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getRestTrimmed", + "ranges": [{ "startOffset": 1217, "endOffset": 1309, "count": 13 }], + "isBlockCoverage": true + }, + { + "functionName": "getTableCells", + "ranges": [ + { "startOffset": 1314, "endOffset": 2892, "count": 4 }, + { "startOffset": 1514, "endOffset": 2864, "count": 92 }, + { "startOffset": 1613, "endOffset": 2390, "count": 12 }, + { "startOffset": 1646, "endOffset": 1778, "count": 4 }, + { "startOffset": 1778, "endOffset": 2313, "count": 8 }, + { "startOffset": 2390, "endOffset": 2854, "count": 80 }, + { "startOffset": 2426, "endOffset": 2792, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "185", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/gherkin/dist/src/countSymbols.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 347, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "countSymbols", + "ranges": [{ "startOffset": 224, "endOffset": 306, "count": 40 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "186", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/gherkin/dist/src/GherkinClassicTokenMatcher.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 9752, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 1097, "endOffset": 1178, "count": 2 }, + { "startOffset": 1149, "endOffset": 1154, "count": 1 }, + { "startOffset": 1155, "endOffset": 1175, "count": 1 } + ], + "isBlockCoverage": true + }, + { + "functionName": "addKeywordTypeMappings", + "ranges": [ + { "startOffset": 1660, "endOffset": 1849, "count": 4 }, + { "startOffset": 1750, "endOffset": 1847, "count": 10 }, + { "startOffset": 1775, "endOffset": 1809, "count": 6 } + ], + "isBlockCoverage": true + }, + { + "functionName": "GherkinClassicTokenMatcher", + "ranges": [{ "startOffset": 1889, "endOffset": 2011, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "changeDialect", + "ranges": [ + { "startOffset": 2016, "endOffset": 2359, "count": 1 }, + { "startOffset": 2140, "endOffset": 2236, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "reset", + "ranges": [ + { "startOffset": 2364, "endOffset": 2585, "count": 2 }, + { "startOffset": 2432, "endOffset": 2500, "count": 1 } + ], + "isBlockCoverage": true + }, + { + "functionName": "initializeKeywordTypes", + "ranges": [{ "startOffset": 2590, "endOffset": 3124, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "match_TagLine", + "ranges": [ + { "startOffset": 3129, "endOffset": 3375, "count": 15 }, + { "startOffset": 3192, "endOffset": 3347, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "match_FeatureLine", + "ranges": [{ "startOffset": 3380, "endOffset": 3509, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "match_ScenarioLine", + "ranges": [ + { "startOffset": 3514, "endOffset": 3753, "count": 5 }, + { "startOffset": 3641, "endOffset": 3745, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "match_BackgroundLine", + "ranges": [{ "startOffset": 3758, "endOffset": 3896, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "match_ExamplesLine", + "ranges": [{ "startOffset": 3901, "endOffset": 4033, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "match_RuleLine", + "ranges": [{ "startOffset": 4038, "endOffset": 4158, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "match_TableRow", + "ranges": [ + { "startOffset": 4163, "endOffset": 4441, "count": 14 }, + { "startOffset": 4227, "endOffset": 4413, "count": 4 }, + { "startOffset": 4413, "endOffset": 4440, "count": 10 } + ], + "isBlockCoverage": true + }, + { + "functionName": "match_Empty", + "ranges": [ + { "startOffset": 4446, "endOffset": 4645, "count": 7 }, + { "startOffset": 4499, "endOffset": 4617, "count": 3 }, + { "startOffset": 4617, "endOffset": 4644, "count": 4 } + ], + "isBlockCoverage": true + }, + { + "functionName": "match_Comment", + "ranges": [ + { "startOffset": 4650, "endOffset": 4962, "count": 6 }, + { "startOffset": 4713, "endOffset": 4934, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "match_Language", + "ranges": [ + { "startOffset": 4967, "endOffset": 5343, "count": 1 }, + { "startOffset": 5084, "endOffset": 5315, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "match_DocStringSeparator", + "ranges": [ + { "startOffset": 5348, "endOffset": 5719, "count": 8 }, + { "startOffset": 5610, "endOffset": 5712, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "_match_DocStringSeparator", + "ranges": [ + { "startOffset": 5724, "endOffset": 6381, "count": 16 }, + { "startOffset": 5824, "endOffset": 6353, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "match_EOF", + "ranges": [ + { "startOffset": 6386, "endOffset": 6559, "count": 21 }, + { "startOffset": 6430, "endOffset": 6531, "count": 1 }, + { "startOffset": 6531, "endOffset": 6558, "count": 20 } + ], + "isBlockCoverage": true + }, + { + "functionName": "match_StepLine", + "ranges": [ + { "startOffset": 6564, "endOffset": 7417, "count": 13 }, + { "startOffset": 6851, "endOffset": 7389, "count": 88 }, + { "startOffset": 6901, "endOffset": 7379, "count": 9 }, + { "startOffset": 7140, "endOffset": 7227, "count": 0 }, + { "startOffset": 7389, "endOffset": 7416, "count": 4 } + ], + "isBlockCoverage": true + }, + { + "functionName": "match_Other", + "ranges": [{ "startOffset": 7422, "endOffset": 7696, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getTags", + "ranges": [{ "startOffset": 7701, "endOffset": 8431, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "matchTitleLine", + "ranges": [ + { "startOffset": 8436, "endOffset": 8823, "count": 15 }, + { "startOffset": 8521, "endOffset": 8795, "count": 26 }, + { "startOffset": 8583, "endOffset": 8785, "count": 4 }, + { "startOffset": 8795, "endOffset": 8822, "count": 11 } + ], + "isBlockCoverage": true + }, + { + "functionName": "setTokenMatched", + "ranges": [ + { "startOffset": 8828, "endOffset": 9356, "count": 21 }, + { "startOffset": 9141, "endOffset": 9149, "count": 3 }, + { "startOffset": 9150, "endOffset": 9194, "count": 18 }, + { "startOffset": 9171, "endOffset": 9174, "count": 1 }, + { "startOffset": 9175, "endOffset": 9194, "count": 17 }, + { "startOffset": 9231, "endOffset": 9236, "count": 17 } + ], + "isBlockCoverage": true + }, + { + "functionName": "unescapeDocString", + "ranges": [{ "startOffset": 9361, "endOffset": 9649, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "187", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/gherkin/node_modules/@cucumber/messages/dist/cjs/src/index.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 2308, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 88, "endOffset": 405, "count": 61 }, + { "startOffset": 232, "endOffset": 247, "count": 0 }, + { "startOffset": 264, "endOffset": 284, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 327, "endOffset": 354, "count": 28 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 2 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__exportStar", + "ranges": [ + { "startOffset": 1091, "endOffset": 1242, "count": 1 }, + { "startOffset": 1135, "endOffset": 1240, "count": 61 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1770, "endOffset": 1826, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1987, "endOffset": 2061, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2177, "endOffset": 2221, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "188", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/gherkin/node_modules/@cucumber/messages/dist/cjs/src/TimeConversion.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1847, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "millisecondsSinceEpochToTimestamp", + "ranges": [{ "startOffset": 494, "endOffset": 618, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "millisecondsToDuration", + "ranges": [{ "startOffset": 619, "endOffset": 732, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "timestampToMillisecondsSinceEpoch", + "ranges": [{ "startOffset": 733, "endOffset": 889, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "durationToMilliseconds", + "ranges": [{ "startOffset": 890, "endOffset": 1032, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addDurations", + "ranges": [{ "startOffset": 1033, "endOffset": 1349, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toSecondsAndNanos", + "ranges": [{ "startOffset": 1350, "endOffset": 1611, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toMillis", + "ranges": [{ "startOffset": 1612, "endOffset": 1804, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "189", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/gherkin/node_modules/@cucumber/messages/dist/cjs/src/IdGenerator.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 379, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "uuid", + "ranges": [{ "startOffset": 165, "endOffset": 237, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "incrementing", + "ranges": [{ "startOffset": 238, "endOffset": 339, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "190", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/uuid/dist/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2607, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 147, "endOffset": 189, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 261, "endOffset": 303, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 377, "endOffset": 421, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 499, "endOffset": 547, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 618, "endOffset": 658, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 733, "endOffset": 777, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 848, "endOffset": 889, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 960, "endOffset": 1001, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1072, "endOffset": 1113, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1184, "endOffset": 1225, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1300, "endOffset": 1344, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1415, "endOffset": 1456, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1533, "endOffset": 1580, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1656, "endOffset": 1702, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_interopRequireDefault", + "ranges": [ + { "startOffset": 2522, "endOffset": 2607, "count": 14 }, + { "startOffset": 2588, "endOffset": 2604, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "191", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/uuid/dist/max.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 178, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "192", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/uuid/dist/nil.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 178, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "193", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/uuid/dist/parse.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1365, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "_interopRequireDefault", + "ranges": [ + { "startOffset": 172, "endOffset": 257, "count": 1 }, + { "startOffset": 238, "endOffset": 254, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "parse", + "ranges": [{ "startOffset": 258, "endOffset": 1325, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "194", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/uuid/dist/validate.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 386, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "_interopRequireDefault", + "ranges": [ + { "startOffset": 166, "endOffset": 251, "count": 1 }, + { "startOffset": 232, "endOffset": 248, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "validate", + "ranges": [{ "startOffset": 252, "endOffset": 343, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "195", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/uuid/dist/regex.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 294, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "196", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/uuid/dist/stringify.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 1920, "count": 1 }, + { "startOffset": 471, "endOffset": 527, "count": 256 } + ], + "isBlockCoverage": true + }, + { + "functionName": "_interopRequireDefault", + "ranges": [ + { "startOffset": 215, "endOffset": 300, "count": 1 }, + { "startOffset": 281, "endOffset": 297, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "unsafeStringify", + "ranges": [{ "startOffset": 528, "endOffset": 1404, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stringify", + "ranges": [{ "startOffset": 1405, "endOffset": 1876, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "197", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/uuid/dist/v1.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3931, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "_interopRequireDefault", + "ranges": [ + { "startOffset": 206, "endOffset": 291, "count": 1 }, + { "startOffset": 272, "endOffset": 288, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "v1", + "ranges": [{ "startOffset": 588, "endOffset": 3894, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "198", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/uuid/dist/rng.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 545, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "_interopRequireDefault", + "ranges": [ + { "startOffset": 169, "endOffset": 254, "count": 1 }, + { "startOffset": 231, "endOffset": 234, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "rng", + "ranges": [{ "startOffset": 364, "endOffset": 545, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "199", + "url": "node:crypto", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 8687, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "lazyWebCrypto", + "ranges": [{ "startOffset": 3215, "endOffset": 3317, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "lazyOwnsProcessState", + "ranges": [{ "startOffset": 3341, "endOffset": 3471, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createHash", + "ranges": [{ "startOffset": 3613, "endOffset": 3695, "count": 293 }], + "isBlockCoverage": true + }, + { + "functionName": "createCipheriv", + "ranges": [{ "startOffset": 3697, "endOffset": 3799, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createDecipheriv", + "ranges": [{ "startOffset": 3801, "endOffset": 3907, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createDiffieHellman", + "ranges": [{ "startOffset": 3909, "endOffset": 4065, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createDiffieHellmanGroup", + "ranges": [{ "startOffset": 4067, "endOffset": 4149, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createECDH", + "ranges": [{ "startOffset": 4151, "endOffset": 4207, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createHmac", + "ranges": [{ "startOffset": 4209, "endOffset": 4291, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createSign", + "ranges": [{ "startOffset": 4293, "endOffset": 4375, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createVerify", + "ranges": [{ "startOffset": 4377, "endOffset": 4463, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getFips", + "ranges": [{ "startOffset": 5686, "endOffset": 5771, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setFips", + "ranges": [{ "startOffset": 5773, "endOffset": 6057, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getRandomValues", + "ranges": [{ "startOffset": 6059, "endOffset": 6150, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 6228, "endOffset": 6482, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 6486, "endOffset": 6675, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getRandomBytesAlias", + "ranges": [{ "startOffset": 6724, "endOffset": 7557, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 6822, "endOffset": 7312, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 7318, "endOffset": 7549, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 8060, "endOffset": 8100, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 8212, "endOffset": 8259, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 8385, "endOffset": 8406, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "200", + "url": "node:internal/crypto/random", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 16357, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "assertOffset", + "ranges": [ + { "startOffset": 1310, "endOffset": 1676, "count": 1 }, + { "startOffset": 1545, "endOffset": 1627, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "assertSize", + "ranges": [{ "startOffset": 1678, "endOffset": 2139, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "randomBytes", + "ranges": [{ "startOffset": 2141, "endOffset": 2730, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "randomFillSync", + "ranges": [ + { "startOffset": 2732, "endOffset": 3400, "count": 1 }, + { "startOffset": 2838, "endOffset": 2946, "count": 0 }, + { "startOffset": 2992, "endOffset": 2996, "count": 0 }, + { "startOffset": 3129, "endOffset": 3206, "count": 0 }, + { "startOffset": 3230, "endOffset": 3241, "count": 0 }, + { "startOffset": 3373, "endOffset": 3383, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "randomFill", + "ranges": [{ "startOffset": 3402, "endOffset": 4448, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "randomInt", + "ranges": [{ "startOffset": 4998, "endOffset": 7238, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "asyncRefillRandomIntCache", + "ranges": [{ "startOffset": 7240, "endOffset": 8116, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "onJobDone", + "ranges": [{ "startOffset": 8119, "endOffset": 8281, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getRandomValues", + "ranges": [{ "startOffset": 8513, "endOffset": 9159, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getHexBytes", + "ranges": [ + { "startOffset": 9524, "endOffset": 9823, "count": 69 }, + { "startOffset": 9584, "endOffset": 9797, "count": 1 }, + { "startOffset": 9673, "endOffset": 9793, "count": 256 } + ], + "isBlockCoverage": true + }, + { + "functionName": "serializeUUID", + "ranges": [{ "startOffset": 9825, "endOffset": 10551, "count": 69 }], + "isBlockCoverage": true + }, + { + "functionName": "getBufferedUUID", + "ranges": [ + { "startOffset": 10553, "endOffset": 10856, "count": 69 }, + { "startOffset": 10662, "endOffset": 10710, "count": 0 }, + { "startOffset": 10735, "endOffset": 10760, "count": 1 } + ], + "isBlockCoverage": true + }, + { + "functionName": "getUnbufferedUUID", + "ranges": [{ "startOffset": 10858, "endOffset": 11096, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "randomUUID", + "ranges": [ + { "startOffset": 11098, "endOffset": 11418, "count": 69 }, + { "startOffset": 11162, "endOffset": 11197, "count": 0 }, + { "startOffset": 11374, "endOffset": 11395, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "createRandomPrimeJob", + "ranges": [{ "startOffset": 11420, "endOffset": 12653, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "generatePrime", + "ranges": [{ "startOffset": 12655, "endOffset": 13111, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "generatePrimeSync", + "ranges": [{ "startOffset": 13113, "endOffset": 13371, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "numberToHexCharCode", + "ranges": [{ "startOffset": 13629, "endOffset": 13673, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "arrayBufferToUnsignedBigInt", + "ranges": [{ "startOffset": 13749, "endOffset": 14176, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "unsignedBigIntToBuffer", + "ranges": [{ "startOffset": 14178, "endOffset": 14475, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "checkPrime", + "ranges": [{ "startOffset": 14477, "endOffset": 15370, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "checkPrimeSync", + "ranges": [{ "startOffset": 15372, "endOffset": 16170, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "201", + "url": "node:internal/crypto/argon2", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 6579, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "argon2", + "ranges": [{ "startOffset": 1213, "endOffset": 1866, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "argon2Sync", + "ranges": [{ "startOffset": 2336, "endOffset": 2815, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "check", + "ranges": [{ "startOffset": 3285, "endOffset": 5305, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "validateArgon2DeriveBitsLength", + "ranges": [{ "startOffset": 5348, "endOffset": 5720, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "argon2DeriveBits", + "ranges": [{ "startOffset": 5722, "endOffset": 6477, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "202", + "url": "node:internal/crypto/util", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 21852, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "toBuf", + "ranges": [{ "startOffset": 2142, "endOffset": 2321, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getHashCache", + "ranges": [ + { "startOffset": 2339, "endOffset": 2608, "count": 586 }, + { "startOffset": 2397, "endOffset": 2585, "count": 1 }, + { "startOffset": 2466, "endOffset": 2581, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2540, "endOffset": 2573, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getCachedHashId", + "ranges": [ + { "startOffset": 2610, "endOffset": 2738, "count": 293 }, + { "startOffset": 2722, "endOffset": 2726, "count": 1 }, + { "startOffset": 2727, "endOffset": 2735, "count": 292 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2772, "endOffset": 2815, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2849, "endOffset": 2891, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2925, "endOffset": 2967, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setEngine", + "ranges": [{ "startOffset": 2971, "endOffset": 3378, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3425, "endOffset": 3910, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createSupportedAlgorithms", + "ranges": [ + { "startOffset": 11006, "endOffset": 11994, "count": 1 }, + { "startOffset": 11162, "endOffset": 11974, "count": 38 }, + { "startOffset": 11300, "endOffset": 11348, "count": 21 }, + { "startOffset": 11350, "endOffset": 11373, "count": 0 }, + { "startOffset": 11446, "endOffset": 11970, "count": 150 }, + { "startOffset": 11617, "endOffset": 11900, "count": 77 }, + { "startOffset": 11900, "endOffset": 11964, "count": 73 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 11694, "endOffset": 11824, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "validateMaxBufferLength", + "ranges": [{ "startOffset": 13225, "endOffset": 13438, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "normalizeAlgorithm", + "ranges": [{ "startOffset": 13664, "endOffset": 16099, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getDataViewOrTypedArrayBuffer", + "ranges": [{ "startOffset": 16101, "endOffset": 16240, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getDataViewOrTypedArrayByteOffset", + "ranges": [{ "startOffset": 16242, "endOffset": 16393, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getDataViewOrTypedArrayByteLength", + "ranges": [{ "startOffset": 16395, "endOffset": 16546, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hasAnyNotIn", + "ranges": [{ "startOffset": 16548, "endOffset": 16687, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 16732, "endOffset": 17022, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "onDone", + "ranges": [{ "startOffset": 17026, "endOffset": 17258, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "jobPromise", + "ranges": [{ "startOffset": 17260, "endOffset": 17530, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "bigIntArrayToUnsignedInt", + "ranges": [{ "startOffset": 18066, "endOffset": 18346, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "bigIntArrayToUnsignedBigInt", + "ranges": [{ "startOffset": 18348, "endOffset": 18584, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getStringOption", + "ranges": [{ "startOffset": 18586, "endOffset": 18751, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getUsagesUnion", + "ranges": [{ "startOffset": 18753, "endOffset": 18965, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getBlockSize", + "ranges": [{ "startOffset": 18967, "endOffset": 19501, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getDigestSizeInBytes", + "ranges": [{ "startOffset": 19503, "endOffset": 19821, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "validateKeyOps", + "ranges": [{ "startOffset": 19960, "endOffset": 20926, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "secureHeapUsed", + "ranges": [{ "startOffset": 20928, "endOffset": 21311, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "203", + "url": "node:internal/crypto/hashnames", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2814, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "normalizeHashName", + "ranges": [{ "startOffset": 2324, "endOffset": 2426, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "204", + "url": "node:internal/crypto/pbkdf2", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3046, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "pbkdf2", + "ranges": [{ "startOffset": 519, "endOffset": 1183, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pbkdf2Sync", + "ranges": [{ "startOffset": 1185, "endOffset": 1590, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "check", + "ranges": [{ "startOffset": 1592, "endOffset": 2063, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "validatePbkdf2DeriveBitsLength", + "ranges": [{ "startOffset": 2106, "endOffset": 2369, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pbkdf2DeriveBits", + "ranges": [{ "startOffset": 2371, "endOffset": 2944, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "205", + "url": "node:internal/crypto/scrypt", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3352, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "scrypt", + "ranges": [{ "startOffset": 619, "endOffset": 1285, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "scryptSync", + "ranges": [{ "startOffset": 1287, "endOffset": 1693, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "check", + "ranges": [{ "startOffset": 1695, "endOffset": 3304, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "206", + "url": "node:internal/crypto/hkdf", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3499, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 831, "endOffset": 1382, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "prepareKey", + "ranges": [{ "startOffset": 1386, "endOffset": 1814, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hkdf", + "ranges": [{ "startOffset": 1816, "endOffset": 2282, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hkdfSync", + "ranges": [{ "startOffset": 2284, "endOffset": 2622, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "validateHkdfDeriveBitsLength", + "ranges": [{ "startOffset": 2661, "endOffset": 2921, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hkdfDeriveBits", + "ranges": [{ "startOffset": 2923, "endOffset": 3405, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "207", + "url": "node:internal/crypto/keys", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 28749, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2504, "endOffset": 10500, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "KeyObject", + "ranges": [{ "startOffset": 2614, "endOffset": 3156, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get type", + "ranges": [{ "startOffset": 3162, "endOffset": 3209, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "from", + "ranges": [{ "startOffset": 3222, "endOffset": 3363, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "equals", + "ranges": [{ "startOffset": 3369, "endOffset": 3653, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "SecretKeyObject", + "ranges": [{ "startOffset": 3886, "endOffset": 3944, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get symmetricKeySize", + "ranges": [{ "startOffset": 3950, "endOffset": 4030, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "export", + "ranges": [{ "startOffset": 4036, "endOffset": 4384, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toCryptoKey", + "ranges": [{ "startOffset": 4390, "endOffset": 6329, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "normalizeKeyDetails", + "ranges": [{ "startOffset": 6462, "endOffset": 6731, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get asymmetricKeyType", + "ranges": [{ "startOffset": 6785, "endOffset": 6896, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get asymmetricKeyDetails", + "ranges": [{ "startOffset": 6902, "endOffset": 7229, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toCryptoKey", + "ranges": [{ "startOffset": 7235, "endOffset": 9356, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "PublicKeyObject", + "ranges": [{ "startOffset": 9420, "endOffset": 9478, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "export", + "ranges": [{ "startOffset": 9484, "endOffset": 9775, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "PrivateKeyObject", + "ranges": [{ "startOffset": 9840, "endOffset": 9899, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "export", + "ranges": [{ "startOffset": 9905, "endOffset": 10419, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseKeyFormat", + "ranges": [{ "startOffset": 10504, "endOffset": 10889, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseKeyType", + "ranges": [{ "startOffset": 10891, "endOffset": 11743, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "option", + "ranges": [{ "startOffset": 11745, "endOffset": 11866, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseKeyFormatAndType", + "ranges": [{ "startOffset": 11868, "endOffset": 12568, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isStringOrBuffer", + "ranges": [{ "startOffset": 12570, "endOffset": 12707, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseKeyEncoding", + "ranges": [{ "startOffset": 12709, "endOffset": 14067, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parsePublicKeyEncoding", + "ranges": [{ "startOffset": 14266, "endOffset": 14402, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parsePrivateKeyEncoding", + "ranges": [{ "startOffset": 14602, "endOffset": 14718, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getKeyObjectHandle", + "ranges": [{ "startOffset": 14720, "endOffset": 15298, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getKeyTypes", + "ranges": [{ "startOffset": 15300, "endOffset": 15805, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mlDsaPubLen", + "ranges": [{ "startOffset": 15807, "endOffset": 15962, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getKeyObjectHandleFromJwk", + "ranges": [{ "startOffset": 15964, "endOffset": 19450, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "prepareAsymmetricKey", + "ranges": [{ "startOffset": 19452, "endOffset": 20995, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "preparePrivateKey", + "ranges": [{ "startOffset": 20997, "endOffset": 21085, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "preparePublicOrPrivateKey", + "ranges": [{ "startOffset": 21087, "endOffset": 21182, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "prepareSecretKey", + "ranges": [{ "startOffset": 21184, "endOffset": 21892, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createSecretKey", + "ranges": [{ "startOffset": 21894, "endOffset": 22098, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createPublicKey", + "ranges": [{ "startOffset": 22100, "endOffset": 22437, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createPrivateKey", + "ranges": [{ "startOffset": 22439, "endOffset": 22780, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isKeyObject", + "ranges": [{ "startOffset": 22782, "endOffset": 22897, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "CryptoKey", + "ranges": [{ "startOffset": 23320, "endOffset": 23380, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 23384, "endOffset": 23747, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 23751, "endOffset": 23807, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get type", + "ranges": [{ "startOffset": 23811, "endOffset": 23939, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get extractable", + "ranges": [{ "startOffset": 23943, "endOffset": 24082, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get algorithm", + "ranges": [{ "startOffset": 24086, "endOffset": 24503, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get usages", + "ranges": [{ "startOffset": 24507, "endOffset": 24705, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "defineCryptoKeyProperties", + "ranges": [{ "startOffset": 25158, "endOffset": 26061, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "InternalCryptoKey", + "ranges": [{ "startOffset": 26357, "endOffset": 26723, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 26727, "endOffset": 27088, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 27092, "endOffset": 27239, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isCryptoKey", + "ranges": [{ "startOffset": 27368, "endOffset": 27452, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "importGenericSecretKey", + "ranges": [{ "startOffset": 27454, "endOffset": 28216, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "208", + "url": "node:internal/crypto/keygen", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 11789, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "isJwk", + "ranges": [{ "startOffset": 1621, "endOffset": 1691, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "wrapKey", + "ranges": [{ "startOffset": 1693, "endOffset": 1847, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "generateKeyPair", + "ranges": [{ "startOffset": 1849, "endOffset": 2485, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "generateKeyPairSync", + "ranges": [{ "startOffset": 2631, "endOffset": 2748, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "handleError", + "ranges": [{ "startOffset": 2750, "endOffset": 3128, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseKeyEncoding", + "ranges": [{ "startOffset": 3130, "endOffset": 4380, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createJob", + "ranges": [{ "startOffset": 5366, "endOffset": 10308, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "generateKeyJob", + "ranges": [{ "startOffset": 10339, "endOffset": 10877, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "handleGenerateKeyError", + "ranges": [{ "startOffset": 10879, "endOffset": 11081, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "generateKey", + "ranges": [{ "startOffset": 11083, "endOffset": 11553, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "generateKeySync", + "ranges": [{ "startOffset": 11555, "endOffset": 11689, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "209", + "url": "node:internal/crypto/diffiehellman", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 10393, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "DiffieHellman", + "ranges": [{ "startOffset": 1365, "endOffset": 3169, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "DiffieHellmanGroup", + "ranges": [{ "startOffset": 3172, "endOffset": 3498, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "dhGenerateKeys", + "ranges": [{ "startOffset": 3609, "endOffset": 3724, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "dhComputeSecret", + "ranges": [{ "startOffset": 3838, "endOffset": 4096, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "dhGetPrime", + "ranges": [{ "startOffset": 4195, "endOffset": 4304, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "dhGetGenerator", + "ranges": [{ "startOffset": 4415, "endOffset": 4540, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "dhGetPublicKey", + "ranges": [{ "startOffset": 4651, "endOffset": 4764, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "dhGetPrivateKey", + "ranges": [{ "startOffset": 4878, "endOffset": 4993, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setPublicKey", + "ranges": [{ "startOffset": 5035, "endOffset": 5177, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setPrivateKey", + "ranges": [{ "startOffset": 5221, "endOffset": 5365, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ECDH", + "ranges": [{ "startOffset": 5369, "endOffset": 5523, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "generateKeys", + "ranges": [{ "startOffset": 5834, "endOffset": 5956, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getPublicKey", + "ranges": [{ "startOffset": 5989, "endOffset": 6140, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "convertKey", + "ranges": [{ "startOffset": 6161, "endOffset": 6427, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "encode", + "ranges": [{ "startOffset": 6430, "endOffset": 6565, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getFormat", + "ranges": [{ "startOffset": 6567, "endOffset": 6890, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "diffieHellman", + "ranges": [{ "startOffset": 6964, "endOffset": 8519, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ecdhDeriveBits", + "ranges": [{ "startOffset": 8649, "endOffset": 10287, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "210", + "url": "node:internal/crypto/cipher", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 8577, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "rsaFunctionFor", + "ranges": [{ "startOffset": 1242, "endOffset": 1990, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1310, "endOffset": 1987, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getDecoder", + "ranges": [{ "startOffset": 2491, "endOffset": 2846, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getUIntOption", + "ranges": [{ "startOffset": 2848, "endOffset": 3082, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createCipherBase", + "ranges": [{ "startOffset": 3084, "endOffset": 3386, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createCipherWithIV", + "ranges": [{ "startOffset": 3388, "endOffset": 3736, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_transform", + "ranges": [{ "startOffset": 3979, "endOffset": 4095, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_flush", + "ranges": [{ "startOffset": 4098, "endOffset": 4236, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "update", + "ranges": [{ "startOffset": 4239, "endOffset": 4755, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "final", + "ranges": [{ "startOffset": 4758, "endOffset": 5002, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setAutoPadding", + "ranges": [{ "startOffset": 5005, "endOffset": 5152, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getAuthTag", + "ranges": [{ "startOffset": 5155, "endOffset": 5315, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setAuthTag", + "ranges": [{ "startOffset": 5318, "endOffset": 5530, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setAAD", + "ranges": [{ "startOffset": 5532, "endOffset": 5874, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Cipheriv", + "ranges": [{ "startOffset": 6122, "endOffset": 6339, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addCipherPrototypeFunctions", + "ranges": [ + { "startOffset": 6341, "endOffset": 6813, "count": 2 }, + { "startOffset": 6652, "endOffset": 6770, "count": 1 } + ], + "isBlockCoverage": true + }, + { + "functionName": "Decipheriv", + "ranges": [{ "startOffset": 7217, "endOffset": 7441, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getCipherInfo", + "ranges": [{ "startOffset": 7603, "endOffset": 8440, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "211", + "url": "node:internal/streams/lazy_transform", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1386, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "LazyTransform", + "ranges": [{ "startOffset": 401, "endOffset": 463, "count": 293 }], + "isBlockCoverage": true + }, + { + "functionName": "makeGetter", + "ranges": [{ "startOffset": 595, "endOffset": 769, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 632, "endOffset": 766, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "makeSetter", + "ranges": [{ "startOffset": 771, "endOffset": 990, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 808, "endOffset": 987, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "212", + "url": "node:internal/crypto/sig", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 7664, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "Sign", + "ranges": [{ "startOffset": 910, "endOffset": 1176, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_write", + "ranges": [{ "startOffset": 1299, "endOffset": 1391, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "update", + "ranges": [{ "startOffset": 1418, "endOffset": 1731, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getPadding", + "ranges": [{ "startOffset": 1734, "endOffset": 1809, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getSaltLength", + "ranges": [{ "startOffset": 1811, "endOffset": 2069, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getDSASignatureEncoding", + "ranges": [{ "startOffset": 2071, "endOffset": 2423, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getContext", + "ranges": [{ "startOffset": 2425, "endOffset": 2717, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getIntOption", + "ranges": [{ "startOffset": 2719, "endOffset": 2964, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "sign", + "ranges": [{ "startOffset": 2988, "endOffset": 3604, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "signOneShot", + "ranges": [{ "startOffset": 3607, "endOffset": 4931, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Verify", + "ranges": [{ "startOffset": 4933, "endOffset": 5207, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "verify", + "ranges": [{ "startOffset": 5435, "endOffset": 6018, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "verifyOneShot", + "ranges": [{ "startOffset": 6021, "endOffset": 7590, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "213", + "url": "node:internal/crypto/hash", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 7444, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "normalizeAlgorithm", + "ranges": [{ "startOffset": 1262, "endOffset": 1375, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 1571, "endOffset": 1759, "count": 293 }, + { "startOffset": 1634, "endOffset": 1754, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "Hash", + "ranges": [ + { "startOffset": 1765, "endOffset": 2587, "count": 293 }, + { "startOffset": 1824, "endOffset": 1860, "count": 0 }, + { "startOffset": 2010, "endOffset": 2029, "count": 0 }, + { "startOffset": 2030, "endOffset": 2056, "count": 0 }, + { "startOffset": 2102, "endOffset": 2149, "count": 0 }, + { "startOffset": 2281, "endOffset": 2285, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "copy", + "ranges": [{ "startOffset": 2718, "endOffset": 2886, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_transform", + "ranges": [{ "startOffset": 2917, "endOffset": 3022, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_flush", + "ranges": [{ "startOffset": 3049, "endOffset": 3129, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "update", + "ranges": [ + { "startOffset": 3156, "endOffset": 3620, "count": 293 }, + { "startOffset": 3249, "endOffset": 3287, "count": 0 }, + { "startOffset": 3364, "endOffset": 3510, "count": 0 }, + { "startOffset": 3561, "endOffset": 3603, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "digest", + "ranges": [ + { "startOffset": 3648, "endOffset": 3969, "count": 293 }, + { "startOffset": 3741, "endOffset": 3779, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "Hmac", + "ranges": [{ "startOffset": 3972, "endOffset": 4379, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "digest", + "ranges": [{ "startOffset": 4560, "endOffset": 4992, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "asyncDigest", + "ranges": [{ "startOffset": 5147, "endOffset": 5867, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hash", + "ranges": [{ "startOffset": 5869, "endOffset": 7381, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "214", + "url": "node:internal/crypto/x509", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 11135, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "isX509Certificate", + "ranges": [{ "startOffset": 1157, "endOffset": 1240, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getFlags", + "ranges": [{ "startOffset": 1242, "endOffset": 2487, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2523, "endOffset": 2555, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "InternalX509Certificate", + "ranges": [{ "startOffset": 2560, "endOffset": 2654, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2684, "endOffset": 2716, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "X509Certificate", + "ranges": [{ "startOffset": 2721, "endOffset": 3071, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3075, "endOffset": 3885, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3889, "endOffset": 4054, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4058, "endOffset": 4118, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get subject", + "ranges": [{ "startOffset": 4122, "endOffset": 4338, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get subjectAltName", + "ranges": [{ "startOffset": 4342, "endOffset": 4586, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get issuer", + "ranges": [{ "startOffset": 4590, "endOffset": 4802, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get issuerCertificate", + "ranges": [{ "startOffset": 4806, "endOffset": 5155, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get infoAccess", + "ranges": [{ "startOffset": 5159, "endOffset": 5387, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get validFrom", + "ranges": [{ "startOffset": 5391, "endOffset": 5615, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get validTo", + "ranges": [{ "startOffset": 5619, "endOffset": 5835, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get validFromDate", + "ranges": [{ "startOffset": 5839, "endOffset": 6079, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get validToDate", + "ranges": [{ "startOffset": 6083, "endOffset": 6315, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get fingerprint", + "ranges": [{ "startOffset": 6319, "endOffset": 6551, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get fingerprint256", + "ranges": [{ "startOffset": 6555, "endOffset": 6799, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get fingerprint512", + "ranges": [{ "startOffset": 6803, "endOffset": 7047, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get keyUsage", + "ranges": [{ "startOffset": 7051, "endOffset": 7271, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get serialNumber", + "ranges": [{ "startOffset": 7275, "endOffset": 7511, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get signatureAlgorithm", + "ranges": [{ "startOffset": 7515, "endOffset": 7775, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get signatureAlgorithmOid", + "ranges": [{ "startOffset": 7779, "endOffset": 8051, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get raw", + "ranges": [{ "startOffset": 8055, "endOffset": 8255, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get publicKey", + "ranges": [{ "startOffset": 8259, "endOffset": 8504, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toString", + "ranges": [{ "startOffset": 8508, "endOffset": 8709, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toJSON", + "ranges": [{ "startOffset": 8834, "endOffset": 8870, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get ca", + "ranges": [{ "startOffset": 8874, "endOffset": 9075, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "checkHost", + "ranges": [{ "startOffset": 9079, "endOffset": 9204, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "checkEmail", + "ranges": [{ "startOffset": 9208, "endOffset": 9339, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "checkIP", + "ranges": [{ "startOffset": 9343, "endOffset": 9833, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "checkIssued", + "ranges": [{ "startOffset": 9837, "endOffset": 10043, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "checkPrivateKey", + "ranges": [{ "startOffset": 10047, "endOffset": 10310, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "verify", + "ranges": [{ "startOffset": 10314, "endOffset": 10558, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toLegacyObject", + "ranges": [{ "startOffset": 10562, "endOffset": 10887, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "215", + "url": "node:internal/crypto/certificate", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1546, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "verifySpkac", + "ranges": [{ "startOffset": 385, "endOffset": 505, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "exportPublicKey", + "ranges": [{ "startOffset": 507, "endOffset": 635, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "exportChallenge", + "ranges": [{ "startOffset": 637, "endOffset": 765, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Certificate", + "ranges": [{ "startOffset": 1122, "endOffset": 1216, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "216", + "url": "node:internal/crypto/kem", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2360, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "encapsulate", + "ranges": [{ "startOffset": 507, "endOffset": 1434, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "decapsulate", + "ranges": [{ "startOffset": 1436, "endOffset": 2306, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "217", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/uuid/dist/v1ToV6.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1321, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "_interopRequireDefault", + "ranges": [ + { "startOffset": 210, "endOffset": 295, "count": 1 }, + { "startOffset": 276, "endOffset": 292, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "v1ToV6", + "ranges": [{ "startOffset": 512, "endOffset": 740, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_v1ToV6", + "ranges": [{ "startOffset": 793, "endOffset": 1321, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "218", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/uuid/dist/v3.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 390, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "_interopRequireDefault", + "ranges": [ + { "startOffset": 215, "endOffset": 300, "count": 2 }, + { "startOffset": 281, "endOffset": 297, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "219", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/uuid/dist/v35.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2009, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "_interopRequireDefault", + "ranges": [ + { "startOffset": 243, "endOffset": 328, "count": 1 }, + { "startOffset": 309, "endOffset": 325, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "stringToBytes", + "ranges": [{ "startOffset": 329, "endOffset": 535, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "v35", + "ranges": [{ "startOffset": 668, "endOffset": 2009, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "generateUUID", + "ranges": [{ "startOffset": 710, "endOffset": 1772, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "220", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/uuid/dist/md5.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 538, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "_interopRequireDefault", + "ranges": [ + { "startOffset": 172, "endOffset": 257, "count": 1 }, + { "startOffset": 234, "endOffset": 237, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "md5", + "ranges": [{ "startOffset": 258, "endOffset": 500, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "221", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/uuid/dist/v4.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 981, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "_interopRequireDefault", + "ranges": [ + { "startOffset": 268, "endOffset": 353, "count": 2 }, + { "startOffset": 334, "endOffset": 350, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "v4", + "ranges": [{ "startOffset": 354, "endOffset": 944, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "222", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/uuid/dist/native.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 340, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "_interopRequireDefault", + "ranges": [ + { "startOffset": 172, "endOffset": 257, "count": 1 }, + { "startOffset": 234, "endOffset": 237, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "223", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/uuid/dist/v5.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 393, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "_interopRequireDefault", + "ranges": [ + { "startOffset": 217, "endOffset": 302, "count": 2 }, + { "startOffset": 283, "endOffset": 299, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "224", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/uuid/dist/sha1.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 541, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "_interopRequireDefault", + "ranges": [ + { "startOffset": 172, "endOffset": 257, "count": 1 }, + { "startOffset": 234, "endOffset": 237, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "sha1", + "ranges": [{ "startOffset": 258, "endOffset": 502, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "225", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/uuid/dist/v6.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1079, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "_interopRequireDefault", + "ranges": [ + { "startOffset": 260, "endOffset": 345, "count": 2 }, + { "startOffset": 326, "endOffset": 342, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "v6", + "ranges": [{ "startOffset": 451, "endOffset": 1079, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "226", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/uuid/dist/v6ToV1.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1302, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "_interopRequireDefault", + "ranges": [ + { "startOffset": 210, "endOffset": 295, "count": 1 }, + { "startOffset": 276, "endOffset": 292, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "v6ToV1", + "ranges": [{ "startOffset": 512, "endOffset": 740, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_v6ToV1", + "ranges": [{ "startOffset": 793, "endOffset": 1302, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "227", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/uuid/dist/v7.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 4976, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "_interopRequireDefault", + "ranges": [ + { "startOffset": 206, "endOffset": 291, "count": 1 }, + { "startOffset": 272, "endOffset": 288, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "v7", + "ranges": [{ "startOffset": 1964, "endOffset": 4939, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "228", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/uuid/dist/version.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 449, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "_interopRequireDefault", + "ranges": [ + { "startOffset": 172, "endOffset": 257, "count": 1 }, + { "startOffset": 238, "endOffset": 254, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "version", + "ranges": [{ "startOffset": 258, "endOffset": 407, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "229", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/gherkin/node_modules/@cucumber/messages/dist/cjs/src/parseEnvelope.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 622, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "parseEnvelope", + "ranges": [{ "startOffset": 433, "endOffset": 580, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "230", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/gherkin/node_modules/@cucumber/messages/dist/cjs/src/messages.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 29000, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__decorate", + "ranges": [ + { "startOffset": 60, "endOffset": 584, "count": 88 }, + { "startOffset": 143, "endOffset": 151, "count": 0 }, + { "startOffset": 168, "endOffset": 221, "count": 0 }, + { "startOffset": 364, "endOffset": 515, "count": 0 }, + { "startOffset": 538, "endOffset": 578, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2156, "endOffset": 2483, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Attachment", + "ranges": [{ "startOffset": 2174, "endOffset": 2323, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2379, "endOffset": 2409, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2551, "endOffset": 2669, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Duration", + "ranges": [{ "startOffset": 2569, "endOffset": 2646, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2733, "endOffset": 5264, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Envelope", + "ranges": [{ "startOffset": 2751, "endOffset": 2778, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2834, "endOffset": 2868, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2975, "endOffset": 3014, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3126, "endOffset": 3154, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3255, "endOffset": 3283, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3384, "endOffset": 3421, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3531, "endOffset": 3565, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3672, "endOffset": 3702, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3805, "endOffset": 3835, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3938, "endOffset": 3976, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4087, "endOffset": 4119, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4224, "endOffset": 4264, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4377, "endOffset": 4416, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4528, "endOffset": 4567, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4679, "endOffset": 4717, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4828, "endOffset": 4868, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4981, "endOffset": 5020, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5132, "endOffset": 5178, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5329, "endOffset": 5423, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Exception", + "ranges": [{ "startOffset": 5347, "endOffset": 5399, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5496, "endOffset": 5891, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "GherkinDocument", + "ranges": [{ "startOffset": 5514, "endOffset": 5576, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5632, "endOffset": 5663, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5774, "endOffset": 5805, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5971, "endOffset": 6483, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Background", + "ranges": [{ "startOffset": 5989, "endOffset": 6187, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6243, "endOffset": 6275, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6382, "endOffset": 6410, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6550, "endOffset": 6816, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Comment", + "ranges": [{ "startOffset": 6568, "endOffset": 6658, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6714, "endOffset": 6746, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6879, "endOffset": 7285, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "DataTable", + "ranges": [{ "startOffset": 6897, "endOffset": 6989, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 7045, "endOffset": 7077, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 7183, "endOffset": 7215, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 7352, "endOffset": 7656, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "DocString", + "ranges": [{ "startOffset": 7370, "endOffset": 7494, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 7550, "endOffset": 7582, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 7722, "endOffset": 8530, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Examples", + "ranges": [{ "startOffset": 7740, "endOffset": 7964, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8020, "endOffset": 8052, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8157, "endOffset": 8184, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8285, "endOffset": 8317, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8425, "endOffset": 8457, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8593, "endOffset": 9264, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Feature", + "ranges": [{ "startOffset": 8611, "endOffset": 8839, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8895, "endOffset": 8927, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9031, "endOffset": 9058, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9158, "endOffset": 9194, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9330, "endOffset": 9825, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "FeatureChild", + "ranges": [{ "startOffset": 9348, "endOffset": 9379, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9435, "endOffset": 9463, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9568, "endOffset": 9602, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9713, "endOffset": 9745, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9893, "endOffset": 10540, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Rule", + "ranges": [{ "startOffset": 9911, "endOffset": 10130, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 10186, "endOffset": 10218, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 10319, "endOffset": 10346, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 10443, "endOffset": 10476, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 10597, "endOffset": 10947, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "RuleChild", + "ranges": [{ "startOffset": 10615, "endOffset": 10643, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 10699, "endOffset": 10733, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 10841, "endOffset": 10873, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 11013, "endOffset": 11834, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Scenario", + "ranges": [{ "startOffset": 11031, "endOffset": 11279, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 11335, "endOffset": 11367, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 11472, "endOffset": 11499, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 11600, "endOffset": 11628, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 11730, "endOffset": 11762, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 11894, "endOffset": 12470, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Step", + "ranges": [{ "startOffset": 11912, "endOffset": 12048, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 12104, "endOffset": 12136, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 12237, "endOffset": 12270, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 12372, "endOffset": 12405, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 12527, "endOffset": 12800, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "TableCell", + "ranges": [{ "startOffset": 12545, "endOffset": 12638, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 12694, "endOffset": 12726, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 12866, "endOffset": 13293, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "TableRow", + "ranges": [{ "startOffset": 12884, "endOffset": 12998, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 13054, "endOffset": 13086, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 13191, "endOffset": 13224, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 13352, "endOffset": 13628, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Tag", + "ranges": [{ "startOffset": 13370, "endOffset": 13478, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 13534, "endOffset": 13566, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 13678, "endOffset": 13961, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Hook", + "ranges": [{ "startOffset": 13696, "endOffset": 13795, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 13851, "endOffset": 13890, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 14017, "endOffset": 14108, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Location", + "ranges": [{ "startOffset": 14035, "endOffset": 14085, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 14168, "endOffset": 15056, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Meta", + "ranges": [{ "startOffset": 14186, "endOffset": 14394, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 14450, "endOffset": 14481, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 14588, "endOffset": 14619, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 14719, "endOffset": 14750, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 14845, "endOffset": 14876, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 14972, "endOffset": 14998, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 15106, "endOffset": 15307, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Ci", + "ranges": [{ "startOffset": 15124, "endOffset": 15169, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 15225, "endOffset": 15252, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 15354, "endOffset": 15466, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Git", + "ranges": [{ "startOffset": 15372, "endOffset": 15448, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 15519, "endOffset": 15609, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Product", + "ranges": [{ "startOffset": 15537, "endOffset": 15587, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 15676, "endOffset": 16085, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "ParameterType", + "ranges": [{ "startOffset": 15694, "endOffset": 15901, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 15957, "endOffset": 15996, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 16161, "endOffset": 16449, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "ParseError", + "ranges": [{ "startOffset": 16179, "endOffset": 16280, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 16336, "endOffset": 16375, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 16515, "endOffset": 17021, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Pickle", + "ranges": [{ "startOffset": 16533, "endOffset": 16734, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 16790, "endOffset": 16824, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 16924, "endOffset": 16957, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 17088, "endOffset": 17197, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "PickleDocString", + "ranges": [{ "startOffset": 17106, "endOffset": 17167, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 17277, "endOffset": 17574, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "PickleStep", + "ranges": [{ "startOffset": 17295, "endOffset": 17400, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 17456, "endOffset": 17498, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 17652, "endOffset": 18046, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "PickleStepArgument", + "ranges": [{ "startOffset": 17670, "endOffset": 17707, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 17763, "endOffset": 17802, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 17918, "endOffset": 17953, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 18133, "endOffset": 18373, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "PickleTable", + "ranges": [{ "startOffset": 18151, "endOffset": 18205, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 18261, "endOffset": 18299, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 18450, "endOffset": 18557, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "PickleTableCell", + "ranges": [{ "startOffset": 18468, "endOffset": 18527, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 18641, "endOffset": 18893, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "PickleTableRow", + "ranges": [{ "startOffset": 18659, "endOffset": 18717, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 18773, "endOffset": 18812, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 18970, "endOffset": 19093, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "PickleTag", + "ranges": [{ "startOffset": 18988, "endOffset": 19069, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 19157, "endOffset": 19340, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Source", + "ranges": [{ "startOffset": 19175, "endOffset": 19319, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 19407, "endOffset": 19951, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "SourceReference", + "ranges": [{ "startOffset": 19425, "endOffset": 19459, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 19515, "endOffset": 19549, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 19663, "endOffset": 19708, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 19833, "endOffset": 19865, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 20031, "endOffset": 20202, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "JavaMethod", + "ranges": [{ "startOffset": 20049, "endOffset": 20177, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 20283, "endOffset": 20464, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "JavaStackTraceElement", + "ranges": [{ "startOffset": 20301, "endOffset": 20428, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 20560, "endOffset": 21080, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "StepDefinition", + "ranges": [{ "startOffset": 20578, "endOffset": 20739, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 20795, "endOffset": 20840, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 20950, "endOffset": 20989, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 21169, "endOffset": 21356, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "StepDefinitionPattern", + "ranges": [{ "startOffset": 21187, "endOffset": 21320, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 21446, "endOffset": 21731, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "TestCase", + "ranges": [{ "startOffset": 21464, "endOffset": 21570, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 21626, "endOffset": 21658, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 21792, "endOffset": 22013, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Group", + "ranges": [{ "startOffset": 21810, "endOffset": 21862, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 21918, "endOffset": 21947, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 22080, "endOffset": 22340, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "StepMatchArgument", + "ranges": [{ "startOffset": 22098, "endOffset": 22168, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 22224, "endOffset": 22253, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 22436, "endOffset": 22740, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "StepMatchArgumentsList", + "ranges": [{ "startOffset": 22454, "endOffset": 22533, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 22589, "endOffset": 22630, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 22832, "endOffset": 23088, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "TestStep", + "ranges": [{ "startOffset": 22850, "endOffset": 22899, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 22955, "endOffset": 23001, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 23160, "endOffset": 23506, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "TestCaseFinished", + "ranges": [{ "startOffset": 23178, "endOffset": 23328, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 23384, "endOffset": 23417, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 23593, "endOffset": 23941, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "TestCaseStarted", + "ranges": [{ "startOffset": 23611, "endOffset": 23765, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 23821, "endOffset": 23854, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 24026, "endOffset": 24472, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "TestRunFinished", + "ranges": [{ "startOffset": 24044, "endOffset": 24150, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 24206, "endOffset": 24239, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 24352, "endOffset": 24385, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 24556, "endOffset": 24823, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "TestRunStarted", + "ranges": [{ "startOffset": 24574, "endOffset": 24649, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 24705, "endOffset": 24738, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 24907, "endOffset": 25456, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "TestStepFinished", + "ranges": [{ "startOffset": 24925, "endOffset": 25121, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 25177, "endOffset": 25215, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 25334, "endOffset": 25367, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 25542, "endOffset": 26002, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "TestStepResult", + "ranges": [{ "startOffset": 25560, "endOffset": 25685, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 25741, "endOffset": 25773, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 25884, "endOffset": 25917, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 26085, "endOffset": 26422, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "TestStepStarted", + "ranges": [{ "startOffset": 26103, "endOffset": 26246, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 26302, "endOffset": 26335, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 26501, "endOffset": 26621, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Timestamp", + "ranges": [{ "startOffset": 26519, "endOffset": 26597, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 26701, "endOffset": 26851, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "UndefinedParameterType", + "ranges": [{ "startOffset": 26719, "endOffset": 26814, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 26945, "endOffset": 27093, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 27216, "endOffset": 27415, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 27506, "endOffset": 27718, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 27822, "endOffset": 28016, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 28140, "endOffset": 28396, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 28495, "endOffset": 28877, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "231", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/class-transformer/cjs/index.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 3679, "count": 1 }, + { "startOffset": 239, "endOffset": 320, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 237, "count": 8 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 204, "endOffset": 231, "count": 181 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 242, "endOffset": 319, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__exportStar", + "ranges": [ + { "startOffset": 373, "endOffset": 524, "count": 3 }, + { "startOffset": 417, "endOffset": 522, "count": 8 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1106, "endOffset": 1165, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "classToPlain", + "ranges": [{ "startOffset": 1377, "endOffset": 1481, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "instanceToPlain", + "ranges": [{ "startOffset": 1519, "endOffset": 1626, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "classToPlainFromExist", + "ranges": [{ "startOffset": 1670, "endOffset": 1815, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "plainToClass", + "ranges": [{ "startOffset": 1871, "endOffset": 1983, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "plainToInstance", + "ranges": [{ "startOffset": 2021, "endOffset": 2136, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "plainToClassFromExist", + "ranges": [{ "startOffset": 2180, "endOffset": 2319, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "instanceToInstance", + "ranges": [{ "startOffset": 2375, "endOffset": 2488, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "classToClassFromExist", + "ranges": [{ "startOffset": 2538, "endOffset": 2681, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "serialize", + "ranges": [{ "startOffset": 2737, "endOffset": 2832, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "deserialize", + "ranges": [{ "startOffset": 3087, "endOffset": 3192, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "deserializeArray", + "ranges": [{ "startOffset": 3485, "endOffset": 3600, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "232", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/class-transformer/cjs/ClassTransformer.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3284, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "instanceToPlain", + "ranges": [{ "startOffset": 339, "endOffset": 701, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "classToPlainFromExist", + "ranges": [{ "startOffset": 706, "endOffset": 1089, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "plainToInstance", + "ranges": [{ "startOffset": 1094, "endOffset": 1453, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "plainToClassFromExist", + "ranges": [{ "startOffset": 1458, "endOffset": 1835, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "instanceToInstance", + "ranges": [{ "startOffset": 1840, "endOffset": 2205, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "classToClassFromExist", + "ranges": [{ "startOffset": 2210, "endOffset": 2591, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "serialize", + "ranges": [{ "startOffset": 2596, "endOffset": 2700, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "deserialize", + "ranges": [{ "startOffset": 2791, "endOffset": 2938, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "deserializeArray", + "ranges": [{ "startOffset": 3040, "endOffset": 3192, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "233", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/class-transformer/cjs/TransformOperationExecutor.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 25578, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "instantiateArrayType", + "ranges": [{ "startOffset": 234, "endOffset": 413, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "TransformOperationExecutor", + "ranges": [{ "startOffset": 634, "endOffset": 1009, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transform", + "ranges": [{ "startOffset": 1198, "endOffset": 18890, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "applyCustomTransformations", + "ranges": [{ "startOffset": 18895, "endOffset": 20127, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isCircular", + "ranges": [{ "startOffset": 20170, "endOffset": 20244, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getReflectedType", + "ranges": [{ "startOffset": 20249, "endOffset": 20494, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getKeys", + "ranges": [{ "startOffset": 20499, "endOffset": 25030, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "checkVersion", + "ranges": [{ "startOffset": 25035, "endOffset": 25292, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "checkGroups", + "ranges": [{ "startOffset": 25297, "endOffset": 25456, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "234", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/class-transformer/cjs/storage.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 382, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "235", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/class-transformer/cjs/MetadataStorage.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 9340, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "MetadataStorage", + "ranges": [{ "startOffset": 216, "endOffset": 643, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "addTypeMetadata", + "ranges": [ + { "startOffset": 831, "endOffset": 1083, "count": 181 }, + { "startOffset": 914, "endOffset": 990, "count": 84 } + ], + "isBlockCoverage": true + }, + { + "functionName": "addTransformMetadata", + "ranges": [{ "startOffset": 1088, "endOffset": 1554, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addExposeMetadata", + "ranges": [{ "startOffset": 1559, "endOffset": 1819, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addExcludeMetadata", + "ranges": [{ "startOffset": 1824, "endOffset": 2088, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "findTransformMetadatas", + "ranges": [{ "startOffset": 2277, "endOffset": 3088, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "findExcludeMetadata", + "ranges": [{ "startOffset": 3093, "endOffset": 3222, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "findExposeMetadata", + "ranges": [{ "startOffset": 3227, "endOffset": 3354, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "findExposeMetadataByCustomName", + "ranges": [{ "startOffset": 3359, "endOffset": 3561, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "findTypeMetadata", + "ranges": [{ "startOffset": 3566, "endOffset": 3689, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getStrategy", + "ranges": [{ "startOffset": 3694, "endOffset": 4110, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getExposedMetadatas", + "ranges": [{ "startOffset": 4115, "endOffset": 4214, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getExcludedMetadatas", + "ranges": [{ "startOffset": 4219, "endOffset": 4320, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getExposedProperties", + "ranges": [{ "startOffset": 4325, "endOffset": 5151, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getExcludedProperties", + "ranges": [{ "startOffset": 5156, "endOffset": 5984, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "clear", + "ranges": [{ "startOffset": 5989, "endOffset": 6156, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getMetadata", + "ranges": [{ "startOffset": 6346, "endOffset": 7154, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "findMetadata", + "ranges": [{ "startOffset": 7159, "endOffset": 7886, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "findMetadatas", + "ranges": [{ "startOffset": 7891, "endOffset": 8724, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getAncestors", + "ranges": [{ "startOffset": 8729, "endOffset": 9251, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "236", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/class-transformer/cjs/enums/index.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 684, "count": 1 }, + { "startOffset": 239, "endOffset": 320, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 237, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 204, "endOffset": 231, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 242, "endOffset": 319, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__exportStar", + "ranges": [{ "startOffset": 373, "endOffset": 524, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "237", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/class-transformer/cjs/enums/transformation-type.enum.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 568, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 139, "endOffset": 427, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "238", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/class-transformer/cjs/utils/index.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 728, "count": 1 }, + { "startOffset": 239, "endOffset": 320, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 237, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 204, "endOffset": 231, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 242, "endOffset": 319, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__exportStar", + "ranges": [{ "startOffset": 373, "endOffset": 524, "count": 2 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "239", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/class-transformer/cjs/utils/get-global.util.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1185, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "getGlobal", + "ranges": [{ "startOffset": 342, "endOffset": 1110, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "240", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/class-transformer/cjs/utils/is-promise.util.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 285, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "isPromise", + "ranges": [{ "startOffset": 105, "endOffset": 210, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "241", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/class-transformer/cjs/constants/default-options.constant.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 597, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "242", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/class-transformer/cjs/decorators/index.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 1068, "count": 1 }, + { "startOffset": 239, "endOffset": 320, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 237, "count": 7 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 204, "endOffset": 231, "count": 181 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 242, "endOffset": 319, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__exportStar", + "ranges": [{ "startOffset": 373, "endOffset": 524, "count": 7 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "243", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/class-transformer/cjs/decorators/exclude.decorator.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1125, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Exclude", + "ranges": [{ "startOffset": 462, "endOffset": 1052, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "244", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/class-transformer/cjs/decorators/expose.decorator.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1119, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Expose", + "ranges": [{ "startOffset": 461, "endOffset": 1049, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "245", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/class-transformer/cjs/decorators/transform-instance-to-instance.decorator.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1137, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "TransformInstanceToInstance", + "ranges": [{ "startOffset": 313, "endOffset": 1001, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "246", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/class-transformer/cjs/decorators/transform-instance-to-plain.decorator.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1149, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "TransformInstanceToPlain", + "ranges": [{ "startOffset": 343, "endOffset": 1022, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "247", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/class-transformer/cjs/decorators/transform-plain-to-instance.decorator.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1149, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "TransformPlainToInstance", + "ranges": [{ "startOffset": 310, "endOffset": 1022, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "248", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/class-transformer/cjs/decorators/transform.decorator.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 629, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Transform", + "ranges": [{ "startOffset": 247, "endOffset": 550, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "249", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/class-transformer/cjs/decorators/type.decorator.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 798, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Type", + "ranges": [{ "startOffset": 324, "endOffset": 734, "count": 181 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 379, "endOffset": 731, "count": 181 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "250", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/class-transformer/cjs/interfaces/index.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 1661, "count": 1 }, + { "startOffset": 239, "endOffset": 320, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 237, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 242, "endOffset": 319, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__exportStar", + "ranges": [ + { "startOffset": 373, "endOffset": 524, "count": 14 }, + { "startOffset": 417, "endOffset": 522, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "251", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/class-transformer/cjs/interfaces/decorator-options/expose-options.interface.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 129, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "252", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/class-transformer/cjs/interfaces/decorator-options/exclude-options.interface.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 130, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "253", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/class-transformer/cjs/interfaces/decorator-options/transform-options.interface.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 132, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "254", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/class-transformer/cjs/interfaces/decorator-options/type-discriminator-descriptor.interface.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 144, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "255", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/class-transformer/cjs/interfaces/decorator-options/type-options.interface.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 127, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "256", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/class-transformer/cjs/interfaces/metadata/exclude-metadata.interface.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 131, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "257", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/class-transformer/cjs/interfaces/metadata/expose-metadata.interface.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 130, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "258", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/class-transformer/cjs/interfaces/metadata/transform-metadata.interface.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 133, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "259", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/class-transformer/cjs/interfaces/metadata/transform-fn-params.interface.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 134, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "260", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/class-transformer/cjs/interfaces/metadata/type-metadata.interface.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 128, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "261", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/class-transformer/cjs/interfaces/class-constructor.type.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 127, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "262", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/class-transformer/cjs/interfaces/class-transformer-options.interface.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 140, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "263", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/class-transformer/cjs/interfaces/target-map.interface.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 125, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "264", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/class-transformer/cjs/interfaces/type-help-options.interface.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 132, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "265", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/reflect-metadata/Reflect.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 64201, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 813, "endOffset": 64171, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 916, "endOffset": 2233, "count": 1 }, + { "startOffset": 1000, "endOffset": 1196, "count": 0 }, + { "startOffset": 1448, "endOffset": 1495, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "makeExporter", + "ranges": [{ "startOffset": 1504, "endOffset": 1791, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 1565, "endOffset": 1780, "count": 20 }, + { "startOffset": 1745, "endOffset": 1766, "count": 10 } + ], + "isBlockCoverage": true + }, + { + "functionName": "functionThis", + "ranges": [{ "startOffset": 1800, "endOffset": 1944, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "indirectEvalThis", + "ranges": [{ "startOffset": 1953, "endOffset": 2124, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "sloppyModeThis", + "ranges": [{ "startOffset": 2133, "endOffset": 2227, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 2235, "endOffset": 64167, "count": 1 }, + { "startOffset": 2532, "endOffset": 2549, "count": 0 }, + { "startOffset": 2655, "endOffset": 2669, "count": 0 }, + { "startOffset": 2921, "endOffset": 2938, "count": 0 }, + { "startOffset": 3171, "endOffset": 3333, "count": 0 }, + { "startOffset": 3378, "endOffset": 3433, "count": 0 }, + { "startOffset": 3539, "endOffset": 3617, "count": 0 }, + { "startOffset": 3917, "endOffset": 3938, "count": 0 }, + { "startOffset": 4038, "endOffset": 4059, "count": 0 }, + { "startOffset": 4124, "endOffset": 4149, "count": 0 }, + { "startOffset": 4238, "endOffset": 4249, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "HashMap.create", + "ranges": [{ "startOffset": 3095, "endOffset": 3154, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "HashMap.create", + "ranges": [{ "startOffset": 3209, "endOffset": 3268, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "HashMap.create", + "ranges": [{ "startOffset": 3291, "endOffset": 3333, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "HashMap.has", + "ranges": [{ "startOffset": 3380, "endOffset": 3433, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "HashMap.has", + "ranges": [{ "startOffset": 3452, "endOffset": 3494, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "HashMap.get", + "ranges": [{ "startOffset": 3541, "endOffset": 3617, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "HashMap.get", + "ranges": [{ "startOffset": 3636, "endOffset": 3676, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "decorate", + "ranges": [ + { "startOffset": 6139, "endOffset": 7073, "count": 181 }, + { "startOffset": 6311, "endOffset": 6333, "count": 0 }, + { "startOffset": 6393, "endOffset": 6415, "count": 0 }, + { "startOffset": 6486, "endOffset": 6508, "count": 0 }, + { "startOffset": 6530, "endOffset": 6552, "count": 0 }, + { "startOffset": 6613, "endOffset": 6636, "count": 0 }, + { "startOffset": 6794, "endOffset": 7063, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "metadata", + "ranges": [{ "startOffset": 8664, "endOffset": 9114, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "defineMetadata", + "ranges": [{ "startOffset": 10920, "endOffset": 11274, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hasMetadata", + "ranges": [{ "startOffset": 12931, "endOffset": 13246, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hasOwnMetadata", + "ranges": [{ "startOffset": 14866, "endOffset": 15187, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getMetadata", + "ranges": [ + { "startOffset": 16801, "endOffset": 17116, "count": 181 }, + { "startOffset": 16909, "endOffset": 16931, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "getOwnMetadata", + "ranges": [{ "startOffset": 18716, "endOffset": 19037, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getMetadataKeys", + "ranges": [{ "startOffset": 20430, "endOffset": 20724, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getOwnMetadataKeys", + "ranges": [{ "startOffset": 22118, "endOffset": 22418, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "deleteMetadata", + "ranges": [{ "startOffset": 24025, "endOffset": 24686, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "DecorateConstructor", + "ranges": [{ "startOffset": 24747, "endOffset": 25234, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "DecorateProperty", + "ranges": [ + { "startOffset": 25243, "endOffset": 25780, "count": 181 }, + { "startOffset": 25546, "endOffset": 25567, "count": 0 }, + { "startOffset": 25569, "endOffset": 25725, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "OrdinaryHasMetadata", + "ranges": [{ "startOffset": 25923, "endOffset": 26282, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "OrdinaryHasOwnMetadata", + "ranges": [ + { "startOffset": 26431, "endOffset": 26716, "count": 362 }, + { "startOffset": 26624, "endOffset": 26715, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "OrdinaryGetMetadata", + "ranges": [ + { "startOffset": 26859, "endOffset": 27259, "count": 362 }, + { "startOffset": 27017, "endOffset": 27066, "count": 0 }, + { "startOffset": 27168, "endOffset": 27258, "count": 181 } + ], + "isBlockCoverage": true + }, + { + "functionName": "OrdinaryGetOwnMetadata", + "ranges": [{ "startOffset": 27408, "endOffset": 27676, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "OrdinaryDefineOwnMetadata", + "ranges": [{ "startOffset": 27846, "endOffset": 28079, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "OrdinaryMetadataKeys", + "ranges": [{ "startOffset": 28211, "endOffset": 29332, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "OrdinaryOwnMetadataKeys", + "ranges": [{ "startOffset": 29470, "endOffset": 29721, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Type", + "ranges": [ + { "startOffset": 29856, "endOffset": 30403, "count": 362 }, + { "startOffset": 29919, "endOffset": 29939, "count": 0 }, + { "startOffset": 29988, "endOffset": 30031, "count": 0 }, + { "startOffset": 30048, "endOffset": 30087, "count": 0 }, + { "startOffset": 30158, "endOffset": 30195, "count": 0 }, + { "startOffset": 30212, "endOffset": 30249, "count": 0 }, + { "startOffset": 30266, "endOffset": 30331, "count": 0 }, + { "startOffset": 30348, "endOffset": 30379, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "IsUndefined", + "ranges": [{ "startOffset": 30536, "endOffset": 30607, "count": 3987 }], + "isBlockCoverage": true + }, + { + "functionName": "IsNull", + "ranges": [{ "startOffset": 30730, "endOffset": 30791, "count": 543 }], + "isBlockCoverage": true + }, + { + "functionName": "IsSymbol", + "ranges": [{ "startOffset": 30918, "endOffset": 30992, "count": 362 }], + "isBlockCoverage": true + }, + { + "functionName": "IsObject", + "ranges": [ + { "startOffset": 31093, "endOffset": 31206, "count": 545 }, + { "startOffset": 31157, "endOffset": 31169, "count": 364 }, + { "startOffset": 31170, "endOffset": 31195, "count": 181 } + ], + "isBlockCoverage": true + }, + { + "functionName": "ToPrimitive", + "ranges": [ + { "startOffset": 31422, "endOffset": 32345, "count": 362 }, + { "startOffset": 31518, "endOffset": 31555, "count": 0 }, + { "startOffset": 31572, "endOffset": 31604, "count": 0 }, + { "startOffset": 31621, "endOffset": 31656, "count": 0 }, + { "startOffset": 31724, "endOffset": 31758, "count": 0 }, + { "startOffset": 31775, "endOffset": 31809, "count": 0 }, + { "startOffset": 31823, "endOffset": 31890, "count": 0 }, + { "startOffset": 31891, "endOffset": 31948, "count": 0 }, + { "startOffset": 32062, "endOffset": 32326, "count": 0 }, + { "startOffset": 32327, "endOffset": 32333, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "OrdinaryToPrimitive", + "ranges": [{ "startOffset": 32469, "endOffset": 33593, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ToBoolean", + "ranges": [{ "startOffset": 33701, "endOffset": 33772, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ToString", + "ranges": [{ "startOffset": 33874, "endOffset": 33947, "count": 362 }], + "isBlockCoverage": true + }, + { + "functionName": "ToPropertyKey", + "ranges": [ + { "startOffset": 34059, "endOffset": 34257, "count": 362 }, + { "startOffset": 34202, "endOffset": 34213, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "IsArray", + "ranges": [ + { "startOffset": 34486, "endOffset": 34777, "count": 181 }, + { "startOffset": 34606, "endOffset": 34766, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "IsCallable", + "ranges": [{ "startOffset": 34882, "endOffset": 35069, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "IsConstructor", + "ranges": [{ "startOffset": 35180, "endOffset": 35375, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "IsPropertyKey", + "ranges": [{ "startOffset": 35486, "endOffset": 35721, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "SameValueZero", + "ranges": [{ "startOffset": 35730, "endOffset": 35820, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "GetMethod", + "ranges": [{ "startOffset": 36025, "endOffset": 36276, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "GetIterator", + "ranges": [{ "startOffset": 36409, "endOffset": 36742, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "IteratorValue", + "ranges": [{ "startOffset": 36860, "endOffset": 36943, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "IteratorStep", + "ranges": [{ "startOffset": 37052, "endOffset": 37186, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "IteratorClose", + "ranges": [{ "startOffset": 37309, "endOffset": 37446, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "OrdinaryGetPrototypeOf", + "ranges": [ + { "startOffset": 37736, "endOffset": 39433, "count": 362 }, + { "startOffset": 37863, "endOffset": 37889, "count": 0 }, + { "startOffset": 37920, "endOffset": 38830, "count": 0 }, + { "startOffset": 38871, "endOffset": 38909, "count": 0 }, + { "startOffset": 38927, "endOffset": 39432, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "CreateMetadataRegistry", + "ranges": [ + { "startOffset": 39791, "endOffset": 44495, "count": 1 }, + { "startOffset": 40076, "endOffset": 40262, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "registerProvider", + "ranges": [ + { "startOffset": 40605, "endOffset": 41457, "count": 1 }, + { "startOffset": 40695, "endOffset": 40796, "count": 0 }, + { "startOffset": 40849, "endOffset": 40883, "count": 0 }, + { "startOffset": 41022, "endOffset": 41053, "count": 0 }, + { "startOffset": 41074, "endOffset": 41173, "count": 0 }, + { "startOffset": 41194, "endOffset": 41226, "count": 0 }, + { "startOffset": 41247, "endOffset": 41425, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "getProviderNoCache", + "ranges": [ + { "startOffset": 41470, "endOffset": 42699, "count": 362 }, + { "startOffset": 41624, "endOffset": 41637, "count": 0 }, + { "startOffset": 41684, "endOffset": 42500, "count": 0 }, + { "startOffset": 42562, "endOffset": 42593, "count": 0 }, + { "startOffset": 42595, "endOffset": 42651, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "getProvider", + "ranges": [ + { "startOffset": 42712, "endOffset": 43450, "count": 362 }, + { "startOffset": 42878, "endOffset": 42948, "count": 0 }, + { "startOffset": 42993, "endOffset": 43049, "count": 0 }, + { "startOffset": 43147, "endOffset": 43403, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "hasProvider", + "ranges": [{ "startOffset": 43463, "endOffset": 43705, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setProvider", + "ranges": [{ "startOffset": 43718, "endOffset": 44485, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "GetOrCreateMetadataRegistry", + "ranges": [{ "startOffset": 44598, "endOffset": 45409, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "CreateMetadataProvider", + "ranges": [{ "startOffset": 45418, "endOffset": 50796, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "isProviderFor", + "ranges": [ + { "startOffset": 45719, "endOffset": 45953, "count": 362 }, + { "startOffset": 45885, "endOffset": 45952, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "GetOrCreateMetadataMap", + "ranges": [{ "startOffset": 46396, "endOffset": 47529, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "OrdinaryHasOwnMetadata", + "ranges": [{ "startOffset": 47690, "endOffset": 47982, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "OrdinaryGetOwnMetadata", + "ranges": [{ "startOffset": 48143, "endOffset": 48428, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "OrdinaryDefineOwnMetadata", + "ranges": [{ "startOffset": 48610, "endOffset": 48836, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "OrdinaryOwnMetadataKeys", + "ranges": [{ "startOffset": 48986, "endOffset": 50034, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "OrdinaryDeleteMetadata", + "ranges": [{ "startOffset": 50047, "endOffset": 50786, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "CreateFallbackProvider", + "ranges": [{ "startOffset": 50805, "endOffset": 52208, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "GetMetadataProvider", + "ranges": [ + { "startOffset": 52444, "endOffset": 52940, "count": 362 }, + { "startOffset": 52612, "endOffset": 52670, "count": 0 }, + { "startOffset": 52695, "endOffset": 52900, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "CreateMapPolyfill", + "ranges": [{ "startOffset": 52975, "endOffset": 58860, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "CreateSetPolyfill", + "ranges": [{ "startOffset": 58895, "endOffset": 60143, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "CreateWeakMapPolyfill", + "ranges": [{ "startOffset": 60182, "endOffset": 63938, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "MakeDictionary", + "ranges": [{ "startOffset": 64038, "endOffset": 64161, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "266", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/gherkin/node_modules/@cucumber/messages/dist/cjs/src/getWorstTestStepResult.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1089, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "getWorstTestStepResult", + "ranges": [{ "startOffset": 297, "endOffset": 607, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ordinal", + "ranges": [{ "startOffset": 608, "endOffset": 1038, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "267", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/gherkin/node_modules/@cucumber/messages/dist/cjs/src/version.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 224, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "268", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/gherkin/dist/src/pickles/compile.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 8387, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "compile", + "ranges": [ + { "startOffset": 1571, "endOffset": 2603, "count": 1 }, + { "startOffset": 1684, "endOffset": 1715, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 1904, "endOffset": 2579, "count": 3 }, + { "startOffset": 1965, "endOffset": 2057, "count": 0 }, + { "startOffset": 2096, "endOffset": 2221, "count": 0 }, + { "startOffset": 2419, "endOffset": 2573, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "compileRule", + "ranges": [{ "startOffset": 2604, "endOffset": 3360, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "compileScenario", + "ranges": [{ "startOffset": 3361, "endOffset": 4402, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3614, "endOffset": 3855, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 3956, "endOffset": 4181, "count": 9 }, + { "startOffset": 4054, "endOffset": 4083, "count": 1 }, + { "startOffset": 4084, "endOffset": 4102, "count": 8 } + ], + "isBlockCoverage": true + }, + { + "functionName": "compileScenarioOutline", + "ranges": [{ "startOffset": 4403, "endOffset": 6048, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createPickleArguments", + "ranges": [ + { "startOffset": 6049, "endOffset": 6956, "count": 9 }, + { "startOffset": 6139, "endOffset": 6590, "count": 2 }, + { "startOffset": 6590, "endOffset": 6954, "count": 7 }, + { "startOffset": 6620, "endOffset": 6954, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6242, "endOffset": 6534, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6319, "endOffset": 6499, "count": 8 }], + "isBlockCoverage": true + }, + { + "functionName": "interpolate", + "ranges": [{ "startOffset": 6957, "endOffset": 7691, "count": 17 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 7039, "endOffset": 7670, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pickleStep", + "ranges": [ + { "startOffset": 7692, "endOffset": 8190, "count": 9 }, + { "startOffset": 7819, "endOffset": 7865, "count": 0 }, + { "startOffset": 7899, "endOffset": 7916, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "pickleTags", + "ranges": [{ "startOffset": 8191, "endOffset": 8252, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "pickleTag", + "ranges": [{ "startOffset": 8253, "endOffset": 8351, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "269", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/gherkin/dist/src/AstBuilder.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 11721, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 70, "endOffset": 151, "count": 1 }, + { "startOffset": 128, "endOffset": 148, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "AstBuilder", + "ranges": [ + { "startOffset": 372, "endOffset": 521, "count": 1 }, + { "startOffset": 441, "endOffset": 493, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "reset", + "ranges": [{ "startOffset": 526, "endOffset": 639, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "startRule", + "ranges": [{ "startOffset": 644, "endOffset": 729, "count": 20 }], + "isBlockCoverage": true + }, + { + "functionName": "endRule", + "ranges": [{ "startOffset": 734, "endOffset": 912, "count": 20 }], + "isBlockCoverage": true + }, + { + "functionName": "build", + "ranges": [ + { "startOffset": 917, "endOffset": 1239, "count": 21 }, + { "startOffset": 994, "endOffset": 1146, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "getResult", + "ranges": [{ "startOffset": 1244, "endOffset": 1343, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "currentNode", + "ranges": [{ "startOffset": 1348, "endOffset": 1419, "count": 42 }], + "isBlockCoverage": true + }, + { + "functionName": "getLocation", + "ranges": [ + { "startOffset": 1424, "endOffset": 1539, "count": 25 }, + { "startOffset": 1476, "endOffset": 1492, "count": 17 }, + { "startOffset": 1493, "endOffset": 1532, "count": 8 } + ], + "isBlockCoverage": true + }, + { + "functionName": "getTags", + "ranges": [ + { "startOffset": 1544, "endOffset": 2122, "count": 4 }, + { "startOffset": 1709, "endOffset": 2121, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "getCells", + "ranges": [{ "startOffset": 2127, "endOffset": 2340, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2199, "endOffset": 2332, "count": 8 }], + "isBlockCoverage": true + }, + { + "functionName": "getDescription", + "ranges": [{ "startOffset": 2345, "endOffset": 2441, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "getSteps", + "ranges": [{ "startOffset": 2446, "endOffset": 2522, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "getTableRows", + "ranges": [ + { "startOffset": 2527, "endOffset": 2849, "count": 2 }, + { "startOffset": 2831, "endOffset": 2835, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2617, "endOffset": 2759, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "ensureCellCount", + "ranges": [ + { "startOffset": 2854, "endOffset": 3219, "count": 2 }, + { "startOffset": 2909, "endOffset": 2940, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 3010, "endOffset": 3211, "count": 4 }, + { "startOffset": 3069, "endOffset": 3201, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "transformNode", + "ranges": [ + { "startOffset": 3224, "endOffset": 11650, "count": 20 }, + { "startOffset": 3291, "endOffset": 4026, "count": 9 }, + { "startOffset": 4039, "endOffset": 4904, "count": 0 }, + { "startOffset": 4917, "endOffset": 5183, "count": 2 }, + { "startOffset": 5196, "endOffset": 5816, "count": 0 }, + { "startOffset": 5829, "endOffset": 6747, "count": 3 }, + { "startOffset": 6760, "endOffset": 7718, "count": 0 }, + { "startOffset": 7731, "endOffset": 7832, "count": 0 }, + { "startOffset": 7845, "endOffset": 8326, "count": 0 }, + { "startOffset": 8339, "endOffset": 9933, "count": 1 }, + { "startOffset": 8482, "endOffset": 8534, "count": 0 }, + { "startOffset": 8705, "endOffset": 8757, "count": 0 }, + { "startOffset": 8908, "endOffset": 9023, "count": 0 }, + { "startOffset": 9116, "endOffset": 9229, "count": 3 }, + { "startOffset": 9304, "endOffset": 9413, "count": 0 }, + { "startOffset": 9946, "endOffset": 11266, "count": 0 }, + { "startOffset": 11279, "endOffset": 11584, "count": 1 }, + { "startOffset": 11597, "endOffset": 11634, "count": 4 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4410, "endOffset": 4430, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8271, "endOffset": 8299, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "270", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/gherkin/dist/src/AstNode.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 948, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "AstNode", + "ranges": [{ "startOffset": 97, "endOffset": 266, "count": 22 }], + "isBlockCoverage": true + }, + { + "functionName": "add", + "ranges": [ + { "startOffset": 338, "endOffset": 543, "count": 41 }, + { "startOffset": 433, "endOffset": 512, "count": 31 } + ], + "isBlockCoverage": true + }, + { + "functionName": "getSingle", + "ranges": [ + { "startOffset": 548, "endOffset": 630, "count": 33 }, + { "startOffset": 614, "endOffset": 619, "count": 25 } + ], + "isBlockCoverage": true + }, + { + "functionName": "getItems", + "ranges": [ + { "startOffset": 635, "endOffset": 711, "count": 8 }, + { "startOffset": 699, "endOffset": 704, "count": 4 } + ], + "isBlockCoverage": true + }, + { + "functionName": "getToken", + "ranges": [ + { "startOffset": 716, "endOffset": 799, "count": 13 }, + { "startOffset": 783, "endOffset": 788, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "getTokens", + "ranges": [ + { "startOffset": 804, "endOffset": 883, "count": 2 }, + { "startOffset": 871, "endOffset": 876, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "271", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/gherkin/dist/src/makeSourceEnvelope.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 1753, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "makeSourceEnvelope", + "ranges": [ + { "startOffset": 1204, "endOffset": 1706, "count": 2 }, + { "startOffset": 1381, "endOffset": 1502, "count": 0 }, + { "startOffset": 1531, "endOffset": 1597, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "272", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/gherkin/dist/src/GherkinInMarkdownTokenMatcher.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 11995, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 1097, "endOffset": 1178, "count": 1 }, + { "startOffset": 1149, "endOffset": 1154, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "addKeywordTypeMappings", + "ranges": [{ "startOffset": 1578, "endOffset": 1767, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "GherkinInMarkdownTokenMatcher", + "ranges": [{ "startOffset": 1810, "endOffset": 2962, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "changeDialect", + "ranges": [{ "startOffset": 2967, "endOffset": 3310, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "initializeKeywordTypes", + "ranges": [{ "startOffset": 3315, "endOffset": 3849, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "match_Language", + "ranges": [{ "startOffset": 4094, "endOffset": 4206, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "match_Empty", + "ranges": [{ "startOffset": 4211, "endOffset": 5081, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "match_Other", + "ranges": [{ "startOffset": 5086, "endOffset": 5414, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "match_Comment", + "ranges": [{ "startOffset": 5419, "endOffset": 5729, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "match_DocStringSeparator", + "ranges": [{ "startOffset": 5734, "endOffset": 6584, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "match_EOF", + "ranges": [{ "startOffset": 6589, "endOffset": 6819, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "match_FeatureLine", + "ranges": [{ "startOffset": 6824, "endOffset": 7645, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "match_BackgroundLine", + "ranges": [{ "startOffset": 7650, "endOffset": 7815, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "match_RuleLine", + "ranges": [{ "startOffset": 7820, "endOffset": 7967, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "match_ScenarioLine", + "ranges": [{ "startOffset": 7972, "endOffset": 8265, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "match_ExamplesLine", + "ranges": [{ "startOffset": 8270, "endOffset": 8429, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "match_StepLine", + "ranges": [{ "startOffset": 8434, "endOffset": 8587, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "matchTitleLine", + "ranges": [{ "startOffset": 8592, "endOffset": 9612, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setTokenMatched", + "ranges": [{ "startOffset": 9617, "endOffset": 9902, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "match_TableRow", + "ranges": [{ "startOffset": 9907, "endOffset": 10450, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isGfmTableSeparator", + "ranges": [{ "startOffset": 10455, "endOffset": 10675, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "match_TagLine", + "ranges": [{ "startOffset": 10680, "endOffset": 11214, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "reset", + "ranges": [{ "startOffset": 11219, "endOffset": 11431, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 11503, "endOffset": 11687, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "escapeRegExp", + "ranges": [{ "startOffset": 11845, "endOffset": 11937, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "273", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/version.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 194, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "274", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/formatter/builtin/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2289, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 70, "endOffset": 151, "count": 10 }, + { "startOffset": 128, "endOffset": 148, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "275", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/formatter/json_formatter.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 10621, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 760, "endOffset": 1368, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "ownKeys", + "ranges": [{ "startOffset": 792, "endOffset": 1056, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 1069, "endOffset": 1365, "count": 1 }, + { "startOffset": 1132, "endOffset": 1364, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 1429, "endOffset": 1510, "count": 1 }, + { "startOffset": 1487, "endOffset": 1507, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2198, "endOffset": 2415, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "JsonFormatter", + "ranges": [{ "startOffset": 2421, "endOffset": 2685, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "convertNameToId", + "ranges": [{ "startOffset": 2690, "endOffset": 2776, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "formatDataTable", + "ranges": [{ "startOffset": 2781, "endOffset": 2963, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "formatDocString", + "ranges": [{ "startOffset": 2968, "endOffset": 3138, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "formatStepArgument", + "ranges": [{ "startOffset": 3143, "endOffset": 3571, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "onTestRunFinished", + "ranges": [{ "startOffset": 3576, "endOffset": 6067, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getFeatureData", + "ranges": [{ "startOffset": 6072, "endOffset": 6442, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getScenarioData", + "ranges": [{ "startOffset": 6447, "endOffset": 7155, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "formatScenarioId", + "ranges": [{ "startOffset": 7160, "endOffset": 7563, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getStepData", + "ranges": [{ "startOffset": 7568, "endOffset": 9626, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getFeatureTags", + "ranges": [{ "startOffset": 9631, "endOffset": 9796, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getScenarioTags", + "ranges": [{ "startOffset": 9801, "endOffset": 10027, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getScenarioTag", + "ranges": [{ "startOffset": 10032, "endOffset": 10543, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "276", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/messages/dist/cjs/src/index.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 2640, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 88, "endOffset": 405, "count": 64 }, + { "startOffset": 232, "endOffset": 247, "count": 0 }, + { "startOffset": 264, "endOffset": 284, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 327, "endOffset": 354, "count": 103 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 760, "endOffset": 1368, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "ownKeys", + "ranges": [{ "startOffset": 792, "endOffset": 1056, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 1069, "endOffset": 1365, "count": 2 }, + { "startOffset": 1132, "endOffset": 1364, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__exportStar", + "ranges": [ + { "startOffset": 1423, "endOffset": 1574, "count": 1 }, + { "startOffset": 1467, "endOffset": 1572, "count": 64 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2102, "endOffset": 2158, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2319, "endOffset": 2393, "count": 45 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2509, "endOffset": 2553, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "277", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/messages/dist/cjs/src/TimeConversion.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1847, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "millisecondsSinceEpochToTimestamp", + "ranges": [{ "startOffset": 494, "endOffset": 618, "count": 38 }], + "isBlockCoverage": true + }, + { + "functionName": "millisecondsToDuration", + "ranges": [{ "startOffset": 619, "endOffset": 732, "count": 38 }], + "isBlockCoverage": true + }, + { + "functionName": "timestampToMillisecondsSinceEpoch", + "ranges": [{ "startOffset": 733, "endOffset": 889, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "durationToMilliseconds", + "ranges": [{ "startOffset": 890, "endOffset": 1032, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "addDurations", + "ranges": [ + { "startOffset": 1033, "endOffset": 1349, "count": 39 }, + { "startOffset": 1230, "endOffset": 1300, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "toSecondsAndNanos", + "ranges": [{ "startOffset": 1350, "endOffset": 1611, "count": 76 }], + "isBlockCoverage": true + }, + { + "functionName": "toMillis", + "ranges": [{ "startOffset": 1612, "endOffset": 1804, "count": 4 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "278", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/messages/dist/cjs/src/IdGenerator.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 379, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "uuid", + "ranges": [{ "startOffset": 165, "endOffset": 237, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 194, "endOffset": 234, "count": 67 }], + "isBlockCoverage": true + }, + { + "functionName": "incrementing", + "ranges": [{ "startOffset": 238, "endOffset": 339, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "279", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/messages/node_modules/uuid/dist/cjs/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2382, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 397, "endOffset": 437, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 541, "endOffset": 581, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 691, "endOffset": 733, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 855, "endOffset": 901, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1002, "endOffset": 1041, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1154, "endOffset": 1197, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1298, "endOffset": 1337, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1438, "endOffset": 1477, "count": 67 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1578, "endOffset": 1617, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1718, "endOffset": 1757, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1870, "endOffset": 1913, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2014, "endOffset": 2053, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2172, "endOffset": 2217, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2333, "endOffset": 2377, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "280", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/messages/node_modules/uuid/dist/cjs/max.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 135, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "281", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/messages/node_modules/uuid/dist/cjs/nil.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 135, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "282", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/messages/node_modules/uuid/dist/cjs/parse.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 720, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "parse", + "ranges": [{ "startOffset": 125, "endOffset": 694, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "283", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/messages/node_modules/uuid/dist/cjs/validate.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 245, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "validate", + "ranges": [{ "startOffset": 119, "endOffset": 216, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "284", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/messages/node_modules/uuid/dist/cjs/regex.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 251, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "285", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/messages/node_modules/uuid/dist/cjs/stringify.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 1271, "count": 1 }, + { "startOffset": 211, "endOffset": 269, "count": 256 } + ], + "isBlockCoverage": true + }, + { + "functionName": "unsafeStringify", + "ranges": [{ "startOffset": 270, "endOffset": 987, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stringify", + "ranges": [{ "startOffset": 1031, "endOffset": 1241, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "286", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/messages/node_modules/uuid/dist/cjs/v1.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2900, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "v1", + "ranges": [{ "startOffset": 216, "endOffset": 1027, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "updateV1State", + "ranges": [{ "startOffset": 1028, "endOffset": 1638, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "v1Bytes", + "ranges": [{ "startOffset": 1678, "endOffset": 2877, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "287", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/messages/node_modules/uuid/dist/cjs/rng.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 399, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "rng", + "ranges": [{ "startOffset": 184, "endOffset": 375, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "288", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/messages/node_modules/uuid/dist/cjs/v1ToV6.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 978, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "v1ToV6", + "ranges": [{ "startOffset": 169, "endOffset": 411, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_v1ToV6", + "ranges": [{ "startOffset": 438, "endOffset": 977, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "289", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/messages/node_modules/uuid/dist/cjs/v3.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 637, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 288, "endOffset": 324, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 392, "endOffset": 428, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "v3", + "ranges": [{ "startOffset": 433, "endOffset": 568, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "290", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/messages/node_modules/uuid/dist/cjs/md5.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 393, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "md5", + "ranges": [{ "startOffset": 113, "endOffset": 369, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "291", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/messages/node_modules/uuid/dist/cjs/v35.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1578, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "stringToBytes", + "ranges": [{ "startOffset": 229, "endOffset": 456, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "v35", + "ranges": [{ "startOffset": 604, "endOffset": 1554, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "292", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/messages/node_modules/uuid/dist/cjs/v4.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1047, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "v4", + "ranges": [ + { "startOffset": 209, "endOffset": 1024, "count": 67 }, + { "startOffset": 361, "endOffset": 389, "count": 0 }, + { "startOffset": 423, "endOffset": 441, "count": 0 }, + { "startOffset": 442, "endOffset": 468, "count": 0 }, + { "startOffset": 496, "endOffset": 1023, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "293", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/messages/node_modules/uuid/dist/cjs/native.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 168, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "294", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/messages/node_modules/uuid/dist/cjs/v5.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 640, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 290, "endOffset": 326, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 394, "endOffset": 430, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "v5", + "ranges": [{ "startOffset": 435, "endOffset": 571, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "295", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/messages/node_modules/uuid/dist/cjs/sha1.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 396, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "sha1", + "ranges": [{ "startOffset": 113, "endOffset": 371, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "296", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/messages/node_modules/uuid/dist/cjs/v6.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 620, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "v6", + "ranges": [{ "startOffset": 207, "endOffset": 597, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "297", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/messages/node_modules/uuid/dist/cjs/v6ToV1.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 978, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "v6ToV1", + "ranges": [{ "startOffset": 169, "endOffset": 411, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_v6ToV1", + "ranges": [{ "startOffset": 438, "endOffset": 977, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "298", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/messages/node_modules/uuid/dist/cjs/v7.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2346, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "v7", + "ranges": [{ "startOffset": 216, "endOffset": 697, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "updateV7State", + "ranges": [{ "startOffset": 698, "endOffset": 1082, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "v7Bytes", + "ranges": [{ "startOffset": 1122, "endOffset": 2323, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "299", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/messages/node_modules/uuid/dist/cjs/version.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 316, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "version", + "ranges": [{ "startOffset": 125, "endOffset": 288, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "300", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/messages/dist/cjs/src/parseEnvelope.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 622, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "parseEnvelope", + "ranges": [{ "startOffset": 433, "endOffset": 580, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "301", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/messages/dist/cjs/src/messages.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 30875, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__decorate", + "ranges": [ + { "startOffset": 60, "endOffset": 584, "count": 93 }, + { "startOffset": 143, "endOffset": 151, "count": 0 }, + { "startOffset": 168, "endOffset": 221, "count": 0 }, + { "startOffset": 364, "endOffset": 515, "count": 0 }, + { "startOffset": 538, "endOffset": 578, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2234, "endOffset": 2561, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Attachment", + "ranges": [{ "startOffset": 2252, "endOffset": 2401, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2457, "endOffset": 2487, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2629, "endOffset": 2747, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Duration", + "ranges": [{ "startOffset": 2647, "endOffset": 2724, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2811, "endOffset": 5658, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Envelope", + "ranges": [{ "startOffset": 2829, "endOffset": 2856, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2912, "endOffset": 2946, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3053, "endOffset": 3092, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3204, "endOffset": 3232, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3333, "endOffset": 3361, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3462, "endOffset": 3499, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3609, "endOffset": 3643, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3750, "endOffset": 3780, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3883, "endOffset": 3913, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4016, "endOffset": 4054, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4165, "endOffset": 4197, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4302, "endOffset": 4342, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4455, "endOffset": 4494, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4606, "endOffset": 4645, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4757, "endOffset": 4795, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4906, "endOffset": 4946, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5059, "endOffset": 5098, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5210, "endOffset": 5252, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5367, "endOffset": 5410, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5526, "endOffset": 5572, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5723, "endOffset": 5817, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Exception", + "ranges": [{ "startOffset": 5741, "endOffset": 5793, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5890, "endOffset": 6285, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "GherkinDocument", + "ranges": [{ "startOffset": 5908, "endOffset": 5970, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6026, "endOffset": 6057, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6168, "endOffset": 6199, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6365, "endOffset": 6877, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Background", + "ranges": [{ "startOffset": 6383, "endOffset": 6581, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6637, "endOffset": 6669, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6776, "endOffset": 6804, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6944, "endOffset": 7210, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Comment", + "ranges": [{ "startOffset": 6962, "endOffset": 7052, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 7108, "endOffset": 7140, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 7273, "endOffset": 7679, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "DataTable", + "ranges": [{ "startOffset": 7291, "endOffset": 7383, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 7439, "endOffset": 7471, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 7577, "endOffset": 7609, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 7746, "endOffset": 8050, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "DocString", + "ranges": [{ "startOffset": 7764, "endOffset": 7888, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 7944, "endOffset": 7976, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8116, "endOffset": 8924, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Examples", + "ranges": [{ "startOffset": 8134, "endOffset": 8358, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8414, "endOffset": 8446, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8551, "endOffset": 8578, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8679, "endOffset": 8711, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8819, "endOffset": 8851, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8987, "endOffset": 9658, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Feature", + "ranges": [{ "startOffset": 9005, "endOffset": 9233, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9289, "endOffset": 9321, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9425, "endOffset": 9452, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9552, "endOffset": 9588, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9724, "endOffset": 10219, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "FeatureChild", + "ranges": [{ "startOffset": 9742, "endOffset": 9773, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9829, "endOffset": 9857, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9962, "endOffset": 9996, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 10107, "endOffset": 10139, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 10287, "endOffset": 10934, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Rule", + "ranges": [{ "startOffset": 10305, "endOffset": 10524, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 10580, "endOffset": 10612, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 10713, "endOffset": 10740, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 10837, "endOffset": 10870, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 10991, "endOffset": 11341, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "RuleChild", + "ranges": [{ "startOffset": 11009, "endOffset": 11037, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 11093, "endOffset": 11127, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 11235, "endOffset": 11267, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 11407, "endOffset": 12228, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Scenario", + "ranges": [{ "startOffset": 11425, "endOffset": 11673, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 11729, "endOffset": 11761, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 11866, "endOffset": 11893, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 11994, "endOffset": 12022, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 12124, "endOffset": 12156, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 12288, "endOffset": 12864, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Step", + "ranges": [{ "startOffset": 12306, "endOffset": 12442, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 12498, "endOffset": 12530, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 12631, "endOffset": 12664, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 12766, "endOffset": 12799, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 12921, "endOffset": 13194, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "TableCell", + "ranges": [{ "startOffset": 12939, "endOffset": 13032, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 13088, "endOffset": 13120, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 13260, "endOffset": 13687, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "TableRow", + "ranges": [{ "startOffset": 13278, "endOffset": 13392, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 13448, "endOffset": 13480, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 13585, "endOffset": 13618, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 13746, "endOffset": 14022, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Tag", + "ranges": [{ "startOffset": 13764, "endOffset": 13872, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 13928, "endOffset": 13960, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 14072, "endOffset": 14355, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Hook", + "ranges": [{ "startOffset": 14090, "endOffset": 14189, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 14245, "endOffset": 14284, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 14411, "endOffset": 14502, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Location", + "ranges": [{ "startOffset": 14429, "endOffset": 14479, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 14562, "endOffset": 15450, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Meta", + "ranges": [{ "startOffset": 14580, "endOffset": 14788, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 14844, "endOffset": 14875, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 14982, "endOffset": 15013, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 15113, "endOffset": 15144, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 15239, "endOffset": 15270, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 15366, "endOffset": 15392, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 15500, "endOffset": 15701, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Ci", + "ranges": [{ "startOffset": 15518, "endOffset": 15563, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 15619, "endOffset": 15646, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 15748, "endOffset": 15860, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Git", + "ranges": [{ "startOffset": 15766, "endOffset": 15842, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 15913, "endOffset": 16003, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Product", + "ranges": [{ "startOffset": 15931, "endOffset": 15981, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 16070, "endOffset": 16479, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "ParameterType", + "ranges": [{ "startOffset": 16088, "endOffset": 16295, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 16351, "endOffset": 16390, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 16555, "endOffset": 16843, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "ParseError", + "ranges": [{ "startOffset": 16573, "endOffset": 16674, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 16730, "endOffset": 16769, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 16909, "endOffset": 17415, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Pickle", + "ranges": [{ "startOffset": 16927, "endOffset": 17128, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 17184, "endOffset": 17218, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 17318, "endOffset": 17351, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 17482, "endOffset": 17591, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "PickleDocString", + "ranges": [{ "startOffset": 17500, "endOffset": 17561, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 17671, "endOffset": 17968, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "PickleStep", + "ranges": [{ "startOffset": 17689, "endOffset": 17794, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 17850, "endOffset": 17892, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 18046, "endOffset": 18440, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "PickleStepArgument", + "ranges": [{ "startOffset": 18064, "endOffset": 18101, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 18157, "endOffset": 18196, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 18312, "endOffset": 18347, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 18527, "endOffset": 18767, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "PickleTable", + "ranges": [{ "startOffset": 18545, "endOffset": 18599, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 18655, "endOffset": 18693, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 18844, "endOffset": 18951, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "PickleTableCell", + "ranges": [{ "startOffset": 18862, "endOffset": 18921, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 19035, "endOffset": 19287, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "PickleTableRow", + "ranges": [{ "startOffset": 19053, "endOffset": 19111, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 19167, "endOffset": 19206, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 19364, "endOffset": 19487, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "PickleTag", + "ranges": [{ "startOffset": 19382, "endOffset": 19463, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 19551, "endOffset": 19734, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Source", + "ranges": [{ "startOffset": 19569, "endOffset": 19713, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 19801, "endOffset": 20345, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "SourceReference", + "ranges": [{ "startOffset": 19819, "endOffset": 19853, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 19909, "endOffset": 19943, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 20057, "endOffset": 20102, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 20227, "endOffset": 20259, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 20425, "endOffset": 20596, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "JavaMethod", + "ranges": [{ "startOffset": 20443, "endOffset": 20571, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 20677, "endOffset": 20858, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "JavaStackTraceElement", + "ranges": [{ "startOffset": 20695, "endOffset": 20822, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 20954, "endOffset": 21474, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "StepDefinition", + "ranges": [{ "startOffset": 20972, "endOffset": 21133, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 21189, "endOffset": 21234, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 21344, "endOffset": 21383, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 21563, "endOffset": 21750, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "StepDefinitionPattern", + "ranges": [{ "startOffset": 21581, "endOffset": 21714, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 21840, "endOffset": 22125, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "TestCase", + "ranges": [{ "startOffset": 21858, "endOffset": 21964, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 22020, "endOffset": 22052, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 22186, "endOffset": 22407, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Group", + "ranges": [{ "startOffset": 22204, "endOffset": 22256, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 22312, "endOffset": 22341, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 22474, "endOffset": 22734, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "StepMatchArgument", + "ranges": [{ "startOffset": 22492, "endOffset": 22562, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 22618, "endOffset": 22647, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 22830, "endOffset": 23134, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "StepMatchArgumentsList", + "ranges": [{ "startOffset": 22848, "endOffset": 22927, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 22983, "endOffset": 23024, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 23226, "endOffset": 23482, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "TestStep", + "ranges": [{ "startOffset": 23244, "endOffset": 23293, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 23349, "endOffset": 23395, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 23554, "endOffset": 23900, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "TestCaseFinished", + "ranges": [{ "startOffset": 23572, "endOffset": 23722, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 23778, "endOffset": 23811, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 23987, "endOffset": 24335, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "TestCaseStarted", + "ranges": [{ "startOffset": 24005, "endOffset": 24159, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 24215, "endOffset": 24248, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 24420, "endOffset": 24866, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "TestRunFinished", + "ranges": [{ "startOffset": 24438, "endOffset": 24544, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 24600, "endOffset": 24633, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 24746, "endOffset": 24779, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 24955, "endOffset": 25473, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "TestRunHookFinished", + "ranges": [{ "startOffset": 24973, "endOffset": 25137, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 25193, "endOffset": 25231, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 25345, "endOffset": 25378, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 25569, "endOffset": 25932, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "TestRunHookStarted", + "ranges": [{ "startOffset": 25587, "endOffset": 25750, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 25806, "endOffset": 25839, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 26022, "endOffset": 26289, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "TestRunStarted", + "ranges": [{ "startOffset": 26040, "endOffset": 26115, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 26171, "endOffset": 26204, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 26373, "endOffset": 26922, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "TestStepFinished", + "ranges": [{ "startOffset": 26391, "endOffset": 26587, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 26643, "endOffset": 26681, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 26800, "endOffset": 26833, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 27008, "endOffset": 27468, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "TestStepResult", + "ranges": [{ "startOffset": 27026, "endOffset": 27151, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 27207, "endOffset": 27239, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 27350, "endOffset": 27383, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 27551, "endOffset": 27888, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "TestStepStarted", + "ranges": [{ "startOffset": 27569, "endOffset": 27712, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 27768, "endOffset": 27801, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 27967, "endOffset": 28087, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Timestamp", + "ranges": [{ "startOffset": 27985, "endOffset": 28063, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 28167, "endOffset": 28317, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "UndefinedParameterType", + "ranges": [{ "startOffset": 28185, "endOffset": 28280, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 28411, "endOffset": 28559, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 28676, "endOffset": 29019, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 29091, "endOffset": 29290, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 29381, "endOffset": 29593, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 29697, "endOffset": 29891, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 30015, "endOffset": 30271, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 30370, "endOffset": 30752, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "302", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/messages/dist/cjs/src/getWorstTestStepResult.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1089, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "getWorstTestStepResult", + "ranges": [ + { "startOffset": 297, "endOffset": 607, "count": 45 }, + { "startOffset": 463, "endOffset": 603, "count": 9 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 389, "endOffset": 458, "count": 73 }], + "isBlockCoverage": true + }, + { + "functionName": "ordinal", + "ranges": [{ "startOffset": 608, "endOffset": 1038, "count": 146 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "303", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/messages/dist/cjs/src/version.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 224, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "304", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/value_checker.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 535, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "doesHaveValue", + "ranges": [{ "startOffset": 202, "endOffset": 272, "count": 1070 }], + "isBlockCoverage": true + }, + { + "functionName": "doesNotHaveValue", + "ranges": [ + { "startOffset": 273, "endOffset": 359, "count": 1095 }, + { "startOffset": 334, "endOffset": 356, "count": 970 } + ], + "isBlockCoverage": true + }, + { + "functionName": "valueOrDefault", + "ranges": [ + { "startOffset": 360, "endOffset": 493, "count": 52 }, + { "startOffset": 437, "endOffset": 466, "count": 34 }, + { "startOffset": 466, "endOffset": 492, "count": 18 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "305", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/step_arguments.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 781, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 70, "endOffset": 151, "count": 1 }, + { "startOffset": 122, "endOffset": 127, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "parseStepArgument", + "ranges": [ + { "startOffset": 374, "endOffset": 738, "count": 2 }, + { "startOffset": 532, "endOffset": 737, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "306", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/formatter/helpers/index.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 4019, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 760, "endOffset": 1368, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "ownKeys", + "ranges": [{ "startOffset": 792, "endOffset": 1056, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 1069, "endOffset": 1365, "count": 2 }, + { "startOffset": 1132, "endOffset": 1364, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 1429, "endOffset": 1510, "count": 1 }, + { "startOffset": 1487, "endOffset": 1507, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2286, "endOffset": 2357, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2504, "endOffset": 2575, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2699, "endOffset": 2749, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2832, "endOffset": 2889, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3015, "endOffset": 3066, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3140, "endOffset": 3189, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3263, "endOffset": 3312, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3384, "endOffset": 3431, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3566, "endOffset": 3623, "count": 17 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3755, "endOffset": 3810, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3933, "endOffset": 3981, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "307", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/formatter/helpers/gherkin_document_parser.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2429, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "getGherkinStepMap", + "ranges": [{ "startOffset": 367, "endOffset": 623, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "extractStepContainers", + "ranges": [{ "startOffset": 624, "endOffset": 1049, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getGherkinScenarioMap", + "ranges": [{ "startOffset": 1050, "endOffset": 1491, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getGherkinExampleRuleMap", + "ranges": [{ "startOffset": 1492, "endOffset": 1851, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getGherkinScenarioLocationMap", + "ranges": [{ "startOffset": 1852, "endOffset": 2377, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "308", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/formatter/helpers/pickle_parser.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1181, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "getScenarioDescription", + "ranges": [{ "startOffset": 339, "endOffset": 531, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getStepKeyword", + "ranges": [{ "startOffset": 532, "endOffset": 712, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getPickleStepMap", + "ranges": [{ "startOffset": 713, "endOffset": 872, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getPickleLocation", + "ranges": [{ "startOffset": 873, "endOffset": 1139, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "309", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/formatter/helpers/test_case_attempt_parser.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 6258, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 760, "endOffset": 1368, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "ownKeys", + "ranges": [{ "startOffset": 792, "endOffset": 1056, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 1069, "endOffset": 1365, "count": 1 }, + { "startOffset": 1132, "endOffset": 1364, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "parseStep", + "ranges": [{ "startOffset": 1831, "endOffset": 3768, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseTestCaseAttempt", + "ranges": [{ "startOffset": 3879, "endOffset": 6205, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "310", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/formatter/helpers/keyword_type.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1204, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 278, "endOffset": 430, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "getStepKeywordType", + "ranges": [{ "startOffset": 490, "endOffset": 1163, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "311", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/formatter/helpers/event_data_collector.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 6000, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 760, "endOffset": 1368, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "ownKeys", + "ranges": [{ "startOffset": 792, "endOffset": 1056, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 1069, "endOffset": 1365, "count": 1 }, + { "startOffset": 1132, "endOffset": 1364, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1585, "endOffset": 1717, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "EventDataCollector", + "ranges": [{ "startOffset": 1723, "endOffset": 1832, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "getGherkinDocument", + "ranges": [{ "startOffset": 1837, "endOffset": 1913, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getPickle", + "ranges": [{ "startOffset": 1918, "endOffset": 1986, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getTestCaseAttempts", + "ranges": [{ "startOffset": 1991, "endOffset": 2180, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2075, "endOffset": 2172, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "getTestCaseAttempt", + "ranges": [{ "startOffset": 2185, "endOffset": 2893, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "parseEnvelope", + "ranges": [ + { "startOffset": 2898, "endOffset": 4217, "count": 64 }, + { "startOffset": 2998, "endOffset": 3119, "count": 1 }, + { "startOffset": 3119, "endOffset": 4211, "count": 63 }, + { "startOffset": 3190, "endOffset": 3267, "count": 3 }, + { "startOffset": 3267, "endOffset": 4211, "count": 60 }, + { "startOffset": 3354, "endOffset": 3445, "count": 0 }, + { "startOffset": 3518, "endOffset": 3601, "count": 3 }, + { "startOffset": 3601, "endOffset": 4211, "count": 57 }, + { "startOffset": 3681, "endOffset": 3756, "count": 3 }, + { "startOffset": 3756, "endOffset": 4211, "count": 54 }, + { "startOffset": 3831, "endOffset": 3897, "count": 0 }, + { "startOffset": 3978, "endOffset": 4054, "count": 15 }, + { "startOffset": 4054, "endOffset": 4211, "count": 39 }, + { "startOffset": 4135, "endOffset": 4211, "count": 3 } + ], + "isBlockCoverage": true + }, + { + "functionName": "initTestCaseAttempt", + "ranges": [{ "startOffset": 4222, "endOffset": 4696, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "storeAttachment", + "ranges": [{ "startOffset": 4701, "endOffset": 5323, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "storeTestStepResult", + "ranges": [{ "startOffset": 5328, "endOffset": 5516, "count": 15 }], + "isBlockCoverage": true + }, + { + "functionName": "storeTestCaseResult", + "ranges": [{ "startOffset": 5521, "endOffset": 5911, "count": 3 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "312", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/formatter/helpers/issue_helpers.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2386, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 70, "endOffset": 151, "count": 1 }, + { "startOffset": 122, "endOffset": 127, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "isFailure", + "ranges": [ + { "startOffset": 627, "endOffset": 823, "count": 3 }, + { "startOffset": 801, "endOffset": 818, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "isWarning", + "ranges": [ + { "startOffset": 824, "endOffset": 968, "count": 3 }, + { "startOffset": 947, "endOffset": 963, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "isIssue", + "ranges": [{ "startOffset": 969, "endOffset": 1048, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "formatIssue", + "ranges": [{ "startOffset": 1049, "endOffset": 1740, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "formatUndefinedParameterTypes", + "ranges": [{ "startOffset": 1741, "endOffset": 2212, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "formatUndefinedParameterType", + "ranges": [{ "startOffset": 2213, "endOffset": 2344, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "313", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/indent-string/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 743, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "module.exports", + "ranges": [{ "startOffset": 32, "endOffset": 741, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "314", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/formatter/helpers/test_case_attempt_formatter.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5531, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 760, "endOffset": 1368, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "ownKeys", + "ranges": [{ "startOffset": 792, "endOffset": 1056, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 1069, "endOffset": 1365, "count": 1 }, + { "startOffset": 1132, "endOffset": 1364, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 1429, "endOffset": 1510, "count": 2 }, + { "startOffset": 1481, "endOffset": 1486, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "getStepMessage", + "ranges": [{ "startOffset": 2468, "endOffset": 2988, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "formatStep", + "ranges": [{ "startOffset": 2989, "endOffset": 4518, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "formatTestCaseAttempt", + "ranges": [{ "startOffset": 4519, "endOffset": 5194, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getAttemptText", + "ranges": [{ "startOffset": 5195, "endOffset": 5475, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "315", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/figures/index.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 2785, "count": 1 }, + { "startOffset": 2254, "endOffset": 2340, "count": 0 }, + { "startOffset": 2379, "endOffset": 2388, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "fn", + "ranges": [{ "startOffset": 2409, "endOffset": 2675, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "316", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/escape-string-regexp/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 226, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "module.exports", + "ranges": [{ "startOffset": 79, "endOffset": 224, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "317", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/formatter/helpers/location_helpers.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 632, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 70, "endOffset": 151, "count": 1 }, + { "startOffset": 122, "endOffset": 127, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "formatLocation", + "ranges": [ + { "startOffset": 372, "endOffset": 587, "count": 17 }, + { "startOffset": 480, "endOffset": 541, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "318", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/formatter/helpers/step_argument_formatter.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1512, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 70, "endOffset": 151, "count": 1 }, + { "startOffset": 122, "endOffset": 127, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "formatDataTable", + "ranges": [{ "startOffset": 384, "endOffset": 1200, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "formatDocString", + "ranges": [{ "startOffset": 1201, "endOffset": 1285, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "formatStepArgument", + "ranges": [{ "startOffset": 1286, "endOffset": 1460, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "319", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/cli-table3/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 40, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "320", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/cli-table3/src/table.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2673, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Table", + "ranges": [{ "startOffset": 148, "endOffset": 991, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toString", + "ranges": [{ "startOffset": 995, "endOffset": 2323, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get width", + "ranges": [{ "startOffset": 2327, "endOffset": 2413, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Table.reset", + "ranges": [{ "startOffset": 2431, "endOffset": 2450, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "doDraw", + "ranges": [{ "startOffset": 2453, "endOffset": 2647, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "321", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/cli-table3/src/debug.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 464, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "debug", + "ranges": [{ "startOffset": 49, "endOffset": 116, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "debug.reset", + "ranges": [{ "startOffset": 183, "endOffset": 209, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "debug.setDebugLevel", + "ranges": [{ "startOffset": 234, "endOffset": 257, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "debug.warn", + "ranges": [{ "startOffset": 273, "endOffset": 304, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "debug.info", + "ranges": [{ "startOffset": 319, "endOffset": 350, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "debug.debug", + "ranges": [{ "startOffset": 366, "endOffset": 398, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "debug.debugMessages", + "ranges": [{ "startOffset": 423, "endOffset": 437, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "322", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/cli-table3/src/utils.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 8251, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "codeRegex", + "ranges": [{ "startOffset": 46, "endOffset": 159, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "strlen", + "ranges": [{ "startOffset": 161, "endOffset": 404, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "repeat", + "ranges": [{ "startOffset": 406, "endOffset": 474, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pad", + "ranges": [{ "startOffset": 476, "endOffset": 992, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addToCodeCache", + "ranges": [{ "startOffset": 1015, "endOffset": 1247, "count": 5 }], + "isBlockCoverage": true + }, + { + "functionName": "updateState", + "ranges": [{ "startOffset": 1488, "endOffset": 2228, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readState", + "ranges": [{ "startOffset": 2230, "endOffset": 2472, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "unwindState", + "ranges": [{ "startOffset": 2474, "endOffset": 3017, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "rewindState", + "ranges": [{ "startOffset": 3019, "endOffset": 3590, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "truncateWidth", + "ranges": [{ "startOffset": 3592, "endOffset": 3807, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "truncateWidthWithAnsi", + "ranges": [{ "startOffset": 3809, "endOffset": 4553, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "truncate", + "ranges": [{ "startOffset": 4555, "endOffset": 4992, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "defaultOptions", + "ranges": [{ "startOffset": 4994, "endOffset": 5628, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mergeOptions", + "ranges": [{ "startOffset": 5630, "endOffset": 5936, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "wordWrap", + "ranges": [{ "startOffset": 5963, "endOffset": 6672, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "textWrap", + "ranges": [{ "startOffset": 6714, "endOffset": 7186, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "multiLineWordWrap", + "ranges": [{ "startOffset": 7188, "endOffset": 7496, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "colorizeLines", + "ranges": [{ "startOffset": 7498, "endOffset": 7789, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hyperlink", + "ranges": [{ "startOffset": 7860, "endOffset": 8051, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "323", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/string-width/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 923, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "stringWidth", + "ranges": [{ "startOffset": 184, "endOffset": 805, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "324", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/string-width/node_modules/strip-ansi/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 154, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "module.exports", + "ranges": [{ "startOffset": 73, "endOffset": 152, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "325", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/string-width/node_modules/ansi-regex/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 350, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "module.exports", + "ranges": [{ "startOffset": 32, "endOffset": 348, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "326", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/is-fullwidth-code-point/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1756, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "isFullwidthCodePoint", + "ranges": [{ "startOffset": 70, "endOffset": 1667, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "327", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/string-width/node_modules/emoji-regex/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 10286, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "module.exports", + "ranges": [{ "startOffset": 32, "endOffset": 10284, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "328", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/cli-table3/src/layout-manager.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 7053, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 121, "endOffset": 5171, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "next", + "ranges": [{ "startOffset": 137, "endOffset": 251, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "layoutTable", + "ranges": [{ "startOffset": 255, "endOffset": 941, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "maxWidth", + "ranges": [{ "startOffset": 945, "endOffset": 1152, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "maxHeight", + "ranges": [{ "startOffset": 1156, "endOffset": 1212, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cellsConflict", + "ranges": [{ "startOffset": 1216, "endOffset": 1713, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "conflictExists", + "ranges": [{ "startOffset": 1717, "endOffset": 2052, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "allBlank", + "ranges": [{ "startOffset": 2056, "endOffset": 2233, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addRowSpanCells", + "ranges": [{ "startOffset": 2237, "endOffset": 2657, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addColSpanCells", + "ranges": [{ "startOffset": 2661, "endOffset": 3202, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "insertCell", + "ranges": [{ "startOffset": 3206, "endOffset": 3352, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fillInTable", + "ranges": [{ "startOffset": 3356, "endOffset": 4204, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "generateCells", + "ranges": [{ "startOffset": 4208, "endOffset": 4617, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "makeTableLayout", + "ranges": [{ "startOffset": 4621, "endOffset": 4834, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "makeComputeWidths", + "ranges": [{ "startOffset": 5177, "endOffset": 7052, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5252, "endOffset": 7049, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "329", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/cli-table3/src/cell.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 13666, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Cell", + "ranges": [{ "startOffset": 337, "endOffset": 586, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setOptions", + "ranges": [{ "startOffset": 590, "endOffset": 1370, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mergeTableOptions", + "ranges": [{ "startOffset": 1374, "endOffset": 2303, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "computeLines", + "ranges": [{ "startOffset": 2307, "endOffset": 3063, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "wrapLines", + "ranges": [{ "startOffset": 3067, "endOffset": 3264, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "init", + "ranges": [{ "startOffset": 3675, "endOffset": 4197, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "draw", + "ranges": [{ "startOffset": 4659, "endOffset": 5704, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "drawTop", + "ranges": [{ "startOffset": 5868, "endOffset": 6524, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_topLeftChar", + "ranges": [{ "startOffset": 6528, "endOffset": 7464, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "wrapWithStyleColors", + "ranges": [{ "startOffset": 7468, "endOffset": 7897, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "drawLine", + "ranges": [{ "startOffset": 8642, "endOffset": 9663, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stylizeLine", + "ranges": [{ "startOffset": 9667, "endOffset": 9938, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "drawBottom", + "ranges": [{ "startOffset": 10105, "endOffset": 10395, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "drawEmpty", + "ranges": [{ "startOffset": 10726, "endOffset": 11312, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ColSpanCell", + "ranges": [{ "startOffset": 11480, "endOffset": 11496, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "draw", + "ranges": [{ "startOffset": 11500, "endOffset": 11632, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "init", + "ranges": [{ "startOffset": 11636, "endOffset": 11645, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mergeTableOptions", + "ranges": [{ "startOffset": 11649, "endOffset": 11671, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "RowSpanCell", + "ranges": [{ "startOffset": 11896, "endOffset": 11965, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "init", + "ranges": [{ "startOffset": 11969, "endOffset": 12177, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "draw", + "ranges": [{ "startOffset": 12181, "endOffset": 12545, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mergeTableOptions", + "ranges": [{ "startOffset": 12549, "endOffset": 12571, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "firstDefined", + "ranges": [{ "startOffset": 12575, "endOffset": 12677, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setOption", + "ranges": [{ "startOffset": 12699, "endOffset": 13074, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "findDimension", + "ranges": [{ "startOffset": 13076, "endOffset": 13285, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "sumPlusOne", + "ranges": [{ "startOffset": 13287, "endOffset": 13336, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "330", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/formatter/helpers/summary_helpers.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 4343, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 760, "endOffset": 1368, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "ownKeys", + "ranges": [{ "startOffset": 792, "endOffset": 1056, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 1069, "endOffset": 1365, "count": 1 }, + { "startOffset": 1132, "endOffset": 1364, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "formatSummary", + "ranges": [{ "startOffset": 1963, "endOffset": 3263, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2210, "endOffset": 2800, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2322, "endOffset": 2459, "count": 15 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 2586, "endOffset": 2782, "count": 15 }, + { "startOffset": 2681, "endOffset": 2768, "count": 9 } + ], + "isBlockCoverage": true + }, + { + "functionName": "getCountSummary", + "ranges": [ + { "startOffset": 3264, "endOffset": 3942, "count": 2 }, + { "startOffset": 3583, "endOffset": 3587, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3376, "endOffset": 3398, "count": 14 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3421, "endOffset": 3451, "count": 12 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3501, "endOffset": 3520, "count": 14 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 3682, "endOffset": 3871, "count": 14 }, + { "startOffset": 3732, "endOffset": 3861, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "getDurationSummary", + "ranges": [{ "startOffset": 3943, "endOffset": 4299, "count": 2 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "331", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/node_modules/luxon/build/node/luxon.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 256286, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "InvalidDateTimeError", + "ranges": [{ "startOffset": 280, "endOffset": 359, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "InvalidIntervalError", + "ranges": [{ "startOffset": 433, "endOffset": 512, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "InvalidDurationError", + "ranges": [{ "startOffset": 586, "endOffset": 665, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "InvalidUnitError", + "ranges": [{ "startOffset": 814, "endOffset": 872, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZoneIsAbstractError", + "ranges": [{ "startOffset": 1015, "endOffset": 1074, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get type", + "ranges": [{ "startOffset": 3236, "endOffset": 3289, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get name", + "ranges": [{ "startOffset": 3368, "endOffset": 3421, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get ianaName", + "ranges": [{ "startOffset": 3563, "endOffset": 3605, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get isUniversal", + "ranges": [{ "startOffset": 3730, "endOffset": 3790, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "offsetName", + "ranges": [{ "startOffset": 4221, "endOffset": 4284, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "formatOffset", + "ranges": [{ "startOffset": 4636, "endOffset": 4703, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "offset", + "ranges": [{ "startOffset": 4909, "endOffset": 4962, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "equals", + "ranges": [{ "startOffset": 5122, "endOffset": 5182, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get isValid", + "ranges": [{ "startOffset": 5274, "endOffset": 5330, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get instance", + "ranges": [ + { "startOffset": 5578, "endOffset": 5698, "count": 8 }, + { "startOffset": 5625, "endOffset": 5670, "count": 1 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get type", + "ranges": [{ "startOffset": 5722, "endOffset": 5759, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get name", + "ranges": [{ "startOffset": 5783, "endOffset": 5864, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get isUniversal", + "ranges": [{ "startOffset": 5888, "endOffset": 5929, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "offsetName", + "ranges": [{ "startOffset": 5953, "endOffset": 6049, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "formatOffset", + "ranges": [{ "startOffset": 6073, "endOffset": 6153, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "offset", + "ranges": [{ "startOffset": 6177, "endOffset": 6239, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "equals", + "ranges": [{ "startOffset": 6263, "endOffset": 6326, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get isValid", + "ranges": [{ "startOffset": 6350, "endOffset": 6386, "count": 8 }], + "isBlockCoverage": true + }, + { + "functionName": "makeDTF", + "ranges": [{ "startOffset": 6418, "endOffset": 6823, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hackyOffset", + "ranges": [{ "startOffset": 6926, "endOffset": 7240, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "partsOffset", + "ranges": [{ "startOffset": 7241, "endOffset": 7637, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 7880, "endOffset": 8049, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resetCache", + "ranges": [{ "startOffset": 8164, "endOffset": 8231, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isValidSpecifier", + "ranges": [{ "startOffset": 8766, "endOffset": 8823, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isValidZone", + "ranges": [{ "startOffset": 9173, "endOffset": 9395, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "IANAZone", + "ranges": [{ "startOffset": 9398, "endOffset": 9547, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get type", + "ranges": [{ "startOffset": 9661, "endOffset": 9696, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get name", + "ranges": [{ "startOffset": 9801, "endOffset": 9843, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get isUniversal", + "ranges": [{ "startOffset": 10014, "endOffset": 10055, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "offsetName", + "ranges": [{ "startOffset": 10486, "endOffset": 10593, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "formatOffset", + "ranges": [{ "startOffset": 10945, "endOffset": 11025, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "offset", + "ranges": [{ "startOffset": 11231, "endOffset": 12053, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "equals", + "ranges": [{ "startOffset": 12213, "endOffset": 12306, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get isValid", + "ranges": [{ "startOffset": 12398, "endOffset": 12440, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getCachedLF", + "ranges": [{ "startOffset": 12491, "endOffset": 12724, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getCachedDTF", + "ranges": [{ "startOffset": 12756, "endOffset": 13014, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getCachedINF", + "ranges": [{ "startOffset": 13047, "endOffset": 13305, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getCachedRTF", + "ranges": [{ "startOffset": 13338, "endOffset": 13697, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "systemLocale", + "ranges": [ + { "startOffset": 13725, "endOffset": 13918, "count": 4 }, + { "startOffset": 13773, "endOffset": 13805, "count": 3 }, + { "startOffset": 13805, "endOffset": 13916, "count": 1 } + ], + "isBlockCoverage": true + }, + { + "functionName": "getCachedIntResolvedOptions", + "ranges": [{ "startOffset": 13963, "endOffset": 14231, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getCachedWeekInfo", + "ranges": [{ "startOffset": 14265, "endOffset": 14869, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseLocaleString", + "ranges": [ + { "startOffset": 14870, "endOffset": 16016, "count": 8 }, + { "startOffset": 15434, "endOffset": 15487, "count": 0 }, + { "startOffset": 15581, "endOffset": 16014, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "intlConfigString", + "ranges": [ + { "startOffset": 16017, "endOffset": 16415, "count": 8 }, + { "startOffset": 16130, "endOffset": 16380, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "mapMonths", + "ranges": [{ "startOffset": 16416, "endOffset": 16570, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mapWeekdays", + "ranges": [{ "startOffset": 16571, "endOffset": 16732, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "listStuff", + "ranges": [{ "startOffset": 16733, "endOffset": 16966, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "supportsFastNumbers", + "ranges": [ + { "startOffset": 16967, "endOffset": 17259, "count": 2 }, + { "startOffset": 17029, "endOffset": 17062, "count": 0 }, + { "startOffset": 17064, "endOffset": 17087, "count": 0 }, + { "startOffset": 17183, "endOffset": 17252, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "PolyNumberFormatter", + "ranges": [ + { "startOffset": 17312, "endOffset": 17759, "count": 6 }, + { "startOffset": 17379, "endOffset": 17383, "count": 0 }, + { "startOffset": 17413, "endOffset": 17421, "count": 0 }, + { "startOffset": 17553, "endOffset": 17755, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "format", + "ranges": [ + { "startOffset": 17762, "endOffset": 18068, "count": 6 }, + { "startOffset": 17792, "endOffset": 17888, "count": 0 }, + { "startOffset": 18000, "endOffset": 18015, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "PolyDateFormatter", + "ranges": [{ "startOffset": 18121, "endOffset": 19997, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "format", + "ranges": [{ "startOffset": 20000, "endOffset": 20316, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "formatToParts", + "ranges": [{ "startOffset": 20319, "endOffset": 20840, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolvedOptions", + "ranges": [{ "startOffset": 20843, "endOffset": 20905, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "PolyRelFormatter", + "ranges": [{ "startOffset": 20956, "endOffset": 21144, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "format", + "ranges": [{ "startOffset": 21147, "endOffset": 21347, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "formatToParts", + "ranges": [{ "startOffset": 21350, "endOffset": 21488, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fromOpts", + "ranges": [{ "startOffset": 21621, "endOffset": 21760, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [ + { "startOffset": 21770, "endOffset": 22465, "count": 8 }, + { "startOffset": 21890, "endOffset": 21915, "count": 4 }, + { "startOffset": 22065, "endOffset": 22108, "count": 4 }, + { "startOffset": 22081, "endOffset": 22090, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "resetCache", + "ranges": [{ "startOffset": 22475, "endOffset": 22662, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fromObject", + "ranges": [{ "startOffset": 22672, "endOffset": 22851, "count": 8 }], + "isBlockCoverage": true + }, + { + "functionName": "Locale", + "ranges": [{ "startOffset": 22854, "endOffset": 23619, "count": 8 }], + "isBlockCoverage": true + }, + { + "functionName": "get fastNumbers", + "ranges": [ + { "startOffset": 23622, "endOffset": 23786, "count": 6 }, + { "startOffset": 23682, "endOffset": 23747, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "listingMode", + "ranges": [{ "startOffset": 23789, "endOffset": 24076, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "clone", + "ranges": [ + { "startOffset": 24079, "endOffset": 24444, "count": 6 }, + { "startOffset": 24107, "endOffset": 24155, "count": 0 }, + { "startOffset": 24183, "endOffset": 24440, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "redefaultToEN", + "ranges": [{ "startOffset": 24447, "endOffset": 24548, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "redefaultToSystem", + "ranges": [{ "startOffset": 24551, "endOffset": 24657, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "months", + "ranges": [{ "startOffset": 24660, "endOffset": 25142, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "weekdays", + "ranges": [{ "startOffset": 25145, "endOffset": 25697, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "meridiems", + "ranges": [{ "startOffset": 25700, "endOffset": 26273, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "eras", + "ranges": [{ "startOffset": 26276, "endOffset": 26783, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "extract", + "ranges": [{ "startOffset": 26786, "endOffset": 27016, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "numberFormatter", + "ranges": [{ "startOffset": 27019, "endOffset": 27319, "count": 6 }], + "isBlockCoverage": true + }, + { + "functionName": "dtFormatter", + "ranges": [{ "startOffset": 27322, "endOffset": 27417, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "relFormatter", + "ranges": [{ "startOffset": 27420, "endOffset": 27517, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "listFormatter", + "ranges": [{ "startOffset": 27520, "endOffset": 27591, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isEnglish", + "ranges": [{ "startOffset": 27594, "endOffset": 27754, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getWeekSettings", + "ranges": [{ "startOffset": 27757, "endOffset": 27979, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getStartOfWeek", + "ranges": [{ "startOffset": 27982, "endOffset": 28048, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getMinDaysInFirstWeek", + "ranges": [{ "startOffset": 28051, "endOffset": 28127, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getWeekendDays", + "ranges": [{ "startOffset": 28130, "endOffset": 28195, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "equals", + "ranges": [{ "startOffset": 28198, "endOffset": 28356, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toString", + "ranges": [{ "startOffset": 28359, "endOffset": 28461, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get utcInstance", + "ranges": [{ "startOffset": 28691, "endOffset": 28814, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "instance", + "ranges": [{ "startOffset": 28965, "endOffset": 29072, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseSpecifier", + "ranges": [{ "startOffset": 29423, "endOffset": 29633, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "FixedOffsetZone", + "ranges": [{ "startOffset": 29636, "endOffset": 29720, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get type", + "ranges": [{ "startOffset": 29842, "endOffset": 29878, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get name", + "ranges": [{ "startOffset": 30032, "endOffset": 30130, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get ianaName", + "ranges": [{ "startOffset": 30252, "endOffset": 30405, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "offsetName", + "ranges": [{ "startOffset": 30565, "endOffset": 30605, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "formatOffset", + "ranges": [{ "startOffset": 30957, "endOffset": 31032, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get isUniversal", + "ranges": [{ "startOffset": 31210, "endOffset": 31250, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "offset", + "ranges": [{ "startOffset": 31466, "endOffset": 31503, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "equals", + "ranges": [{ "startOffset": 31697, "endOffset": 31793, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get isValid", + "ranges": [{ "startOffset": 31924, "endOffset": 31960, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "InvalidZone", + "ranges": [{ "startOffset": 32104, "endOffset": 32195, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get type", + "ranges": [{ "startOffset": 32219, "endOffset": 32257, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get name", + "ranges": [{ "startOffset": 32281, "endOffset": 32323, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get isUniversal", + "ranges": [{ "startOffset": 32347, "endOffset": 32388, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "offsetName", + "ranges": [{ "startOffset": 32412, "endOffset": 32447, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "formatOffset", + "ranges": [{ "startOffset": 32471, "endOffset": 32506, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "offset", + "ranges": [{ "startOffset": 32530, "endOffset": 32560, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "equals", + "ranges": [{ "startOffset": 32584, "endOffset": 32616, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get isValid", + "ranges": [{ "startOffset": 32640, "endOffset": 32677, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "normalizeZone", + "ranges": [ + { "startOffset": 32701, "endOffset": 33598, "count": 8 }, + { "startOffset": 32771, "endOffset": 32788, "count": 4 }, + { "startOffset": 32790, "endOffset": 33596, "count": 4 }, + { "startOffset": 32852, "endOffset": 32875, "count": 0 }, + { "startOffset": 32976, "endOffset": 32995, "count": 0 }, + { "startOffset": 33076, "endOffset": 33238, "count": 0 }, + { "startOffset": 33242, "endOffset": 33596, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "parseDigits", + "ranges": [{ "startOffset": 34748, "endOffset": 35337, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resetDigitRegexCache", + "ranges": [{ "startOffset": 35421, "endOffset": 35483, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "digitRegex", + "ranges": [{ "startOffset": 35484, "endOffset": 35922, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "now", + "ranges": [{ "startOffset": 35934, "endOffset": 35950, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get now", + "ranges": [{ "startOffset": 36438, "endOffset": 36469, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set now", + "ranges": [{ "startOffset": 36861, "endOffset": 36890, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set defaultZone", + "ranges": [{ "startOffset": 37099, "endOffset": 37150, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get defaultZone", + "ranges": [{ "startOffset": 37400, "endOffset": 37483, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "get defaultLocale", + "ranges": [{ "startOffset": 37616, "endOffset": 37667, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "set defaultLocale", + "ranges": [{ "startOffset": 37800, "endOffset": 37859, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get defaultNumberingSystem", + "ranges": [{ "startOffset": 38002, "endOffset": 38071, "count": 8 }], + "isBlockCoverage": true + }, + { + "functionName": "set defaultNumberingSystem", + "ranges": [{ "startOffset": 38214, "endOffset": 38309, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get defaultOutputCalendar", + "ranges": [{ "startOffset": 38451, "endOffset": 38518, "count": 8 }], + "isBlockCoverage": true + }, + { + "functionName": "set defaultOutputCalendar", + "ranges": [{ "startOffset": 38660, "endOffset": 38751, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get defaultWeekSettings", + "ranges": [{ "startOffset": 38959, "endOffset": 39022, "count": 8 }], + "isBlockCoverage": true + }, + { + "functionName": "set defaultWeekSettings", + "ranges": [{ "startOffset": 39298, "endOffset": 39403, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get twoDigitCutoffYear", + "ranges": [{ "startOffset": 39685, "endOffset": 39746, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set twoDigitCutoffYear", + "ranges": [{ "startOffset": 40431, "endOffset": 40514, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get throwOnInvalid", + "ranges": [{ "startOffset": 40654, "endOffset": 40707, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set throwOnInvalid", + "ranges": [{ "startOffset": 40847, "endOffset": 40898, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resetCaches", + "ranges": [{ "startOffset": 41022, "endOffset": 41148, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Invalid", + "ranges": [{ "startOffset": 41170, "endOffset": 41270, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toMessage", + "ranges": [{ "startOffset": 41273, "endOffset": 41415, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "unitOutOfRange", + "ranges": [{ "startOffset": 41570, "endOffset": 41736, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "dayOfWeek", + "ranges": [{ "startOffset": 41737, "endOffset": 41973, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "computeOrdinal", + "ranges": [{ "startOffset": 41974, "endOffset": 42094, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "uncomputeOrdinal", + "ranges": [{ "startOffset": 42095, "endOffset": 42332, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isoWeekdayToLocal", + "ranges": [{ "startOffset": 42333, "endOffset": 42437, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "gregorianToWeek", + "ranges": [{ "startOffset": 42460, "endOffset": 43196, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "weekToGregorian", + "ranges": [{ "startOffset": 43197, "endOffset": 43936, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "gregorianToOrdinal", + "ranges": [{ "startOffset": 43937, "endOffset": 44152, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ordinalToGregorian", + "ranges": [{ "startOffset": 44153, "endOffset": 44393, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "usesLocalWeekValues", + "ranges": [{ "startOffset": 44646, "endOffset": 45627, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hasInvalidWeekData", + "ranges": [{ "startOffset": 45628, "endOffset": 46174, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hasInvalidOrdinalData", + "ranges": [{ "startOffset": 46175, "endOffset": 46497, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hasInvalidGregorianData", + "ranges": [{ "startOffset": 46498, "endOffset": 46940, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hasInvalidTimeData", + "ranges": [{ "startOffset": 46941, "endOffset": 47644, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isUndefined", + "ranges": [{ "startOffset": 47956, "endOffset": 48018, "count": 84 }], + "isBlockCoverage": true + }, + { + "functionName": "isNumber", + "ranges": [{ "startOffset": 48019, "endOffset": 48075, "count": 46 }], + "isBlockCoverage": true + }, + { + "functionName": "isInteger", + "ranges": [{ "startOffset": 48076, "endOffset": 48148, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isString", + "ranges": [{ "startOffset": 48149, "endOffset": 48205, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "isDate", + "ranges": [{ "startOffset": 48206, "endOffset": 48292, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "hasRelative", + "ranges": [{ "startOffset": 48311, "endOffset": 48452, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hasLocaleWeekInfo", + "ranges": [{ "startOffset": 48453, "endOffset": 48671, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "maybeArray", + "ranges": [ + { "startOffset": 48696, "endOffset": 48775, "count": 2 }, + { "startOffset": 48763, "endOffset": 48772, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "bestBy", + "ranges": [{ "startOffset": 48776, "endOffset": 49102, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pick", + "ranges": [{ "startOffset": 49103, "endOffset": 49207, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hasOwnProperty", + "ranges": [{ "startOffset": 49208, "endOffset": 49304, "count": 38 }], + "isBlockCoverage": true + }, + { + "functionName": "validateWeekSettings", + "ranges": [ + { "startOffset": 49305, "endOffset": 49922, "count": 8 }, + { "startOffset": 49393, "endOffset": 49920, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 49674, "endOffset": 49703, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "integerBetween", + "ranges": [{ "startOffset": 49948, "endOffset": 50057, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "floorMod", + "ranges": [{ "startOffset": 50105, "endOffset": 50168, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "padStart", + "ranges": [ + { "startOffset": 50169, "endOffset": 50387, "count": 6 }, + { "startOffset": 50257, "endOffset": 50313, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "parseInteger", + "ranges": [{ "startOffset": 50388, "endOffset": 50556, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseFloating", + "ranges": [{ "startOffset": 50557, "endOffset": 50724, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseMillis", + "ranges": [{ "startOffset": 50725, "endOffset": 51022, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "roundTo", + "ranges": [{ "startOffset": 51023, "endOffset": 51206, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isLeapYear", + "ranges": [{ "startOffset": 51224, "endOffset": 51320, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "daysInYear", + "ranges": [{ "startOffset": 51321, "endOffset": 51389, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "daysInMonth", + "ranges": [{ "startOffset": 51390, "endOffset": 51679, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "objToLocalTS", + "ranges": [{ "startOffset": 51769, "endOffset": 52393, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "firstWeekOffset", + "ranges": [{ "startOffset": 52538, "endOffset": 52735, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "weeksInWeekYear", + "ranges": [{ "startOffset": 52736, "endOffset": 53052, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "untruncateYear", + "ranges": [{ "startOffset": 53053, "endOffset": 53202, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseZoneInfo", + "ranges": [{ "startOffset": 53216, "endOffset": 53778, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "signedOffset", + "ranges": [{ "startOffset": 53816, "endOffset": 54177, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "asNumber", + "ranges": [ + { "startOffset": 54192, "endOffset": 54424, "count": 2 }, + { "startOffset": 54337, "endOffset": 54399, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "normalizeObject", + "ranges": [ + { "startOffset": 54425, "endOffset": 54707, "count": 4 }, + { "startOffset": 54517, "endOffset": 54684, "count": 2 }, + { "startOffset": 54618, "endOffset": 54627, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "formatOffset", + "ranges": [{ "startOffset": 55028, "endOffset": 55592, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "timeObject", + "ranges": [{ "startOffset": 55593, "endOffset": 55686, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "months", + "ranges": [{ "startOffset": 56041, "endOffset": 56476, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "weekdays", + "ranges": [{ "startOffset": 56711, "endOffset": 57019, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "eras", + "ranges": [{ "startOffset": 57166, "endOffset": 57388, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "meridiemForDateTime", + "ranges": [{ "startOffset": 57389, "endOffset": 57467, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "weekdayForDateTime", + "ranges": [{ "startOffset": 57468, "endOffset": 57554, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "monthForDateTime", + "ranges": [{ "startOffset": 57555, "endOffset": 57635, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "eraForDateTime", + "ranges": [{ "startOffset": 57636, "endOffset": 57719, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "formatRelativeTime", + "ranges": [{ "startOffset": 57720, "endOffset": 58814, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stringifyTokens", + "ranges": [ + { "startOffset": 58816, "endOffset": 59032, "count": 2 }, + { "startOffset": 58910, "endOffset": 59018, "count": 12 }, + { "startOffset": 58935, "endOffset": 58964, "count": 4 }, + { "startOffset": 58964, "endOffset": 59014, "count": 8 } + ], + "isBlockCoverage": true + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 59633, "endOffset": 59704, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "parseFormat", + "ranges": [ + { "startOffset": 59714, "endOffset": 60850, "count": 2 }, + { "startOffset": 60008, "endOffset": 60675, "count": 26 }, + { "startOffset": 60062, "endOffset": 60329, "count": 8 }, + { "startOffset": 60157, "endOffset": 60185, "count": 4 }, + { "startOffset": 60329, "endOffset": 60669, "count": 18 }, + { "startOffset": 60350, "endOffset": 60385, "count": 4 }, + { "startOffset": 60385, "endOffset": 60669, "count": 14 }, + { "startOffset": 60410, "endOffset": 60445, "count": 6 }, + { "startOffset": 60445, "endOffset": 60669, "count": 8 }, + { "startOffset": 60489, "endOffset": 60615, "count": 4 }, + { "startOffset": 60708, "endOffset": 60827, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "macroTokenToFormatOpts", + "ranges": [{ "startOffset": 60860, "endOffset": 60937, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Formatter", + "ranges": [{ "startOffset": 60940, "endOffset": 61055, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "formatWithSystemDefault", + "ranges": [{ "startOffset": 61058, "endOffset": 61305, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "dtFormatter", + "ranges": [{ "startOffset": 61308, "endOffset": 61420, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "formatDateTime", + "ranges": [{ "startOffset": 61423, "endOffset": 61501, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "formatDateTimeParts", + "ranges": [{ "startOffset": 61504, "endOffset": 61594, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "formatInterval", + "ranges": [{ "startOffset": 61597, "endOffset": 61771, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolvedOptions", + "ranges": [{ "startOffset": 61774, "endOffset": 61862, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "num", + "ranges": [ + { "startOffset": 61865, "endOffset": 62154, "count": 6 }, + { "startOffset": 61971, "endOffset": 62007, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "formatDateTimeFromString", + "ranges": [{ "startOffset": 62157, "endOffset": 70435, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "formatDurationFromString", + "ranges": [{ "startOffset": 70438, "endOffset": 71532, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "tokenToField", + "ranges": [ + { "startOffset": 70500, "endOffset": 70987, "count": 16 }, + { "startOffset": 70549, "endOffset": 70592, "count": 4 }, + { "startOffset": 70603, "endOffset": 70641, "count": 4 }, + { "startOffset": 70652, "endOffset": 70690, "count": 4 }, + { "startOffset": 70701, "endOffset": 70737, "count": 0 }, + { "startOffset": 70748, "endOffset": 70783, "count": 0 }, + { "startOffset": 70794, "endOffset": 70830, "count": 0 }, + { "startOffset": 70841, "endOffset": 70878, "count": 0 }, + { "startOffset": 70889, "endOffset": 70925, "count": 0 }, + { "startOffset": 70936, "endOffset": 70969, "count": 4 } + ], + "isBlockCoverage": true + }, + { + "functionName": "tokenToString", + "ranges": [{ "startOffset": 71011, "endOffset": 71217, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 71021, "endOffset": 71217, "count": 8 }, + { "startOffset": 71096, "endOffset": 71168, "count": 6 }, + { "startOffset": 71168, "endOffset": 71209, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 71295, "endOffset": 71381, "count": 12 }, + { "startOffset": 71354, "endOffset": 71361, "count": 4 }, + { "startOffset": 71362, "endOffset": 71381, "count": 8 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 71457, "endOffset": 71463, "count": 8 }], + "isBlockCoverage": true + }, + { + "functionName": "combineRegexes", + "ranges": [{ "startOffset": 72399, "endOffset": 72527, "count": 6 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 72467, "endOffset": 72489, "count": 10 }], + "isBlockCoverage": true + }, + { + "functionName": "combineExtractors", + "ranges": [{ "startOffset": 72528, "endOffset": 72809, "count": 6 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 72581, "endOffset": 72806, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parse", + "ranges": [{ "startOffset": 72810, "endOffset": 73041, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "simpleParse", + "ranges": [{ "startOffset": 73042, "endOffset": 73277, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 73083, "endOffset": 73274, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "int", + "ranges": [{ "startOffset": 74235, "endOffset": 74351, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "extractISOYmd", + "ranges": [{ "startOffset": 74352, "endOffset": 74553, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "extractISOTime", + "ranges": [{ "startOffset": 74554, "endOffset": 74816, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "extractISOOffset", + "ranges": [{ "startOffset": 74817, "endOffset": 75081, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "extractIANAZone", + "ranges": [{ "startOffset": 75082, "endOffset": 75228, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "extractISODuration", + "ranges": [{ "startOffset": 75615, "endOffset": 76437, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fromStrings", + "ranges": [{ "startOffset": 76822, "endOffset": 77404, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "extractRFC2822", + "ranges": [{ "startOffset": 77634, "endOffset": 78129, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "preprocessRFC2822", + "ranges": [{ "startOffset": 78130, "endOffset": 78334, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "extractRFC1123Or850", + "ranges": [{ "startOffset": 78792, "endOffset": 79065, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "extractASCII", + "ranges": [{ "startOffset": 79066, "endOffset": 79332, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseISODate", + "ranges": [{ "startOffset": 80168, "endOffset": 80452, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseRFC2822Date", + "ranges": [{ "startOffset": 80453, "endOffset": 80550, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseHTTPDate", + "ranges": [{ "startOffset": 80551, "endOffset": 80685, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseISODuration", + "ranges": [{ "startOffset": 80686, "endOffset": 80772, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseISOTimeOnly", + "ranges": [{ "startOffset": 80835, "endOffset": 80921, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseSQL", + "ranges": [{ "startOffset": 81180, "endOffset": 81340, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "clone$1", + "ranges": [ + { "startOffset": 83958, "endOffset": 84320, "count": 6 }, + { "startOffset": 84077, "endOffset": 84136, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "durationToMillis", + "ranges": [ + { "startOffset": 84321, "endOffset": 84625, "count": 4 }, + { "startOffset": 84471, "endOffset": 84474, "count": 0 }, + { "startOffset": 84520, "endOffset": 84609, "count": 32 }, + { "startOffset": 84542, "endOffset": 84605, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "normalizeValues", + "ranges": [ + { "startOffset": 84653, "endOffset": 86795, "count": 4 }, + { "startOffset": 84880, "endOffset": 84884, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 84919, "endOffset": 86275, "count": 36 }, + { "startOffset": 84981, "endOffset": 86235, "count": 12 }, + { "startOffset": 85003, "endOffset": 86207, "count": 8 }, + { "startOffset": 86235, "endOffset": 86271, "count": 24 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 86480, "endOffset": 86785, "count": 36 }, + { "startOffset": 86542, "endOffset": 86745, "count": 12 }, + { "startOffset": 86564, "endOffset": 86717, "count": 8 }, + { "startOffset": 86745, "endOffset": 86781, "count": 24 } + ], + "isBlockCoverage": true + }, + { + "functionName": "removeZeroes", + "ranges": [{ "startOffset": 86855, "endOffset": 87040, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Duration", + "ranges": [ + { "startOffset": 88710, "endOffset": 89407, "count": 10 }, + { "startOffset": 88830, "endOffset": 88846, "count": 0 }, + { "startOffset": 88886, "endOffset": 88923, "count": 6 }, + { "startOffset": 89062, "endOffset": 89080, "count": 0 }, + { "startOffset": 89160, "endOffset": 89172, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "fromMillis", + "ranges": [{ "startOffset": 89819, "endOffset": 89921, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "fromObject", + "ranges": [ + { "startOffset": 90864, "endOffset": 91298, "count": 4 }, + { "startOffset": 90941, "endOffset": 91087, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "fromDurationLike", + "ranges": [ + { "startOffset": 91574, "endOffset": 92003, "count": 2 }, + { "startOffset": 91639, "endOffset": 91694, "count": 0 }, + { "startOffset": 91773, "endOffset": 91999, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "fromISO", + "ranges": [{ "startOffset": 92863, "endOffset": 93114, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fromISOTime", + "ranges": [{ "startOffset": 94179, "endOffset": 94434, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "invalid", + "ranges": [{ "startOffset": 94777, "endOffset": 95179, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "normalizeUnit", + "ranges": [ + { "startOffset": 95216, "endOffset": 95827, "count": 38 }, + { "startOffset": 95737, "endOffset": 95743, "count": 0 }, + { "startOffset": 95767, "endOffset": 95800, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "isDuration", + "ranges": [ + { "startOffset": 95967, "endOffset": 96030, "count": 2 }, + { "startOffset": 96017, "endOffset": 96025, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get locale", + "ranges": [{ "startOffset": 96115, "endOffset": 96183, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get numberingSystem", + "ranges": [{ "startOffset": 96340, "endOffset": 96426, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toFormat", + "ranges": [ + { "startOffset": 97590, "endOffset": 97926, "count": 2 }, + { "startOffset": 97910, "endOffset": 97921, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "toHuman", + "ranges": [{ "startOffset": 98926, "endOffset": 99452, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toObject", + "ranges": [ + { "startOffset": 99671, "endOffset": 99762, "count": 4 }, + { "startOffset": 99707, "endOffset": 99717, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "toISO", + "ranges": [{ "startOffset": 100320, "endOffset": 101257, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toISOTime", + "ranges": [{ "startOffset": 102465, "endOffset": 102913, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toJSON", + "ranges": [{ "startOffset": 103037, "endOffset": 103076, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toString", + "ranges": [{ "startOffset": 103205, "endOffset": 103246, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 103364, "endOffset": 103593, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toMillis", + "ranges": [{ "startOffset": 103684, "endOffset": 103790, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "valueOf", + "ranges": [{ "startOffset": 103907, "endOffset": 103950, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "plus", + "ranges": [ + { "startOffset": 104246, "endOffset": 104611, "count": 2 }, + { "startOffset": 104286, "endOffset": 104298, "count": 0 }, + { "startOffset": 104407, "endOffset": 104545, "count": 18 }, + { "startOffset": 104484, "endOffset": 104539, "count": 6 } + ], + "isBlockCoverage": true + }, + { + "functionName": "minus", + "ranges": [{ "startOffset": 104913, "endOffset": 105059, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mapUnits", + "ranges": [{ "startOffset": 105594, "endOffset": 105838, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 106190, "endOffset": 106252, "count": 18 }], + "isBlockCoverage": true + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 106519, "endOffset": 106733, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "reconfigure", + "ranges": [{ "startOffset": 106909, "endOffset": 107191, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "as", + "ranges": [{ "startOffset": 107554, "endOffset": 107630, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "normalize", + "ranges": [{ "startOffset": 108831, "endOffset": 109018, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "rescale", + "ranges": [{ "startOffset": 109220, "endOffset": 109404, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "shiftTo", + "ranges": [ + { "startOffset": 109673, "endOffset": 111198, "count": 4 }, + { "startOffset": 109716, "endOffset": 109728, "count": 0 }, + { "startOffset": 109757, "endOffset": 109783, "count": 0 }, + { "startOffset": 109969, "endOffset": 110772, "count": 36 }, + { "startOffset": 110004, "endOffset": 110694, "count": 12 }, + { "startOffset": 110349, "endOffset": 110386, "count": 8 }, + { "startOffset": 110694, "endOffset": 110766, "count": 24 }, + { "startOffset": 110723, "endOffset": 110766, "count": 0 }, + { "startOffset": 110929, "endOffset": 111092, "count": 12 }, + { "startOffset": 110965, "endOffset": 111086, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 109806, "endOffset": 109836, "count": 12 }], + "isBlockCoverage": true + }, + { + "functionName": "shiftToAll", + "ranges": [{ "startOffset": 111391, "endOffset": 111553, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "negate", + "ranges": [{ "startOffset": 111750, "endOffset": 112004, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get years", + "ranges": [{ "startOffset": 112060, "endOffset": 112133, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get quarters", + "ranges": [{ "startOffset": 112192, "endOffset": 112271, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get months", + "ranges": [{ "startOffset": 112328, "endOffset": 112403, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get weeks", + "ranges": [{ "startOffset": 112458, "endOffset": 112531, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get days", + "ranges": [{ "startOffset": 112586, "endOffset": 112657, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get hours", + "ranges": [{ "startOffset": 112713, "endOffset": 112786, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get minutes", + "ranges": [ + { "startOffset": 112844, "endOffset": 112921, "count": 6 }, + { "startOffset": 112911, "endOffset": 112916, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get seconds", + "ranges": [ + { "startOffset": 112981, "endOffset": 113058, "count": 6 }, + { "startOffset": 113048, "endOffset": 113053, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get milliseconds", + "ranges": [ + { "startOffset": 113123, "endOffset": 113210, "count": 6 }, + { "startOffset": 113195, "endOffset": 113199, "count": 2 }, + { "startOffset": 113200, "endOffset": 113205, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get isValid", + "ranges": [{ "startOffset": 113385, "endOffset": 113438, "count": 30 }], + "isBlockCoverage": true + }, + { + "functionName": "get invalidReason", + "ranges": [{ "startOffset": 113569, "endOffset": 113648, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get invalidExplanation", + "ranges": [{ "startOffset": 113782, "endOffset": 113871, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "equals", + "ranges": [{ "startOffset": 114052, "endOffset": 114522, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "validateStartEnd", + "ranges": [ + { "startOffset": 114618, "endOffset": 115060, "count": 2 }, + { "startOffset": 114690, "endOffset": 114752, "count": 0 }, + { "startOffset": 114784, "endOffset": 114844, "count": 0 }, + { "startOffset": 114867, "endOffset": 115030, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "Interval", + "ranges": [{ "startOffset": 116719, "endOffset": 117028, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "invalid", + "ranges": [{ "startOffset": 117371, "endOffset": 117773, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fromDateTimes", + "ranges": [ + { "startOffset": 118007, "endOffset": 118359, "count": 2 }, + { "startOffset": 118314, "endOffset": 118355, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "after", + "ranges": [{ "startOffset": 118598, "endOffset": 118768, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "before", + "ranges": [{ "startOffset": 119014, "endOffset": 119182, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fromISO", + "ranges": [{ "startOffset": 119589, "endOffset": 120552, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isInterval", + "ranges": [{ "startOffset": 120693, "endOffset": 120756, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get start", + "ranges": [{ "startOffset": 120833, "endOffset": 120891, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get end", + "ranges": [{ "startOffset": 120966, "endOffset": 121022, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get lastDateTime", + "ranges": [{ "startOffset": 121156, "endOffset": 121246, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get isValid", + "ranges": [{ "startOffset": 121392, "endOffset": 121451, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "get invalidReason", + "ranges": [ + { "startOffset": 121576, "endOffset": 121655, "count": 2 }, + { "startOffset": 121622, "endOffset": 121643, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get invalidExplanation", + "ranges": [{ "startOffset": 121789, "endOffset": 121878, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "length", + "ranges": [{ "startOffset": 122069, "endOffset": 122174, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "count", + "ranges": [{ "startOffset": 122845, "endOffset": 123277, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hasSame", + "ranges": [{ "startOffset": 123467, "endOffset": 123577, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isEmpty", + "ranges": [{ "startOffset": 123688, "endOffset": 123753, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isAfter", + "ranges": [{ "startOffset": 123899, "endOffset": 123989, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isBefore", + "ranges": [{ "startOffset": 124134, "endOffset": 124226, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "contains", + "ranges": [{ "startOffset": 124364, "endOffset": 124477, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 124759, "endOffset": 124902, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "splitAt", + "ranges": [{ "startOffset": 125064, "endOffset": 125545, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "splitBy", + "ranges": [{ "startOffset": 125803, "endOffset": 126311, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "divideEqually", + "ranges": [{ "startOffset": 126511, "endOffset": 126659, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "overlaps", + "ranges": [{ "startOffset": 126798, "endOffset": 126868, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "abutsStart", + "ranges": [{ "startOffset": 127023, "endOffset": 127116, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "abutsEnd", + "ranges": [{ "startOffset": 127271, "endOffset": 127362, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "engulfs", + "ranges": [{ "startOffset": 127625, "endOffset": 127733, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "equals", + "ranges": [{ "startOffset": 127889, "endOffset": 128038, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "intersection", + "ranges": [{ "startOffset": 128410, "endOffset": 128668, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "union", + "ranges": [{ "startOffset": 128945, "endOffset": 129138, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "merge", + "ranges": [{ "startOffset": 129495, "endOffset": 129942, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "xor", + "ranges": [{ "startOffset": 130133, "endOffset": 130793, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "difference", + "ranges": [{ "startOffset": 130995, "endOffset": 131138, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toString", + "ranges": [{ "startOffset": 131257, "endOffset": 131368, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 131486, "endOffset": 131725, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toLocaleString", + "ranges": [{ "startOffset": 133292, "endOffset": 133461, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toISO", + "ranges": [{ "startOffset": 133709, "endOffset": 133825, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toISODate", + "ranges": [{ "startOffset": 134048, "endOffset": 134164, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toISOTime", + "ranges": [{ "startOffset": 134458, "endOffset": 134586, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toFormat", + "ranges": [{ "startOffset": 135140, "endOffset": 135328, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toDuration", + "ranges": [ + { "startOffset": 136335, "endOffset": 136489, "count": 2 }, + { "startOffset": 136383, "endOffset": 136441, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "mapEndpoints", + "ranges": [{ "startOffset": 136849, "endOffset": 136939, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hasDST", + "ranges": [{ "startOffset": 137460, "endOffset": 137669, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isValidIANAZone", + "ranges": [{ "startOffset": 137823, "endOffset": 137889, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "normalizeZone", + "ranges": [{ "startOffset": 138573, "endOffset": 138654, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getStartOfWeek", + "ranges": [{ "startOffset": 138998, "endOffset": 139130, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getMinimumDaysInFirstWeek", + "ranges": [{ "startOffset": 139478, "endOffset": 139628, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getWeekendWeekdays", + "ranges": [{ "startOffset": 139982, "endOffset": 140180, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "months", + "ranges": [{ "startOffset": 141184, "endOffset": 141416, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "monthsFormat", + "ranges": [{ "startOffset": 142132, "endOffset": 142376, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "weekdays", + "ranges": [{ "startOffset": 143169, "endOffset": 143363, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "weekdaysFormat", + "ranges": [{ "startOffset": 144001, "endOffset": 144207, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "meridiems", + "ranges": [{ "startOffset": 144497, "endOffset": 144588, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "eras", + "ranges": [{ "startOffset": 145172, "endOffset": 145294, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "features", + "ranges": [{ "startOffset": 145886, "endOffset": 145991, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "dayDiff", + "ranges": [{ "startOffset": 145995, "endOffset": 146241, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "highOrderDiffs", + "ranges": [ + { "startOffset": 146242, "endOffset": 148092, "count": 2 }, + { "startOffset": 147227, "endOffset": 148038, "count": 10 }, + { "startOffset": 147263, "endOffset": 148034, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "differs", + "ranges": [{ "startOffset": 146319, "endOffset": 146344, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 146360, "endOffset": 146415, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 146429, "endOffset": 146481, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "differs", + "ranges": [{ "startOffset": 146494, "endOffset": 146575, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "diff", + "ranges": [ + { "startOffset": 148093, "endOffset": 148887, "count": 2 }, + { "startOffset": 148416, "endOffset": 148660, "count": 0 }, + { "startOffset": 148853, "endOffset": 148885, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 148309, "endOffset": 148377, "count": 6 }], + "isBlockCoverage": true + }, + { + "functionName": "intUnit", + "ranges": [{ "startOffset": 148962, "endOffset": 149072, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fixListRegex", + "ranges": [{ "startOffset": 149202, "endOffset": 149423, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stripInsensitivities", + "ranges": [{ "startOffset": 149424, "endOffset": 149612, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "oneOf", + "ranges": [{ "startOffset": 149613, "endOffset": 149899, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "offset", + "ranges": [{ "startOffset": 149900, "endOffset": 150017, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "simple", + "ranges": [{ "startOffset": 150018, "endOffset": 150093, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "escapeToken", + "ranges": [{ "startOffset": 150094, "endOffset": 150188, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "unitForToken", + "ranges": [{ "startOffset": 150237, "endOffset": 154570, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "tokenForPart", + "ranges": [{ "startOffset": 155174, "endOffset": 156418, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "buildRegex", + "ranges": [{ "startOffset": 156419, "endOffset": 156558, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "match", + "ranges": [{ "startOffset": 156559, "endOffset": 157100, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "dateTimeFromMatches", + "ranges": [{ "startOffset": 157101, "endOffset": 158638, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getDummyDateTime", + "ranges": [{ "startOffset": 158670, "endOffset": 158824, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "maybeExpandMacroToken", + "ranges": [{ "startOffset": 158825, "endOffset": 159135, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "expandMacroTokens", + "ranges": [{ "startOffset": 159136, "endOffset": 159269, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "TokenParser", + "ranges": [{ "startOffset": 159314, "endOffset": 159787, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "explainFromTokens", + "ranges": [{ "startOffset": 159790, "endOffset": 160531, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get isValid", + "ranges": [{ "startOffset": 160534, "endOffset": 160589, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get invalidReason", + "ranges": [{ "startOffset": 160592, "endOffset": 160698, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "explainFromTokens", + "ranges": [{ "startOffset": 160701, "endOffset": 160846, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseFromTokens", + "ranges": [{ "startOffset": 160847, "endOffset": 161072, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "formatOptsToTokens", + "ranges": [{ "startOffset": 161073, "endOffset": 161429, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "unsupportedZone", + "ranges": [{ "startOffset": 161493, "endOffset": 161613, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "possiblyCachedWeekData", + "ranges": [{ "startOffset": 161719, "endOffset": 161855, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "possiblyCachedLocalWeekData", + "ranges": [{ "startOffset": 161889, "endOffset": 162102, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "clone", + "ranges": [{ "startOffset": 162272, "endOffset": 162516, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fixOffset", + "ranges": [{ "startOffset": 162696, "endOffset": 163446, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "tsToObj", + "ranges": [{ "startOffset": 163523, "endOffset": 163841, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "objToTS", + "ranges": [{ "startOffset": 163893, "endOffset": 163985, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "adjustTime", + "ranges": [{ "startOffset": 164056, "endOffset": 165141, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseDataToDateTime", + "ranges": [{ "startOffset": 165242, "endOffset": 165789, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toTechFormat", + "ranges": [{ "startOffset": 165892, "endOffset": 166093, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toISODate", + "ranges": [{ "startOffset": 166094, "endOffset": 166478, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toISOTime", + "ranges": [{ "startOffset": 166479, "endOffset": 167507, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "normalizeUnit", + "ranges": [{ "startOffset": 168316, "endOffset": 169039, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "normalizeUnitWithLocalWeeks", + "ranges": [{ "startOffset": 169040, "endOffset": 169421, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "guessOffsetForZone", + "ranges": [{ "startOffset": 170734, "endOffset": 171336, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "quickDT", + "ranges": [{ "startOffset": 171521, "endOffset": 172288, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "diffRelative", + "ranges": [{ "startOffset": 172289, "endOffset": 173155, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lastOpts", + "ranges": [{ "startOffset": 173156, "endOffset": 173463, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "DateTime", + "ranges": [ + { "startOffset": 176569, "endOffset": 178095, "count": 4 }, + { "startOffset": 176620, "endOffset": 176643, "count": 0 }, + { "startOffset": 176706, "endOffset": 176736, "count": 0 }, + { "startOffset": 176763, "endOffset": 176786, "count": 0 }, + { "startOffset": 176872, "endOffset": 176888, "count": 0 }, + { "startOffset": 176991, "endOffset": 177019, "count": 0 }, + { "startOffset": 177020, "endOffset": 177051, "count": 0 }, + { "startOffset": 177074, "endOffset": 177130, "count": 0 }, + { "startOffset": 177319, "endOffset": 177333, "count": 0 }, + { "startOffset": 177334, "endOffset": 177344, "count": 0 }, + { "startOffset": 177442, "endOffset": 177472, "count": 0 }, + { "startOffset": 177501, "endOffset": 177507, "count": 0 }, + { "startOffset": 177533, "endOffset": 177539, "count": 0 }, + { "startOffset": 177688, "endOffset": 177706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "now", + "ranges": [{ "startOffset": 178364, "endOffset": 178404, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "local", + "ranges": [{ "startOffset": 180005, "endOffset": 180261, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "utc", + "ranges": [{ "startOffset": 182353, "endOffset": 182652, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fromJSDate", + "ranges": [ + { "startOffset": 182984, "endOffset": 183431, "count": 4 }, + { "startOffset": 183062, "endOffset": 183067, "count": 0 }, + { "startOffset": 183095, "endOffset": 183150, "count": 0 }, + { "startOffset": 183252, "endOffset": 183318, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "fromMillis", + "ranges": [{ "startOffset": 184261, "endOffset": 184918, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fromSeconds", + "ranges": [{ "startOffset": 185733, "endOffset": 186073, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fromObject", + "ranges": [{ "startOffset": 188834, "endOffset": 192515, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fromISO", + "ranges": [{ "startOffset": 193753, "endOffset": 193908, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fromRFC2822", + "ranges": [{ "startOffset": 195105, "endOffset": 195268, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fromHTTP", + "ranges": [{ "startOffset": 196663, "endOffset": 196816, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fromFormat", + "ranges": [{ "startOffset": 198118, "endOffset": 198766, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fromString", + "ranges": [{ "startOffset": 198829, "endOffset": 198916, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fromSQL", + "ranges": [{ "startOffset": 200517, "endOffset": 200663, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "invalid", + "ranges": [{ "startOffset": 201007, "endOffset": 201409, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isDateTime", + "ranges": [{ "startOffset": 201562, "endOffset": 201625, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "parseFormatForOpts", + "ranges": [{ "startOffset": 201769, "endOffset": 201985, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "expandFormat", + "ranges": [{ "startOffset": 202213, "endOffset": 202398, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resetCache", + "ranges": [{ "startOffset": 202408, "endOffset": 202490, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 202750, "endOffset": 202788, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get isValid", + "ranges": [{ "startOffset": 203076, "endOffset": 203129, "count": 24 }], + "isBlockCoverage": true + }, + { + "functionName": "get invalidReason", + "ranges": [{ "startOffset": 203254, "endOffset": 203333, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get invalidExplanation", + "ranges": [{ "startOffset": 203467, "endOffset": 203556, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get locale", + "ranges": [ + { "startOffset": 203694, "endOffset": 203762, "count": 2 }, + { "startOffset": 203751, "endOffset": 203757, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get numberingSystem", + "ranges": [ + { "startOffset": 203919, "endOffset": 204005, "count": 2 }, + { "startOffset": 203994, "endOffset": 204000, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get outputCalendar", + "ranges": [{ "startOffset": 204163, "endOffset": 204247, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get zone", + "ranges": [{ "startOffset": 204335, "endOffset": 204374, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get zoneName", + "ranges": [{ "startOffset": 204446, "endOffset": 204515, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get year", + "ranges": [{ "startOffset": 204626, "endOffset": 204687, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get quarter", + "ranges": [{ "startOffset": 204801, "endOffset": 204881, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get month", + "ranges": [{ "startOffset": 204999, "endOffset": 205062, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get day", + "ranges": [{ "startOffset": 205193, "endOffset": 205252, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get hour", + "ranges": [{ "startOffset": 205382, "endOffset": 205443, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get minute", + "ranges": [{ "startOffset": 205583, "endOffset": 205648, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get second", + "ranges": [{ "startOffset": 205794, "endOffset": 205859, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get millisecond", + "ranges": [{ "startOffset": 206022, "endOffset": 206097, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get weekYear", + "ranges": [{ "startOffset": 206272, "endOffset": 206363, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get weekNumber", + "ranges": [{ "startOffset": 206567, "endOffset": 206662, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get weekday", + "ranges": [{ "startOffset": 206873, "endOffset": 206962, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get isWeekend", + "ranges": [{ "startOffset": 207090, "endOffset": 207188, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get localWeekday", + "ranges": [{ "startOffset": 207461, "endOffset": 207560, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get localWeekNumber", + "ranges": [{ "startOffset": 207903, "endOffset": 208008, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get localWeekYear", + "ranges": [{ "startOffset": 208198, "endOffset": 208299, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get ordinal", + "ranges": [{ "startOffset": 208454, "endOffset": 208541, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get monthShort", + "ranges": [{ "startOffset": 208770, "endOffset": 208895, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get monthLong", + "ranges": [{ "startOffset": 209130, "endOffset": 209253, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get weekdayShort", + "ranges": [{ "startOffset": 209481, "endOffset": 209612, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get weekdayLong", + "ranges": [{ "startOffset": 209844, "endOffset": 209973, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get offset", + "ranges": [{ "startOffset": 210150, "endOffset": 210209, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get offsetNameShort", + "ranges": [{ "startOffset": 210403, "endOffset": 210600, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get offsetNameLong", + "ranges": [{ "startOffset": 210829, "endOffset": 211024, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get isOffsetFixed", + "ranges": [{ "startOffset": 211124, "endOffset": 211205, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get isInDST", + "ranges": [{ "startOffset": 211285, "endOffset": 211522, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getPossibleOffsets", + "ranges": [{ "startOffset": 211942, "endOffset": 212814, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get isInLeapYear", + "ranges": [{ "startOffset": 213038, "endOffset": 213096, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get daysInMonth", + "ranges": [{ "startOffset": 213305, "endOffset": 213375, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get daysInYear", + "ranges": [{ "startOffset": 213577, "endOffset": 213654, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get weeksInWeekYear", + "ranges": [{ "startOffset": 213919, "endOffset": 214010, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get weeksInLocalWeekYear", + "ranges": [{ "startOffset": 214286, "endOffset": 214448, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolvedLocaleOptions", + "ranges": [{ "startOffset": 214679, "endOffset": 214945, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toUTC", + "ranges": [{ "startOffset": 215274, "endOffset": 215373, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toLocal", + "ranges": [{ "startOffset": 215551, "endOffset": 215613, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setZone", + "ranges": [{ "startOffset": 216601, "endOffset": 217193, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "reconfigure", + "ranges": [{ "startOffset": 217461, "endOffset": 217684, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setLocale", + "ranges": [{ "startOffset": 217903, "endOffset": 217977, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 218652, "endOffset": 220509, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "plus", + "ranges": [{ "startOffset": 221597, "endOffset": 221753, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "minus", + "ranges": [{ "startOffset": 222072, "endOffset": 222238, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "startOf", + "ranges": [{ "startOffset": 223173, "endOffset": 224361, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "endOf", + "ranges": [{ "startOffset": 225360, "endOffset": 225481, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toFormat", + "ranges": [{ "startOffset": 226444, "endOffset": 226594, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toLocaleString", + "ranges": [{ "startOffset": 228289, "endOffset": 228454, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toLocaleParts", + "ranges": [{ "startOffset": 229415, "endOffset": 229548, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toISO", + "ranges": [{ "startOffset": 230513, "endOffset": 230925, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toISODate", + "ranges": [{ "startOffset": 231345, "endOffset": 231497, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toISOWeekDate", + "ranges": [{ "startOffset": 231695, "endOffset": 231763, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toISOTime", + "ranges": [{ "startOffset": 232931, "endOffset": 233335, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toRFC2822", + "ranges": [{ "startOffset": 233632, "endOffset": 233720, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toHTTP", + "ranges": [{ "startOffset": 234190, "endOffset": 234278, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toSQLDate", + "ranges": [{ "startOffset": 234477, "endOffset": 234578, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toSQLTime", + "ranges": [{ "startOffset": 235386, "endOffset": 235780, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toSQL", + "ranges": [{ "startOffset": 236687, "endOffset": 236817, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toString", + "ranges": [{ "startOffset": 236935, "endOffset": 237001, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 237119, "endOffset": 237378, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "valueOf", + "ranges": [{ "startOffset": 237505, "endOffset": 237548, "count": 12 }], + "isBlockCoverage": true + }, + { + "functionName": "toMillis", + "ranges": [ + { "startOffset": 237640, "endOffset": 237697, "count": 12 }, + { "startOffset": 237687, "endOffset": 237692, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "toSeconds", + "ranges": [{ "startOffset": 237832, "endOffset": 237897, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toUnixInteger", + "ranges": [{ "startOffset": 238004, "endOffset": 238085, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toJSON", + "ranges": [{ "startOffset": 238209, "endOffset": 238248, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toBSON", + "ranges": [{ "startOffset": 238346, "endOffset": 238388, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toObject", + "ranges": [{ "startOffset": 238791, "endOffset": 239086, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toJSDate", + "ranges": [{ "startOffset": 239182, "endOffset": 239249, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "diff", + "ranges": [ + { "startOffset": 240172, "endOffset": 240812, "count": 2 }, + { "startOffset": 240277, "endOffset": 240357, "count": 0 }, + { "startOffset": 240629, "endOffset": 240635, "count": 0 }, + { "startOffset": 240680, "endOffset": 240695, "count": 0 }, + { "startOffset": 240781, "endOffset": 240798, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "diffNow", + "ranges": [{ "startOffset": 241246, "endOffset": 241343, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "until", + "ranges": [{ "startOffset": 241543, "endOffset": 241647, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hasSame", + "ranges": [{ "startOffset": 242479, "endOffset": 242802, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "equals", + "ranges": [{ "startOffset": 243111, "endOffset": 243272, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toRelative", + "ranges": [{ "startOffset": 245120, "endOffset": 245696, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toRelativeCalendar", + "ranges": [{ "startOffset": 246832, "endOffset": 247123, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "min", + "ranges": [{ "startOffset": 247355, "endOffset": 247572, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "max", + "ranges": [{ "startOffset": 247804, "endOffset": 248021, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fromFormatExplain", + "ranges": [{ "startOffset": 248332, "endOffset": 248634, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fromStringExplain", + "ranges": [{ "startOffset": 248704, "endOffset": 248811, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "buildFormatParser", + "ranges": [{ "startOffset": 249339, "endOffset": 249627, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fromFormatParser", + "ranges": [{ "startOffset": 250023, "endOffset": 250987, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get DATE_SHORT", + "ranges": [{ "startOffset": 251111, "endOffset": 251156, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get DATE_MED", + "ranges": [{ "startOffset": 251263, "endOffset": 251304, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get DATE_MED_WITH_WEEKDAY", + "ranges": [{ "startOffset": 251416, "endOffset": 251483, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get DATE_FULL", + "ranges": [{ "startOffset": 251594, "endOffset": 251637, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get DATE_HUGE", + "ranges": [{ "startOffset": 251757, "endOffset": 251800, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get TIME_SIMPLE", + "ranges": [{ "startOffset": 251935, "endOffset": 251982, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get TIME_WITH_SECONDS", + "ranges": [{ "startOffset": 252120, "endOffset": 252179, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get TIME_WITH_SHORT_OFFSET", + "ranges": [{ "startOffset": 252321, "endOffset": 252390, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get TIME_WITH_LONG_OFFSET", + "ranges": [{ "startOffset": 252550, "endOffset": 252617, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get TIME_24_SIMPLE", + "ranges": [{ "startOffset": 252734, "endOffset": 252787, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get TIME_24_WITH_SECONDS", + "ranges": [{ "startOffset": 252907, "endOffset": 252972, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get TIME_24_WITH_SHORT_OFFSET", + "ranges": [{ "startOffset": 253096, "endOffset": 253171, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get TIME_24_WITH_LONG_OFFSET", + "ranges": [{ "startOffset": 253313, "endOffset": 253386, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get DATETIME_SHORT", + "ranges": [{ "startOffset": 253532, "endOffset": 253585, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get DATETIME_SHORT_WITH_SECONDS", + "ranges": [{ "startOffset": 253734, "endOffset": 253813, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get DATETIME_MED", + "ranges": [{ "startOffset": 253961, "endOffset": 254010, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get DATETIME_MED_WITH_SECONDS", + "ranges": [{ "startOffset": 254161, "endOffset": 254236, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get DATETIME_MED_WITH_WEEKDAY", + "ranges": [{ "startOffset": 254388, "endOffset": 254463, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get DATETIME_FULL", + "ranges": [{ "startOffset": 254619, "endOffset": 254670, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get DATETIME_FULL_WITH_SECONDS", + "ranges": [{ "startOffset": 254829, "endOffset": 254906, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get DATETIME_HUGE", + "ranges": [{ "startOffset": 255088, "endOffset": 255139, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get DATETIME_HUGE_WITH_SECONDS", + "ranges": [{ "startOffset": 255324, "endOffset": 255401, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "friendlyDateTime", + "ranges": [ + { "startOffset": 255425, "endOffset": 255899, "count": 4 }, + { "startOffset": 255506, "endOffset": 255535, "count": 0 }, + { "startOffset": 255666, "endOffset": 255897, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "332", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/formatter/helpers/usage_helpers/index.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5289, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 760, "endOffset": 1368, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "ownKeys", + "ranges": [{ "startOffset": 792, "endOffset": 1056, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 1069, "endOffset": 1365, "count": 1 }, + { "startOffset": 1132, "endOffset": 1364, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "buildEmptyMapping", + "ranges": [{ "startOffset": 1712, "endOffset": 2195, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "buildMapping", + "ranges": [{ "startOffset": 2361, "endOffset": 3877, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "normalizeDuration", + "ranges": [{ "startOffset": 3878, "endOffset": 4061, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "buildResult", + "ranges": [{ "startOffset": 4062, "endOffset": 5083, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getUsage", + "ranges": [{ "startOffset": 5084, "endOffset": 5255, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "333", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/formatter/helpers/duration_helpers.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 336, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "durationToNanoseconds", + "ranges": [{ "startOffset": 171, "endOffset": 291, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "334", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/formatter/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 958, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 152, "endOffset": 293, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 299, "endOffset": 319, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Formatter", + "ranges": [{ "startOffset": 325, "endOffset": 834, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "finished", + "ranges": [{ "startOffset": 839, "endOffset": 893, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "335", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/formatter/progress_formatter.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 2932, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 760, "endOffset": 1368, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "ownKeys", + "ranges": [{ "startOffset": 792, "endOffset": 1056, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 1069, "endOffset": 1365, "count": 1 }, + { "startOffset": 1132, "endOffset": 1364, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 1429, "endOffset": 1510, "count": 1 }, + { "startOffset": 1487, "endOffset": 1507, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2182, "endOffset": 2241, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "ProgressFormatter", + "ranges": [{ "startOffset": 2247, "endOffset": 2664, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 2318, "endOffset": 2632, "count": 64 }, + { "startOffset": 2412, "endOffset": 2461, "count": 1 }, + { "startOffset": 2461, "endOffset": 2622, "count": 63 }, + { "startOffset": 2546, "endOffset": 2622, "count": 15 } + ], + "isBlockCoverage": true + }, + { + "functionName": "logProgress", + "ranges": [{ "startOffset": 2669, "endOffset": 2846, "count": 15 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "336", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/formatter/summary_formatter.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2965, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 70, "endOffset": 151, "count": 1 }, + { "startOffset": 128, "endOffset": 148, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 495, "endOffset": 559, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "SummaryFormatter", + "ranges": [{ "startOffset": 565, "endOffset": 1202, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 697, "endOffset": 1194, "count": 64 }, + { "startOffset": 790, "endOffset": 882, "count": 1 }, + { "startOffset": 961, "endOffset": 1184, "count": 1 } + ], + "isBlockCoverage": true + }, + { + "functionName": "logSummary", + "ranges": [ + { "startOffset": 1207, "endOffset": 2393, "count": 1 }, + { "startOffset": 1868, "endOffset": 2002, "count": 0 }, + { "startOffset": 2036, "endOffset": 2116, "count": 0 }, + { "startOffset": 2150, "endOffset": 2230, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 1408, "endOffset": 1793, "count": 3 }, + { "startOffset": 1541, "endOffset": 1604, "count": 0 }, + { "startOffset": 1720, "endOffset": 1783, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "logIssues", + "ranges": [{ "startOffset": 2398, "endOffset": 2881, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "337", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/time.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 3039, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 760, "endOffset": 1368, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "ownKeys", + "ranges": [{ "startOffset": 792, "endOffset": 1056, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 1069, "endOffset": 1365, "count": 1 }, + { "startOffset": 1132, "endOffset": 1364, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "durationBetweenTimestamps", + "ranges": [{ "startOffset": 2084, "endOffset": 2425, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "wrapPromiseWithTimeout", + "ranges": [ + { "startOffset": 2426, "endOffset": 2979, "count": 10 }, + { "startOffset": 2569, "endOffset": 2673, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2713, "endOffset": 2870, "count": 10 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2775, "endOffset": 2839, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2938, "endOffset": 2975, "count": 10 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "338", + "url": "node:perf_hooks", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1235, "count": 1 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "339", + "url": "node:internal/perf/resource_timing", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 8319, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "PerformanceResourceTiming", + "ranges": [{ "startOffset": 933, "endOffset": 1147, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get name", + "ranges": [{ "startOffset": 1151, "endOffset": 1280, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get startTime", + "ranges": [{ "startOffset": 1284, "endOffset": 1424, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get duration", + "ranges": [{ "startOffset": 1428, "endOffset": 1595, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get initiatorType", + "ranges": [{ "startOffset": 1599, "endOffset": 1739, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get workerStart", + "ranges": [{ "startOffset": 1743, "endOffset": 1903, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get redirectStart", + "ranges": [{ "startOffset": 1907, "endOffset": 2059, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get redirectEnd", + "ranges": [{ "startOffset": 2063, "endOffset": 2211, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get fetchStart", + "ranges": [{ "startOffset": 2215, "endOffset": 2368, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get domainLookupStart", + "ranges": [{ "startOffset": 2372, "endOffset": 2559, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get domainLookupEnd", + "ranges": [{ "startOffset": 2563, "endOffset": 2746, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get connectStart", + "ranges": [{ "startOffset": 2750, "endOffset": 2930, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get connectEnd", + "ranges": [{ "startOffset": 2934, "endOffset": 3110, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get secureConnectionStart", + "ranges": [{ "startOffset": 3114, "endOffset": 3316, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get nextHopProtocol", + "ranges": [{ "startOffset": 3320, "endOffset": 3513, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get requestStart", + "ranges": [{ "startOffset": 3517, "endOffset": 3679, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get responseStart", + "ranges": [{ "startOffset": 3683, "endOffset": 3847, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get responseEnd", + "ranges": [{ "startOffset": 3851, "endOffset": 3991, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get encodedBodySize", + "ranges": [{ "startOffset": 3995, "endOffset": 4147, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get decodedBodySize", + "ranges": [{ "startOffset": 4151, "endOffset": 4303, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get transferSize", + "ranges": [{ "startOffset": 4307, "endOffset": 4565, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get deliveryType", + "ranges": [{ "startOffset": 4569, "endOffset": 4704, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get responseStatus", + "ranges": [{ "startOffset": 4708, "endOffset": 4847, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toJSON", + "ranges": [{ "startOffset": 4851, "endOffset": 5878, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createPerformanceResourceTiming", + "ranges": [{ "startOffset": 6822, "endOffset": 7576, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "markResourceTiming", + "ranges": [{ "startOffset": 7645, "endOffset": 8244, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "340", + "url": "node:internal/perf/usertiming", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 6472, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "getMark", + "ranges": [{ "startOffset": 1152, "endOffset": 1604, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "PerformanceMark", + "ranges": [{ "startOffset": 1657, "endOffset": 2388, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get detail", + "ranges": [{ "startOffset": 2392, "endOffset": 2501, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toJSON", + "ranges": [{ "startOffset": 2505, "endOffset": 2688, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "PerformanceMeasure", + "ranges": [{ "startOffset": 2939, "endOffset": 3236, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get detail", + "ranges": [{ "startOffset": 3240, "endOffset": 3352, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toJSON", + "ranges": [{ "startOffset": 3356, "endOffset": 3539, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createPerformanceMeasure", + "ranges": [{ "startOffset": 3741, "endOffset": 3946, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mark", + "ranges": [{ "startOffset": 3948, "endOffset": 4089, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "calculateStartDuration", + "ranges": [{ "startOffset": 4091, "endOffset": 5674, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "measure", + "ranges": [{ "startOffset": 5676, "endOffset": 6111, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "clearMarkTimings", + "ranges": [{ "startOffset": 6113, "endOffset": 6368, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "341", + "url": "node:internal/perf/nodetiming", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3858, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "PerformanceNodeTiming", + "ranges": [{ "startOffset": 746, "endOffset": 3084, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1411, "endOffset": 1507, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1623, "endOffset": 1717, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1837, "endOffset": 1934, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2052, "endOffset": 2148, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2265, "endOffset": 2360, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2486, "endOffset": 2603, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2864, "endOffset": 3062, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3088, "endOffset": 3329, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toJSON", + "ranges": [{ "startOffset": 3333, "endOffset": 3719, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "342", + "url": "node:internal/perf/performance", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 6443, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "Performance", + "ranges": [{ "startOffset": 1295, "endOffset": 1355, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1359, "endOffset": 1654, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "clearMarks", + "ranges": [{ "startOffset": 1658, "endOffset": 1893, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "clearMeasures", + "ranges": [{ "startOffset": 1897, "endOffset": 2110, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "clearResourceTimings", + "ranges": [{ "startOffset": 2114, "endOffset": 2335, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getEntries", + "ranges": [{ "startOffset": 2339, "endOffset": 2471, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getEntriesByName", + "ranges": [{ "startOffset": 2475, "endOffset": 2809, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getEntriesByType", + "ranges": [{ "startOffset": 2813, "endOffset": 3074, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mark", + "ranges": [{ "startOffset": 3078, "endOffset": 3303, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "measure", + "ranges": [{ "startOffset": 3307, "endOffset": 3596, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "now", + "ranges": [{ "startOffset": 3600, "endOffset": 3700, "count": 30 }], + "isBlockCoverage": true + }, + { + "functionName": "setResourceTimingBufferSize", + "ranges": [{ "startOffset": 3704, "endOffset": 4024, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get timeOrigin", + "ranges": [{ "startOffset": 4028, "endOffset": 4158, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toJSON", + "ranges": [{ "startOffset": 4162, "endOffset": 4394, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createPerformance", + "ranges": [{ "startOffset": 5995, "endOffset": 6164, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Performance", + "ranges": [{ "startOffset": 6052, "endOffset": 6143, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "dispatchBufferFull", + "ranges": [{ "startOffset": 6208, "endOffset": 6346, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "343", + "url": "node:internal/perf/event_loop_utilization", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1527, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "eventLoopUtilization", + "ranges": [{ "startOffset": 153, "endOffset": 446, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "internalEventLoopUtilization", + "ranges": [{ "startOffset": 448, "endOffset": 1447, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "344", + "url": "node:internal/perf/timerify", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2280, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "processComplete", + "ranges": [{ "startOffset": 610, "endOffset": 985, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "timerify", + "ranges": [{ "startOffset": 987, "endOffset": 2251, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "345", + "url": "node:internal/histogram", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 8498, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "isHistogram", + "ranges": [{ "startOffset": 911, "endOffset": 985, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Histogram", + "ranges": [{ "startOffset": 1049, "endOffset": 1186, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1190, "endOffset": 1602, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get count", + "ranges": [{ "startOffset": 1653, "endOffset": 1780, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get countBigInt", + "ranges": [{ "startOffset": 1831, "endOffset": 1970, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get min", + "ranges": [{ "startOffset": 2021, "endOffset": 2144, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get minBigInt", + "ranges": [{ "startOffset": 2195, "endOffset": 2330, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get max", + "ranges": [{ "startOffset": 2381, "endOffset": 2504, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get maxBigInt", + "ranges": [{ "startOffset": 2555, "endOffset": 2690, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get mean", + "ranges": [{ "startOffset": 2741, "endOffset": 2866, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get exceeds", + "ranges": [{ "startOffset": 2917, "endOffset": 3048, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get exceedsBigInt", + "ranges": [{ "startOffset": 3099, "endOffset": 3242, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get stddev", + "ranges": [{ "startOffset": 3293, "endOffset": 3422, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "percentile", + "ranges": [{ "startOffset": 3493, "endOffset": 3842, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "percentileBigInt", + "ranges": [{ "startOffset": 3913, "endOffset": 4274, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get percentiles", + "ranges": [{ "startOffset": 4337, "endOffset": 4537, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get percentilesBigInt", + "ranges": [{ "startOffset": 4600, "endOffset": 4812, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "reset", + "ranges": [{ "startOffset": 4849, "endOffset": 4965, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4969, "endOffset": 5124, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5128, "endOffset": 5188, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toJSON", + "ranges": [{ "startOffset": 5192, "endOffset": 5449, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "RecordableHistogram", + "ranges": [{ "startOffset": 5501, "endOffset": 5667, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "record", + "ranges": [{ "startOffset": 5736, "endOffset": 6010, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "recordDelta", + "ranges": [{ "startOffset": 6047, "endOffset": 6198, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "add", + "ranges": [{ "startOffset": 6254, "endOffset": 6527, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6531, "endOffset": 6696, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6700, "endOffset": 6760, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ClonedHistogram", + "ranges": [{ "startOffset": 6764, "endOffset": 6970, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ClonedHistogram.", + "ranges": [{ "startOffset": 7014, "endOffset": 7023, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ClonedRecordableHistogram", + "ranges": [{ "startOffset": 7026, "endOffset": 7337, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ClonedRecordableHistogram.", + "ranges": [{ "startOffset": 7391, "endOffset": 7400, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createRecordableHistogram", + "ranges": [{ "startOffset": 7403, "endOffset": 7497, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createHistogram", + "ranges": [{ "startOffset": 7640, "endOffset": 8325, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "346", + "url": "node:internal/perf/event_loop_delay", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1812, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "ELDHistogram", + "ranges": [{ "startOffset": 642, "endOffset": 702, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "enable", + "ranges": [{ "startOffset": 742, "endOffset": 953, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "disable", + "ranges": [{ "startOffset": 993, "endOffset": 1206, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1210, "endOffset": 1253, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "monitorEventLoopDelay", + "ranges": [{ "startOffset": 1346, "endOffset": 1770, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "347", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/formatter/progress_bar_formatter.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 4720, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 70, "endOffset": 151, "count": 2 }, + { "startOffset": 122, "endOffset": 127, "count": 1 }, + { "startOffset": 128, "endOffset": 148, "count": 1 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 658, "endOffset": 724, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 730, "endOffset": 902, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "ProgressBarFormatter", + "ranges": [{ "startOffset": 908, "endOffset": 1101, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "incrementStepCount", + "ranges": [{ "startOffset": 1106, "endOffset": 1261, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "initializeProgressBar", + "ranges": [{ "startOffset": 1266, "endOffset": 1699, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "logProgress", + "ranges": [{ "startOffset": 1704, "endOffset": 2049, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "logUndefinedParametertype", + "ranges": [{ "startOffset": 2054, "endOffset": 2219, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "logErrorIfNeeded", + "ranges": [{ "startOffset": 2224, "endOffset": 3168, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "logSummary", + "ranges": [{ "startOffset": 3173, "endOffset": 3541, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseEnvelope", + "ranges": [{ "startOffset": 3546, "endOffset": 4627, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "348", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/progress/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 49, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "349", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/progress/lib/node-progress.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 6678, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "ProgressBar", + "ranges": [{ "startOffset": 1261, "endOffset": 2186, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ProgressBar.tick", + "ranges": [{ "startOffset": 2380, "endOffset": 2855, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ProgressBar.render", + "ranges": [{ "startOffset": 3049, "endOffset": 5187, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ProgressBar.update", + "ranges": [{ "startOffset": 5724, "endOffset": 5858, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ProgressBar.interrupt", + "ranges": [{ "startOffset": 6030, "endOffset": 6402, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ProgressBar.terminate", + "ranges": [{ "startOffset": 6496, "endOffset": 6676, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "350", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/formatter/rerun_formatter.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 3815, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 760, "endOffset": 1368, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "ownKeys", + "ranges": [{ "startOffset": 792, "endOffset": 1056, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 1069, "endOffset": 1365, "count": 1 }, + { "startOffset": 1132, "endOffset": 1364, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 1429, "endOffset": 1510, "count": 1 }, + { "startOffset": 1487, "endOffset": 1507, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "isFailedAttempt", + "ranges": [{ "startOffset": 1845, "endOffset": 1974, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2021, "endOffset": 2030, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2036, "endOffset": 2100, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "RerunFormatter", + "ranges": [{ "startOffset": 2106, "endOffset": 2579, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getFailureMap", + "ranges": [{ "startOffset": 2584, "endOffset": 3325, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "formatFailedTestCases", + "ranges": [{ "startOffset": 3330, "endOffset": 3605, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "logFailedTestCases", + "ranges": [{ "startOffset": 3610, "endOffset": 3735, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "351", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/formatter/snippets_formatter.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 2975, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 760, "endOffset": 1368, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "ownKeys", + "ranges": [{ "startOffset": 792, "endOffset": 1056, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 1069, "endOffset": 1365, "count": 1 }, + { "startOffset": 1132, "endOffset": 1364, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 1429, "endOffset": 1510, "count": 1 }, + { "startOffset": 1487, "endOffset": 1507, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1822, "endOffset": 1974, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "SnippetsFormatter", + "ranges": [{ "startOffset": 1980, "endOffset": 2238, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "logSnippets", + "ranges": [{ "startOffset": 2243, "endOffset": 2889, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "352", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/formatter/usage_formatter.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 4512, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 760, "endOffset": 1368, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "ownKeys", + "ranges": [{ "startOffset": 792, "endOffset": 1056, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 1069, "endOffset": 1365, "count": 1 }, + { "startOffset": 1132, "endOffset": 1364, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 1429, "endOffset": 1510, "count": 2 }, + { "startOffset": 1481, "endOffset": 1486, "count": 1 }, + { "startOffset": 1487, "endOffset": 1507, "count": 1 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1880, "endOffset": 2108, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "UsageFormatter", + "ranges": [{ "startOffset": 2114, "endOffset": 2369, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "logUsage", + "ranges": [{ "startOffset": 2374, "endOffset": 4432, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "353", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/formatter/usage_json_formatter.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1297, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 70, "endOffset": 151, "count": 1 }, + { "startOffset": 128, "endOffset": 148, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 402, "endOffset": 544, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "UsageJsonFormatter", + "ranges": [{ "startOffset": 550, "endOffset": 805, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "logUsage", + "ranges": [{ "startOffset": 810, "endOffset": 1074, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "replacer", + "ranges": [{ "startOffset": 1079, "endOffset": 1208, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "354", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/formatter/builtin/message.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 271, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "formatter", + "ranges": [{ "startOffset": 124, "endOffset": 231, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "355", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/formatter/builtin/html.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2795, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 70, "endOffset": 151, "count": 2 }, + { "startOffset": 122, "endOffset": 127, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "formatter", + "ranges": [{ "startOffset": 609, "endOffset": 1806, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "externaliseAttachment", + "ranges": [{ "startOffset": 1981, "endOffset": 2762, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "356", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/html-formatter/dist/src/index.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 1040, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 88, "endOffset": 405, "count": 1 }, + { "startOffset": 232, "endOffset": 247, "count": 0 }, + { "startOffset": 264, "endOffset": 284, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 327, "endOffset": 354, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__exportStar", + "ranges": [{ "startOffset": 541, "endOffset": 692, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "357", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/html-formatter/dist/src/CucumberHtmlStream.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 4099, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 70, "endOffset": 151, "count": 2 }, + { "startOffset": 122, "endOffset": 127, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "CucumberHtmlStream", + "ranges": [{ "startOffset": 500, "endOffset": 889, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_transform", + "ranges": [{ "startOffset": 894, "endOffset": 1244, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_flush", + "ranges": [{ "startOffset": 1249, "endOffset": 1314, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writePreMessageUnlessAlreadyWritten", + "ranges": [{ "startOffset": 1319, "endOffset": 1965, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writePostMessage", + "ranges": [{ "startOffset": 1970, "endOffset": 2524, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writeFile", + "ranges": [{ "startOffset": 2529, "endOffset": 2801, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writeTemplateBetween", + "ranges": [{ "startOffset": 2806, "endOffset": 3353, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readTemplate", + "ranges": [{ "startOffset": 3358, "endOffset": 3750, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writeMessage", + "ranges": [{ "startOffset": 3755, "endOffset": 4001, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "358", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/mime/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 127, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "359", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/mime/Mime.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2892, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Mime", + "ranges": [ + { "startOffset": 102, "endOffset": 418, "count": 1 }, + { "startOffset": 245, "endOffset": 281, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "Mime.define", + "ranges": [ + { "startOffset": 1250, "endOffset": 2264, "count": 2 }, + { "startOffset": 1305, "endOffset": 2262, "count": 956 }, + { "startOffset": 1478, "endOffset": 2065, "count": 1211 }, + { "startOffset": 1652, "endOffset": 1679, "count": 38 }, + { "startOffset": 1679, "endOffset": 1721, "count": 1173 }, + { "startOffset": 1723, "endOffset": 2027, "count": 0 }, + { "startOffset": 2027, "endOffset": 2065, "count": 1173 }, + { "startOffset": 2230, "endOffset": 2235, "count": 923 }, + { "startOffset": 2236, "endOffset": 2251, "count": 33 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1346, "endOffset": 1395, "count": 1211 }], + "isBlockCoverage": true + }, + { + "functionName": "Mime.getType", + "ranges": [{ "startOffset": 2341, "endOffset": 2641, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Mime.getExtension", + "ranges": [{ "startOffset": 2735, "endOffset": 2866, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "360", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/mime/types/standard.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 9530, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "361", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/mime/types/other.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 25894, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "362", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/configuration/default_configuration.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 626, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "363", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/configuration/from_file.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 4869, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 70, "endOffset": 151, "count": 3 }, + { "startOffset": 122, "endOffset": 127, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "fromFile", + "ranges": [{ "startOffset": 620, "endOffset": 1760, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "handleDefaultFunctionDefinition", + "ranges": [{ "startOffset": 1761, "endOffset": 2181, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "loadFile", + "ranges": [{ "startOffset": 2182, "endOffset": 4589, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readPackageJson", + "ranges": [{ "startOffset": 4590, "endOffset": 4831, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "364", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/yaml/dist/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1769, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "365", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/yaml/dist/compose/composer.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 8692, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "getErrorPos", + "ranges": [{ "startOffset": 329, "endOffset": 624, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parsePrelude", + "ranges": [{ "startOffset": 625, "endOffset": 1559, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Composer", + "ranges": [{ "startOffset": 1836, "endOffset": 2535, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "decorate", + "ranges": [{ "startOffset": 2540, "endOffset": 3946, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "streamInfo", + "ranges": [{ "startOffset": 4078, "endOffset": 4293, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "compose", + "ranges": [{ "startOffset": 4665, "endOffset": 4842, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "next", + "ranges": [{ "startOffset": 4897, "endOffset": 7647, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "end", + "ranges": [{ "startOffset": 8042, "endOffset": 8659, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "366", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/yaml/dist/doc/directives.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 6237, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "escapeTagName", + "ranges": [{ "startOffset": 242, "endOffset": 297, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Directives", + "ranges": [{ "startOffset": 322, "endOffset": 769, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "clone", + "ranges": [{ "startOffset": 774, "endOffset": 908, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "atDocument", + "ranges": [{ "startOffset": 1079, "endOffset": 1625, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "add", + "ranges": [{ "startOffset": 1752, "endOffset": 3322, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "tagName", + "ranges": [{ "startOffset": 3559, "endOffset": 4763, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "tagString", + "ranges": [{ "startOffset": 4916, "endOffset": 5184, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toString", + "ranges": [{ "startOffset": 5189, "endOffset": 6081, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "367", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/yaml/dist/nodes/identity.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1794, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "isAlias", + "ranges": [{ "startOffset": 312, "endOffset": 385, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isDocument", + "ranges": [{ "startOffset": 406, "endOffset": 477, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isMap", + "ranges": [{ "startOffset": 493, "endOffset": 564, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isPair", + "ranges": [{ "startOffset": 581, "endOffset": 653, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isScalar", + "ranges": [{ "startOffset": 672, "endOffset": 746, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isSeq", + "ranges": [{ "startOffset": 762, "endOffset": 833, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isCollection", + "ranges": [{ "startOffset": 835, "endOffset": 1044, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isNode", + "ranges": [{ "startOffset": 1045, "endOffset": 1297, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hasAnchor", + "ranges": [{ "startOffset": 1316, "endOffset": 1381, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "368", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/yaml/dist/visit.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 9253, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "visit", + "ranges": [{ "startOffset": 1741, "endOffset": 2068, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visit_", + "ranges": [{ "startOffset": 2427, "endOffset": 3761, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitAsync", + "ranges": [{ "startOffset": 5396, "endOffset": 5756, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitAsync_", + "ranges": [{ "startOffset": 6130, "endOffset": 7519, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "initVisitor", + "ranges": [{ "startOffset": 7520, "endOffset": 8099, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "callVisitor", + "ranges": [{ "startOffset": 8100, "endOffset": 8649, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "replaceNode", + "ranges": [{ "startOffset": 8650, "endOffset": 9195, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "369", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/yaml/dist/doc/Document.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 13114, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Document", + "ranges": [{ "startOffset": 552, "endOffset": 2164, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "clone", + "ranges": [{ "startOffset": 2347, "endOffset": 3146, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "add", + "ranges": [{ "startOffset": 3192, "endOffset": 3293, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addIn", + "ranges": [{ "startOffset": 3339, "endOffset": 3456, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createAlias", + "ranges": [{ "startOffset": 3915, "endOffset": 4287, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createNode", + "ranges": [{ "startOffset": 4292, "endOffset": 5771, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createPair", + "ranges": [{ "startOffset": 5939, "endOffset": 6131, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "delete", + "ranges": [{ "startOffset": 6252, "endOffset": 6355, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "deleteIn", + "ranges": [{ "startOffset": 6476, "endOffset": 6867, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 7103, "endOffset": 7257, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getIn", + "ranges": [{ "startOffset": 7494, "endOffset": 7834, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "has", + "ranges": [{ "startOffset": 7922, "endOffset": 8024, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hasIn", + "ranges": [{ "startOffset": 8103, "endOffset": 8301, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 8447, "endOffset": 8789, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setIn", + "ranges": [{ "startOffset": 8935, "endOffset": 9469, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setSchema", + "ranges": [{ "startOffset": 9793, "endOffset": 11329, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toJS", + "ranges": [{ "startOffset": 11384, "endOffset": 12080, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toJSON", + "ranges": [{ "startOffset": 12267, "endOffset": 12378, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toString", + "ranges": [{ "startOffset": 12433, "endOffset": 12907, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "assertCollection", + "ranges": [{ "startOffset": 12910, "endOffset": 13083, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "370", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/yaml/dist/nodes/Alias.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3901, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Alias", + "ranges": [{ "startOffset": 243, "endOffset": 487, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolve", + "ranges": [{ "startOffset": 635, "endOffset": 1446, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toJSON", + "ranges": [{ "startOffset": 1451, "endOffset": 2658, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toString", + "ranges": [{ "startOffset": 2663, "endOffset": 3152, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getAliasCount", + "ranges": [{ "startOffset": 3155, "endOffset": 3876, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "371", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/yaml/dist/doc/anchors.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2386, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "anchorIsValid", + "ranges": [{ "startOffset": 187, "endOffset": 450, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "anchorNames", + "ranges": [{ "startOffset": 451, "endOffset": 673, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "findNewAnchor", + "ranges": [{ "startOffset": 754, "endOffset": 931, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createNodeAnchors", + "ranges": [{ "startOffset": 932, "endOffset": 2224, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "372", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/yaml/dist/nodes/Node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1382, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "NodeBase", + "ranges": [{ "startOffset": 165, "endOffset": 264, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "clone", + "ranges": [{ "startOffset": 309, "endOffset": 519, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toJS", + "ranges": [{ "startOffset": 583, "endOffset": 1349, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "373", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/yaml/dist/doc/applyReviver.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1950, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "applyReviver", + "ranges": [{ "startOffset": 292, "endOffset": 1911, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "374", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/yaml/dist/nodes/toJS.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1292, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "toJS", + "ranges": [{ "startOffset": 428, "endOffset": 1269, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "375", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/yaml/dist/nodes/Collection.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 5221, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "collectionFromPath", + "ranges": [{ "startOffset": 140, "endOffset": 788, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isEmptyPath", + "ranges": [{ "startOffset": 952, "endOffset": 1049, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Collection", + "ranges": [{ "startOffset": 1096, "endOffset": 1327, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "clone", + "ranges": [{ "startOffset": 1464, "endOffset": 1845, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addIn", + "ranges": [{ "startOffset": 2065, "endOffset": 2595, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "deleteIn", + "ranges": [{ "startOffset": 2718, "endOffset": 3073, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getIn", + "ranges": [{ "startOffset": 3309, "endOffset": 3633, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hasAllNullValues", + "ranges": [{ "startOffset": 3638, "endOffset": 4085, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hasIn", + "ranges": [{ "startOffset": 4175, "endOffset": 4409, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setIn", + "ranges": [{ "startOffset": 4557, "endOffset": 5100, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "376", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/yaml/dist/doc/createNode.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3138, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "findTagObject", + "ranges": [{ "startOffset": 197, "endOffset": 554, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createNode", + "ranges": [{ "startOffset": 555, "endOffset": 3103, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "377", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/yaml/dist/nodes/Scalar.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 759, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "isScalarValue", + "ranges": [{ "startOffset": 145, "endOffset": 224, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Scalar", + "ranges": [{ "startOffset": 267, "endOffset": 353, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toJSON", + "ranges": [{ "startOffset": 358, "endOffset": 455, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toString", + "ranges": [{ "startOffset": 460, "endOffset": 513, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "378", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/yaml/dist/nodes/Pair.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1232, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "createPair", + "ranges": [{ "startOffset": 222, "endOffset": 407, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Pair", + "ranges": [{ "startOffset": 425, "endOffset": 598, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "clone", + "ranges": [{ "startOffset": 603, "endOffset": 844, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toJSON", + "ranges": [{ "startOffset": 849, "endOffset": 987, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toString", + "ranges": [{ "startOffset": 992, "endOffset": 1174, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "379", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/yaml/dist/stringify/stringifyPair.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 5470, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "stringifyPair", + "ranges": [{ "startOffset": 208, "endOffset": 5429, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "380", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/yaml/dist/stringify/stringify.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 4534, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "createStringifyContext", + "ranges": [{ "startOffset": 220, "endOffset": 1415, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getTagObject", + "ranges": [{ "startOffset": 1416, "endOffset": 2387, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stringifyProps", + "ranges": [{ "startOffset": 2469, "endOffset": 2977, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stringify", + "ranges": [{ "startOffset": 2978, "endOffset": 4444, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "381", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/yaml/dist/stringify/stringifyComment.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 801, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "stringifyComment", + "ranges": [{ "startOffset": 223, "endOffset": 267, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "indentComment", + "ranges": [{ "startOffset": 269, "endOffset": 449, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lineComment", + "ranges": [{ "startOffset": 470, "endOffset": 679, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "382", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/yaml/dist/stringify/stringifyString.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 13345, "count": 1 }, + { "startOffset": 6025, "endOffset": 6073, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "getFoldOptions", + "ranges": [{ "startOffset": 134, "endOffset": 312, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "containsDocumentMarker", + "ranges": [{ "startOffset": 469, "endOffset": 506, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lineLengthOverLimit", + "ranges": [{ "startOffset": 508, "endOffset": 1027, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "doubleQuotedString", + "ranges": [{ "startOffset": 1028, "endOffset": 4637, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "singleQuotedString", + "ranges": [{ "startOffset": 4638, "endOffset": 5263, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "quotedString", + "ranges": [{ "startOffset": 5264, "endOffset": 5794, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "blockString", + "ranges": [{ "startOffset": 6074, "endOffset": 9621, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "plainString", + "ranges": [{ "startOffset": 9622, "endOffset": 11707, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stringifyString", + "ranges": [{ "startOffset": 11708, "endOffset": 13300, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "383", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/yaml/dist/stringify/foldFlowLines.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 4885, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "foldFlowLines", + "ranges": [{ "startOffset": 316, "endOffset": 4186, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "consumeMoreIndentedLines", + "ranges": [{ "startOffset": 4298, "endOffset": 4745, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "384", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/yaml/dist/nodes/addPairToJSMap.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2338, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "addPairToJSMap", + "ranges": [{ "startOffset": 228, "endOffset": 1248, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stringifyKey", + "ranges": [{ "startOffset": 1249, "endOffset": 2295, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "385", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/yaml/dist/log.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 459, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "debug", + "ranges": [{ "startOffset": 55, "endOffset": 160, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "warn", + "ranges": [{ "startOffset": 161, "endOffset": 413, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "386", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/yaml/dist/schema/yaml-1.1/merge.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2616, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "identify", + "ranges": [{ "startOffset": 684, "endOffset": 786, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolve", + "ranges": [{ "startOffset": 875, "endOffset": 977, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stringify", + "ranges": [{ "startOffset": 994, "endOffset": 1009, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isMergeKey", + "ranges": [{ "startOffset": 1032, "endOffset": 1273, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addMergeToJSMap", + "ranges": [{ "startOffset": 1275, "endOffset": 1633, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mergeValue", + "ranges": [{ "startOffset": 1634, "endOffset": 2391, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolveAliasValue", + "ranges": [{ "startOffset": 2392, "endOffset": 2515, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "387", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/yaml/dist/schema/Schema.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1547, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "sortMapEntriesByKey", + "ranges": [{ "startOffset": 245, "endOffset": 297, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Schema", + "ranges": [{ "startOffset": 318, "endOffset": 1344, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "clone", + "ranges": [{ "startOffset": 1349, "endOffset": 1518, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "388", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/yaml/dist/schema/common/map.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 483, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "resolve", + "ranges": [{ "startOffset": 242, "endOffset": 381, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createNode", + "ranges": [{ "startOffset": 399, "endOffset": 459, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "389", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/yaml/dist/nodes/YAMLMap.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 5105, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "findPair", + "ranges": [{ "startOffset": 299, "endOffset": 658, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get tagName", + "ranges": [{ "startOffset": 716, "endOffset": 777, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "YAMLMap", + "ranges": [{ "startOffset": 782, "endOffset": 871, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "from", + "ranges": [{ "startOffset": 1018, "endOffset": 1911, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "add", + "ranges": [{ "startOffset": 2132, "endOffset": 3312, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "delete", + "ranges": [{ "startOffset": 3317, "endOffset": 3522, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3527, "endOffset": 3723, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "has", + "ranges": [{ "startOffset": 3728, "endOffset": 3788, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 3793, "endOffset": 3867, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toJSON", + "ranges": [{ "startOffset": 4084, "endOffset": 4360, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toString", + "ranges": [{ "startOffset": 4365, "endOffset": 5045, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "390", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/yaml/dist/stringify/stringifyCollection.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 5718, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "stringifyCollection", + "ranges": [{ "startOffset": 164, "endOffset": 399, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stringifyBlockCollection", + "ranges": [{ "startOffset": 400, "endOffset": 2325, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stringifyFlowCollection", + "ranges": [{ "startOffset": 2326, "endOffset": 5310, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addCommentBefore", + "ranges": [{ "startOffset": 5311, "endOffset": 5665, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "391", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/yaml/dist/schema/common/seq.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 484, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "resolve", + "ranges": [{ "startOffset": 242, "endOffset": 382, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createNode", + "ranges": [{ "startOffset": 400, "endOffset": 460, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "392", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/yaml/dist/nodes/YAMLSeq.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3667, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get tagName", + "ranges": [{ "startOffset": 353, "endOffset": 414, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "YAMLSeq", + "ranges": [{ "startOffset": 419, "endOffset": 508, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "add", + "ranges": [{ "startOffset": 513, "endOffset": 563, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "delete", + "ranges": [{ "startOffset": 818, "endOffset": 1016, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1021, "endOffset": 1259, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "has", + "ranges": [{ "startOffset": 1474, "endOffset": 1595, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 1872, "endOffset": 2226, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toJSON", + "ranges": [{ "startOffset": 2231, "endOffset": 2470, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toString", + "ranges": [{ "startOffset": 2475, "endOffset": 2841, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "from", + "ranges": [{ "startOffset": 2853, "endOffset": 3381, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "asItemIndex", + "ranges": [{ "startOffset": 3384, "endOffset": 3638, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "393", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/yaml/dist/schema/common/string.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 457, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "identify", + "ranges": [{ "startOffset": 116, "endOffset": 150, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolve", + "ranges": [{ "startOffset": 218, "endOffset": 228, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stringify", + "ranges": [{ "startOffset": 234, "endOffset": 427, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "394", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/yaml/dist/schema/tags.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3239, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "getTags", + "ranges": [{ "startOffset": 1675, "endOffset": 3171, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "395", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/yaml/dist/schema/common/null.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 469, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "identify", + "ranges": [{ "startOffset": 95, "endOffset": 117, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createNode", + "ranges": [{ "startOffset": 135, "endOffset": 164, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolve", + "ranges": [{ "startOffset": 268, "endOffset": 297, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stringify", + "ranges": [{ "startOffset": 314, "endOffset": 437, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "396", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/yaml/dist/schema/core/bool.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 635, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "identify", + "ranges": [{ "startOffset": 95, "endOffset": 130, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolve", + "ranges": [{ "startOffset": 246, "endOffset": 304, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stringify", + "ranges": [{ "startOffset": 310, "endOffset": 603, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "397", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/yaml/dist/schema/core/float.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1510, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "identify", + "ranges": [{ "startOffset": 165, "endOffset": 199, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolve", + "ranges": [{ "startOffset": 329, "endOffset": 490, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "identify", + "ranges": [{ "startOffset": 575, "endOffset": 609, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolve", + "ranges": [{ "startOffset": 766, "endOffset": 788, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stringify", + "ranges": [{ "startOffset": 794, "endOffset": 949, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "identify", + "ranges": [{ "startOffset": 983, "endOffset": 1017, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolve", + "ranges": [{ "startOffset": 1126, "endOffset": 1376, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "398", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/yaml/dist/stringify/stringifyNumber.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 808, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "stringifyNumber", + "ranges": [{ "startOffset": 15, "endOffset": 763, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "399", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/yaml/dist/schema/core/int.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1407, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "intIdentify", + "ranges": [{ "startOffset": 105, "endOffset": 168, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "intResolve", + "ranges": [{ "startOffset": 189, "endOffset": 298, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "intStringify", + "ranges": [{ "startOffset": 300, "endOffset": 513, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "identify", + "ranges": [{ "startOffset": 545, "endOffset": 586, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolve", + "ranges": [{ "startOffset": 697, "endOffset": 747, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stringify", + "ranges": [{ "startOffset": 764, "endOffset": 799, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolve", + "ranges": [{ "startOffset": 937, "endOffset": 988, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "identify", + "ranges": [{ "startOffset": 1071, "endOffset": 1112, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolve", + "ranges": [{ "startOffset": 1229, "endOffset": 1280, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stringify", + "ranges": [{ "startOffset": 1297, "endOffset": 1333, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "400", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/yaml/dist/schema/core/schema.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 509, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "401", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/yaml/dist/schema/json/schema.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1900, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "intIdentify", + "ranges": [{ "startOffset": 141, "endOffset": 237, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stringifyJSON", + "ranges": [{ "startOffset": 260, "endOffset": 296, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "identify", + "ranges": [{ "startOffset": 344, "endOffset": 378, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolve", + "ranges": [{ "startOffset": 458, "endOffset": 468, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "identify", + "ranges": [{ "startOffset": 534, "endOffset": 556, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createNode", + "ranges": [{ "startOffset": 578, "endOffset": 607, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolve", + "ranges": [{ "startOffset": 712, "endOffset": 722, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "identify", + "ranges": [{ "startOffset": 788, "endOffset": 823, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolve", + "ranges": [{ "startOffset": 936, "endOffset": 957, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolve", + "ranges": [{ "startOffset": 1153, "endOffset": 1234, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stringify", + "ranges": [{ "startOffset": 1255, "endOffset": 1331, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "identify", + "ranges": [{ "startOffset": 1363, "endOffset": 1397, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolve", + "ranges": [{ "startOffset": 1551, "endOffset": 1573, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolve", + "ranges": [{ "startOffset": 1688, "endOffset": 1804, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "402", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/yaml/dist/schema/yaml-1.1/binary.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2800, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "identify", + "ranges": [{ "startOffset": 200, "endOffset": 236, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolve", + "ranges": [{ "startOffset": 647, "endOffset": 1310, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stringify", + "ranges": [{ "startOffset": 1316, "endOffset": 2770, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "403", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/yaml/dist/schema/yaml-1.1/omap.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2581, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "YAMLOMap", + "ranges": [{ "startOffset": 288, "endOffset": 670, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toJSON", + "ranges": [{ "startOffset": 846, "endOffset": 1499, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "from", + "ranges": [{ "startOffset": 1511, "endOffset": 1702, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "identify", + "ranges": [{ "startOffset": 1798, "endOffset": 1827, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolve", + "ranges": [{ "startOffset": 1913, "endOffset": 2445, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createNode", + "ranges": [{ "startOffset": 2463, "endOffset": 2526, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "404", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/yaml/dist/schema/yaml-1.1/pairs.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2854, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "resolvePairs", + "ranges": [{ "startOffset": 206, "endOffset": 1383, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createPairs", + "ranges": [{ "startOffset": 1384, "endOffset": 2604, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "405", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/yaml/dist/schema/yaml-1.1/schema.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 912, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "406", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/yaml/dist/schema/yaml-1.1/bool.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 841, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "boolStringify", + "ranges": [{ "startOffset": 63, "endOffset": 292, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "identify", + "ranges": [{ "startOffset": 325, "endOffset": 348, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolve", + "ranges": [{ "startOffset": 473, "endOffset": 502, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "identify", + "ranges": [{ "startOffset": 569, "endOffset": 593, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolve", + "ranges": [{ "startOffset": 720, "endOffset": 750, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "407", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/yaml/dist/schema/yaml-1.1/float.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1626, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "identify", + "ranges": [{ "startOffset": 165, "endOffset": 199, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolve", + "ranges": [{ "startOffset": 329, "endOffset": 492, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "identify", + "ranges": [{ "startOffset": 577, "endOffset": 611, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolve", + "ranges": [{ "startOffset": 767, "endOffset": 809, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stringify", + "ranges": [{ "startOffset": 815, "endOffset": 970, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "identify", + "ranges": [{ "startOffset": 1004, "endOffset": 1038, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolve", + "ranges": [{ "startOffset": 1146, "endOffset": 1492, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "408", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/yaml/dist/schema/yaml-1.1/int.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2232, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "intIdentify", + "ranges": [{ "startOffset": 105, "endOffset": 168, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "intResolve", + "ranges": [{ "startOffset": 170, "endOffset": 816, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "intStringify", + "ranges": [{ "startOffset": 817, "endOffset": 1092, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolve", + "ranges": [{ "startOffset": 1252, "endOffset": 1302, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stringify", + "ranges": [{ "startOffset": 1319, "endOffset": 1354, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolve", + "ranges": [{ "startOffset": 1516, "endOffset": 1566, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stringify", + "ranges": [{ "startOffset": 1583, "endOffset": 1617, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolve", + "ranges": [{ "startOffset": 1761, "endOffset": 1812, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolve", + "ranges": [{ "startOffset": 2029, "endOffset": 2080, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stringify", + "ranges": [{ "startOffset": 2097, "endOffset": 2133, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "409", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/yaml/dist/schema/yaml-1.1/set.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3114, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "YAMLSet", + "ranges": [{ "startOffset": 203, "endOffset": 285, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "add", + "ranges": [{ "startOffset": 290, "endOffset": 757, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 899, "endOffset": 1153, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 1158, "endOffset": 1581, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toJSON", + "ranges": [{ "startOffset": 1586, "endOffset": 1650, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toString", + "ranges": [{ "startOffset": 1655, "endOffset": 1989, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "from", + "ranges": [{ "startOffset": 2001, "endOffset": 2431, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "identify", + "ranges": [{ "startOffset": 2524, "endOffset": 2553, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createNode", + "ranges": [{ "startOffset": 2649, "endOffset": 2711, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolve", + "ranges": [{ "startOffset": 2717, "endOffset": 3063, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "410", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/yaml/dist/schema/yaml-1.1/timestamp.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3775, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "parseSexagesimal", + "ranges": [{ "startOffset": 164, "endOffset": 542, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stringifySexagesimal", + "ranges": [{ "startOffset": 647, "endOffset": 1573, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "identify", + "ranges": [{ "startOffset": 1606, "endOffset": 1667, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolve", + "ranges": [{ "startOffset": 1805, "endOffset": 1875, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "identify", + "ranges": [{ "startOffset": 1950, "endOffset": 1984, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolve", + "ranges": [{ "startOffset": 2133, "endOffset": 2168, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "identify", + "ranges": [{ "startOffset": 2243, "endOffset": 2273, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolve", + "ranges": [{ "startOffset": 2917, "endOffset": 3588, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stringify", + "ranges": [{ "startOffset": 3605, "endOffset": 3681, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "411", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/yaml/dist/stringify/stringifyDocument.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3104, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "stringifyDocument", + "ranges": [{ "startOffset": 164, "endOffset": 3055, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "412", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/yaml/dist/errors.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2112, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "YAMLError", + "ranges": [{ "startOffset": 51, "endOffset": 221, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "YAMLParseError", + "ranges": [{ "startOffset": 269, "endOffset": 361, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "YAMLWarning", + "ranges": [{ "startOffset": 406, "endOffset": 495, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "prettifyError", + "ranges": [{ "startOffset": 520, "endOffset": 1963, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "413", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/yaml/dist/compose/compose-doc.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1615, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "composeDoc", + "ranges": [{ "startOffset": 206, "endOffset": 1580, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "414", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/yaml/dist/compose/compose-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 4269, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "composeNode", + "ranges": [{ "startOffset": 384, "endOffset": 2882, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "composeEmptyNode", + "ranges": [{ "startOffset": 2883, "endOffset": 3576, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "composeAlias", + "ranges": [{ "startOffset": 3577, "endOffset": 4187, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "415", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/yaml/dist/compose/compose-collection.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3613, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "resolveCollection", + "ranges": [{ "startOffset": 383, "endOffset": 1120, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "composeCollection", + "ranges": [{ "startOffset": 1121, "endOffset": 3564, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "416", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/yaml/dist/compose/resolve-block-map.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 5071, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "resolveBlockMap", + "ranges": [{ "startOffset": 411, "endOffset": 5026, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "417", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/yaml/dist/compose/resolve-props.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 5579, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "resolveProps", + "ranges": [{ "startOffset": 15, "endOffset": 5540, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "418", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/yaml/dist/compose/util-contains-newline.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1081, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "containsNewline", + "ranges": [{ "startOffset": 15, "endOffset": 1036, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "419", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/yaml/dist/compose/util-flow-indent-check.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 547, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "flowIndentCheck", + "ranges": [{ "startOffset": 81, "endOffset": 502, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "420", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/yaml/dist/compose/util-map-includes.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 471, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "mapIncludes", + "ranges": [{ "startOffset": 64, "endOffset": 434, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "421", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/yaml/dist/compose/resolve-block-seq.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1812, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "resolveBlockSeq", + "ranges": [{ "startOffset": 178, "endOffset": 1767, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "422", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/yaml/dist/compose/resolve-flow-collection.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 8925, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "isBlock", + "ranges": [{ "startOffset": 508, "endOffset": 586, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolveFlowCollection", + "ranges": [{ "startOffset": 588, "endOffset": 8868, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "423", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/yaml/dist/compose/resolve-end.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1264, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "resolveEnd", + "ranges": [{ "startOffset": 15, "endOffset": 1229, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "424", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/yaml/dist/compose/compose-scalar.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3446, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "composeScalar", + "ranges": [{ "startOffset": 232, "endOffset": 1724, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "findScalarTagByName", + "ranges": [{ "startOffset": 1725, "endOffset": 2691, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "findScalarTagByTest", + "ranges": [{ "startOffset": 2692, "endOffset": 3405, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "425", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/yaml/dist/compose/resolve-block-scalar.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 7500, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "resolveBlockScalar", + "ranges": [{ "startOffset": 60, "endOffset": 4795, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseBlockScalarHeader", + "ranges": [{ "startOffset": 4796, "endOffset": 7020, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "splitLines", + "ranges": [{ "startOffset": 7084, "endOffset": 7449, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "426", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/yaml/dist/compose/resolve-flow-scalar.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 7386, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "resolveFlowScalar", + "ranges": [{ "startOffset": 106, "endOffset": 1413, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "plainValue", + "ranges": [{ "startOffset": 1414, "endOffset": 2205, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "singleQuotedValue", + "ranges": [{ "startOffset": 2206, "endOffset": 2456, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "foldLines", + "ranges": [{ "startOffset": 2457, "endOffset": 3644, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "doubleQuotedValue", + "ranges": [{ "startOffset": 3645, "endOffset": 5803, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "foldNewline", + "ranges": [{ "startOffset": 5926, "endOffset": 6338, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseCharCode", + "ranges": [{ "startOffset": 6884, "endOffset": 7337, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "427", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/yaml/dist/compose/util-empty-scalar-position.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 850, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "emptyScalarPosition", + "ranges": [{ "startOffset": 15, "endOffset": 797, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "428", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/yaml/dist/parse/cst.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3242, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "isCollection", + "ranges": [{ "startOffset": 514, "endOffset": 552, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isScalar", + "ranges": [{ "startOffset": 645, "endOffset": 835, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "prettyToken", + "ranges": [{ "startOffset": 919, "endOffset": 1241, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "tokenType", + "ranges": [{ "startOffset": 1323, "endOffset": 2769, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "429", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/yaml/dist/parse/cst-scalar.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 9382, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "resolveAsScalar", + "ranges": [{ "startOffset": 262, "endOffset": 1071, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createScalarToken", + "ranges": [{ "startOffset": 2091, "endOffset": 3411, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setScalarValue", + "ranges": [{ "startOffset": 4634, "endOffset": 6240, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setBlockScalarValue", + "ranges": [{ "startOffset": 6241, "endOffset": 7272, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addEndtoBlockProps", + "ranges": [{ "startOffset": 7323, "endOffset": 7698, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setFlowScalarValue", + "ranges": [{ "startOffset": 7699, "endOffset": 9249, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "430", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/yaml/dist/parse/cst-stringify.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1799, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "stringify", + "ranges": [{ "startOffset": 218, "endOffset": 283, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stringifyToken", + "ranges": [{ "startOffset": 285, "endOffset": 1448, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stringifyItem", + "ranges": [{ "startOffset": 1449, "endOffset": 1766, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "431", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/yaml/dist/parse/cst-visit.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3978, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "visit", + "ranges": [{ "startOffset": 1690, "endOffset": 1871, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visit.itemAtPath", + "ranges": [{ "startOffset": 2303, "endOffset": 2567, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visit.parentCollection", + "ranges": [{ "startOffset": 2794, "endOffset": 3057, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_visit", + "ranges": [{ "startOffset": 3059, "endOffset": 3953, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "432", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/yaml/dist/parse/lexer.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 24149, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "isEmpty", + "ranges": [{ "startOffset": 1422, "endOffset": 1637, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isNotAnchorChar", + "ranges": [{ "startOffset": 1923, "endOffset": 1964, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Lexer", + "ranges": [{ "startOffset": 2622, "endOffset": 4182, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lex", + "ranges": [{ "startOffset": 4401, "endOffset": 4864, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "atLineEnd", + "ranges": [{ "startOffset": 4869, "endOffset": 5190, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "charAt", + "ranges": [{ "startOffset": 5195, "endOffset": 5254, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "continueScalar", + "ranges": [{ "startOffset": 5259, "endOffset": 6079, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getLine", + "ranges": [{ "startOffset": 6084, "endOffset": 6523, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hasChars", + "ranges": [{ "startOffset": 6528, "endOffset": 6598, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setNext", + "ranges": [{ "startOffset": 6603, "endOffset": 6782, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "peek", + "ranges": [{ "startOffset": 6787, "endOffset": 6850, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseNext", + "ranges": [{ "startOffset": 6855, "endOffset": 7585, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseStream", + "ranges": [{ "startOffset": 7590, "endOffset": 8992, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseLineStart", + "ranges": [{ "startOffset": 8997, "endOffset": 9812, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseBlockStart", + "ranges": [{ "startOffset": 9817, "endOffset": 10276, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseDocument", + "ranges": [{ "startOffset": 10281, "endOffset": 11694, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseFlowCollection", + "ranges": [{ "startOffset": 11699, "endOffset": 14602, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseQuotedScalar", + "ranges": [{ "startOffset": 14607, "endOffset": 16034, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseBlockScalarHeader", + "ranges": [{ "startOffset": 16039, "endOffset": 16548, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseBlockScalar", + "ranges": [{ "startOffset": 16553, "endOffset": 19236, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parsePlainScalar", + "ranges": [{ "startOffset": 19241, "endOffset": 20762, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pushCount", + "ranges": [{ "startOffset": 20767, "endOffset": 20937, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pushToIndex", + "ranges": [{ "startOffset": 20942, "endOffset": 21207, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pushIndicators", + "ranges": [{ "startOffset": 21212, "endOffset": 22460, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pushTag", + "ranges": [{ "startOffset": 22465, "endOffset": 23300, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pushNewline", + "ranges": [{ "startOffset": 23305, "endOffset": 23576, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pushSpaces", + "ranges": [{ "startOffset": 23581, "endOffset": 23923, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pushUntil", + "ranges": [{ "startOffset": 23928, "endOffset": 24122, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "433", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/yaml/dist/parse/line-counter.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1445, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "LineCounter", + "ranges": [{ "startOffset": 214, "endOffset": 1406, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "434", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/yaml/dist/parse/parser.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 35551, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "includesToken", + "ranges": [{ "startOffset": 121, "endOffset": 279, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "findNonEmptyIndex", + "ranges": [{ "startOffset": 280, "endOffset": 575, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isFlowToken", + "ranges": [{ "startOffset": 576, "endOffset": 859, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getPrevProps", + "ranges": [{ "startOffset": 860, "endOffset": 1306, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getFirstKeyStartProps", + "ranges": [{ "startOffset": 1343, "endOffset": 1828, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "arrayPushArray", + "ranges": [{ "startOffset": 1829, "endOffset": 2102, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fixFlowSeqItems", + "ranges": [{ "startOffset": 2103, "endOffset": 2865, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Parser", + "ranges": [{ "startOffset": 3620, "endOffset": 4457, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parse", + "ranges": [{ "startOffset": 4803, "endOffset": 5084, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "next", + "ranges": [{ "startOffset": 5169, "endOffset": 6895, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "end", + "ranges": [{ "startOffset": 6972, "endOffset": 7055, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get sourceToken", + "ranges": [{ "startOffset": 7060, "endOffset": 7263, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "step", + "ranges": [{ "startOffset": 7268, "endOffset": 8505, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "peek", + "ranges": [{ "startOffset": 8510, "endOffset": 8575, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pop", + "ranges": [{ "startOffset": 8580, "endOffset": 12244, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stream", + "ranges": [{ "startOffset": 12249, "endOffset": 13217, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "document", + "ranges": [{ "startOffset": 13222, "endOffset": 14193, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "scalar", + "ranges": [{ "startOffset": 14198, "endOffset": 14970, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "blockScalar", + "ranges": [{ "startOffset": 14975, "endOffset": 15916, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "blockMap", + "ranges": [{ "startOffset": 15921, "endOffset": 25761, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "blockSequence", + "ranges": [{ "startOffset": 25766, "endOffset": 27991, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "flowCollection", + "ranges": [{ "startOffset": 27996, "endOffset": 31669, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "flowScalar", + "ranges": [{ "startOffset": 31674, "endOffset": 32085, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "startBlockValue", + "ranges": [{ "startOffset": 32090, "endOffset": 34165, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "atIndentedComment", + "ranges": [{ "startOffset": 34170, "endOffset": 34414, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "documentEnd", + "ranges": [{ "startOffset": 34419, "endOffset": 34718, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lineEnd", + "ranges": [{ "startOffset": 34723, "endOffset": 35522, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "435", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/yaml/dist/public-api.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 4187, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "parseOptions", + "ranges": [{ "startOffset": 322, "endOffset": 576, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseAllDocuments", + "ranges": [{ "startOffset": 928, "endOffset": 1589, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseDocument", + "ranges": [{ "startOffset": 1647, "endOffset": 2565, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parse", + "ranges": [{ "startOffset": 2566, "endOffset": 3212, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stringify", + "ranges": [{ "startOffset": 3213, "endOffset": 4045, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "436", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/configuration/merge_configurations.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1473, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 70, "endOffset": 151, "count": 1 }, + { "startOffset": 122, "endOffset": 127, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "mergeArrays", + "ranges": [ + { "startOffset": 524, "endOffset": 674, "count": 10 }, + { "startOffset": 584, "endOffset": 595, "count": 3 }, + { "startOffset": 597, "endOffset": 650, "count": 3 }, + { "startOffset": 650, "endOffset": 673, "count": 7 } + ], + "isBlockCoverage": true + }, + { + "functionName": "mergeTagExpressions", + "ranges": [ + { "startOffset": 675, "endOffset": 871, "count": 2 }, + { "startOffset": 743, "endOffset": 754, "count": 0 }, + { "startOffset": 756, "endOffset": 847, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "wrapTagExpression", + "ranges": [{ "startOffset": 872, "endOffset": 1008, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "customizer", + "ranges": [ + { "startOffset": 1009, "endOffset": 1277, "count": 25 }, + { "startOffset": 1095, "endOffset": 1150, "count": 10 }, + { "startOffset": 1150, "endOffset": 1190, "count": 15 }, + { "startOffset": 1190, "endOffset": 1253, "count": 2 }, + { "startOffset": 1253, "endOffset": 1276, "count": 13 } + ], + "isBlockCoverage": true + }, + { + "functionName": "mergeConfigurations", + "ranges": [{ "startOffset": 1278, "endOffset": 1424, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "437", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/lodash.mergewith/index.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 51182, "count": 1 }, + { "startOffset": 3263, "endOffset": 3270, "count": 0 }, + { "startOffset": 3271, "endOffset": 3296, "count": 0 }, + { "startOffset": 3297, "endOffset": 3304, "count": 0 }, + { "startOffset": 3378, "endOffset": 3389, "count": 0 }, + { "startOffset": 3390, "endOffset": 3418, "count": 0 }, + { "startOffset": 7827, "endOffset": 7838, "count": 0 }, + { "startOffset": 7946, "endOffset": 7957, "count": 0 }, + { "startOffset": 8194, "endOffset": 8205, "count": 0 }, + { "startOffset": 8501, "endOffset": 8512, "count": 0 }, + { "startOffset": 28453, "endOffset": 28463, "count": 0 }, + { "startOffset": 41292, "endOffset": 41434, "count": 0 }, + { "startOffset": 43594, "endOffset": 43606, "count": 0 }, + { "startOffset": 47661, "endOffset": 47679, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 3992, "endOffset": 4339, "count": 1 }, + { "startOffset": 4183, "endOffset": 4288, "count": 0 }, + { "startOffset": 4289, "endOffset": 4319, "count": 0 }, + { "startOffset": 4325, "endOffset": 4337, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "apply", + "ranges": [ + { "startOffset": 4811, "endOffset": 5125, "count": 1 }, + { "startOffset": 4878, "endOffset": 4912, "count": 0 }, + { "startOffset": 4917, "endOffset": 4960, "count": 0 }, + { "startOffset": 5022, "endOffset": 5083, "count": 0 }, + { "startOffset": 5087, "endOffset": 5124, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "baseTimes", + "ranges": [ + { "startOffset": 5440, "endOffset": 5601, "count": 7 }, + { "startOffset": 5540, "endOffset": 5582, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "baseUnary", + "ranges": [{ "startOffset": 5821, "endOffset": 5905, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5857, "endOffset": 5902, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "getValue", + "ranges": [ + { "startOffset": 6118, "endOffset": 6203, "count": 3 }, + { "startOffset": 6175, "endOffset": 6186, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "overArg", + "ranges": [{ "startOffset": 6459, "endOffset": 6559, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6504, "endOffset": 6556, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 7078, "endOffset": 7230, "count": 1 }, + { "startOffset": 7128, "endOffset": 7146, "count": 0 }, + { "startOffset": 7147, "endOffset": 7174, "count": 0 }, + { "startOffset": 7196, "endOffset": 7222, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 8230, "endOffset": 8360, "count": 1 }, + { "startOffset": 8346, "endOffset": 8358, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8962, "endOffset": 9258, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "object", + "ranges": [{ "startOffset": 8977, "endOffset": 8997, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 9007, "endOffset": 9255, "count": 2 }, + { "startOffset": 9051, "endOffset": 9075, "count": 0 }, + { "startOffset": 9139, "endOffset": 9254, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "Hash", + "ranges": [{ "startOffset": 9387, "endOffset": 9600, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hashClear", + "ranges": [{ "startOffset": 9706, "endOffset": 9805, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hashDelete", + "ranges": [{ "startOffset": 10086, "endOffset": 10221, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hashGet", + "ranges": [{ "startOffset": 10404, "endOffset": 10635, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hashHas", + "ranges": [{ "startOffset": 10870, "endOffset": 11007, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hashSet", + "ranges": [{ "startOffset": 11236, "endOffset": 11427, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ListCache", + "ranges": [ + { "startOffset": 11749, "endOffset": 11967, "count": 2 }, + { "startOffset": 11832, "endOffset": 11848, "count": 0 }, + { "startOffset": 11894, "endOffset": 11965, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "listCacheClear", + "ranges": [{ "startOffset": 12084, "endOffset": 12152, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "listCacheDelete", + "ranges": [ + { "startOffset": 12400, "endOffset": 12699, "count": 9 }, + { "startOffset": 12517, "endOffset": 12540, "count": 0 }, + { "startOffset": 12623, "endOffset": 12667, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "listCacheGet", + "ranges": [ + { "startOffset": 12893, "endOffset": 13040, "count": 12 }, + { "startOffset": 13021, "endOffset": 13037, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "listCacheHas", + "ranges": [{ "startOffset": 13286, "endOffset": 13364, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "listCacheSet", + "ranges": [{ "startOffset": 13610, "endOffset": 13838, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "MapCache", + "ranges": [{ "startOffset": 14238, "endOffset": 14455, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mapCacheClear", + "ranges": [{ "startOffset": 14564, "endOffset": 14714, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mapCacheDelete", + "ranges": [{ "startOffset": 14954, "endOffset": 15087, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mapCacheGet", + "ranges": [{ "startOffset": 15273, "endOffset": 15343, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mapCacheHas", + "ranges": [{ "startOffset": 15581, "endOffset": 15651, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mapCacheSet", + "ranges": [{ "startOffset": 15888, "endOffset": 16066, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Stack", + "ranges": [{ "startOffset": 16457, "endOffset": 16562, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "stackClear", + "ranges": [{ "startOffset": 16670, "endOffset": 16745, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stackDelete", + "ranges": [{ "startOffset": 16984, "endOffset": 17120, "count": 9 }], + "isBlockCoverage": true + }, + { + "functionName": "stackGet", + "ranges": [{ "startOffset": 17305, "endOffset": 17364, "count": 12 }], + "isBlockCoverage": true + }, + { + "functionName": "stackHas", + "ranges": [{ "startOffset": 17601, "endOffset": 17660, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stackSet", + "ranges": [ + { "startOffset": 17898, "endOffset": 18286, "count": 9 }, + { "startOffset": 18168, "endOffset": 18285, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "arrayLikeKeys", + "ranges": [ + { "startOffset": 18763, "endOffset": 19810, "count": 7 }, + { "startOffset": 18857, "endOffset": 18878, "count": 0 }, + { "startOffset": 18902, "endOffset": 18911, "count": 0 }, + { "startOffset": 18912, "endOffset": 18930, "count": 0 }, + { "startOffset": 18954, "endOffset": 18963, "count": 0 }, + { "startOffset": 18964, "endOffset": 18974, "count": 0 }, + { "startOffset": 18975, "endOffset": 18997, "count": 0 }, + { "startOffset": 19025, "endOffset": 19033, "count": 0 }, + { "startOffset": 19034, "endOffset": 19043, "count": 0 }, + { "startOffset": 19044, "endOffset": 19053, "count": 0 }, + { "startOffset": 19116, "endOffset": 19120, "count": 0 }, + { "startOffset": 19178, "endOffset": 19791, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "assignMergeValue", + "ranges": [ + { "startOffset": 20074, "endOffset": 20277, "count": 25 }, + { "startOffset": 20177, "endOffset": 20227, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "assignValue", + "ranges": [{ "startOffset": 20648, "endOffset": 20886, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "assocIndexOf", + "ranges": [ + { "startOffset": 21147, "endOffset": 21315, "count": 21 }, + { "startOffset": 21231, "endOffset": 21300, "count": 9 }, + { "startOffset": 21300, "endOffset": 21314, "count": 12 } + ], + "isBlockCoverage": true + }, + { + "functionName": "baseAssignValue", + "ranges": [ + { "startOffset": 21579, "endOffset": 21854, "count": 25 }, + { "startOffset": 21651, "endOffset": 21668, "count": 0 }, + { "startOffset": 21670, "endOffset": 21816, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "baseGetTag", + "ranges": [ + { "startOffset": 22565, "endOffset": 22792, "count": 13 }, + { "startOffset": 22615, "endOffset": 22677, "count": 0 }, + { "startOffset": 22743, "endOffset": 22761, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "baseIsArguments", + "ranges": [ + { "startOffset": 22978, "endOffset": 23075, "count": 3 }, + { "startOffset": 23041, "endOffset": 23072, "count": 1 } + ], + "isBlockCoverage": true + }, + { + "functionName": "baseIsNative", + "ranges": [ + { "startOffset": 23296, "endOffset": 23498, "count": 3 }, + { "startOffset": 23370, "endOffset": 23393, "count": 0 }, + { "startOffset": 23441, "endOffset": 23455, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "baseIsTypedArray", + "ranges": [{ "startOffset": 23721, "endOffset": 23856, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "baseKeysIn", + "ranges": [ + { "startOffset": 24070, "endOffset": 24386, "count": 5 }, + { "startOffset": 24125, "endOffset": 24163, "count": 0 }, + { "startOffset": 24247, "endOffset": 24367, "count": 25 }, + { "startOffset": 24280, "endOffset": 24329, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "baseMerge", + "ranges": [ + { "startOffset": 24803, "endOffset": 25402, "count": 12 }, + { "startOffset": 24894, "endOffset": 24911, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 24930, "endOffset": 25390, "count": 25 }, + { "startOffset": 24966, "endOffset": 24988, "count": 2 }, + { "startOffset": 25018, "endOffset": 25107, "count": 12 }, + { "startOffset": 25107, "endOffset": 25386, "count": 13 }, + { "startOffset": 25247, "endOffset": 25258, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "baseMergeDeep", + "ranges": [ + { "startOffset": 26039, "endOffset": 27758, "count": 12 }, + { "startOffset": 26256, "endOffset": 26317, "count": 0 }, + { "startOffset": 26422, "endOffset": 26433, "count": 0 }, + { "startOffset": 26494, "endOffset": 27481, "count": 9 }, + { "startOffset": 26555, "endOffset": 26576, "count": 2 }, + { "startOffset": 26603, "endOffset": 26613, "count": 2 }, + { "startOffset": 26614, "endOffset": 26639, "count": 2 }, + { "startOffset": 26681, "endOffset": 26690, "count": 2 }, + { "startOffset": 26691, "endOffset": 26701, "count": 2 }, + { "startOffset": 26703, "endOffset": 27135, "count": 7 }, + { "startOffset": 26734, "endOffset": 26772, "count": 0 }, + { "startOffset": 26817, "endOffset": 26866, "count": 0 }, + { "startOffset": 26890, "endOffset": 26973, "count": 0 }, + { "startOffset": 26998, "endOffset": 27085, "count": 0 }, + { "startOffset": 27135, "endOffset": 27477, "count": 2 }, + { "startOffset": 27173, "endOffset": 27197, "count": 0 }, + { "startOffset": 27261, "endOffset": 27314, "count": 0 }, + { "startOffset": 27350, "endOffset": 27373, "count": 0 }, + { "startOffset": 27436, "endOffset": 27477, "count": 0 }, + { "startOffset": 27498, "endOffset": 27713, "count": 9 } + ], + "isBlockCoverage": true + }, + { + "functionName": "baseRest", + "ranges": [{ "startOffset": 28067, "endOffset": 28167, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "baseSetToString", + "ranges": [{ "startOffset": 28466, "endOffset": 28645, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "cloneBuffer", + "ranges": [{ "startOffset": 28850, "endOffset": 29091, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneArrayBuffer", + "ranges": [{ "startOffset": 29275, "endOffset": 29461, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneTypedArray", + "ranges": [{ "startOffset": 29682, "endOffset": 29898, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "copyArray", + "ranges": [{ "startOffset": 30119, "endOffset": 30324, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "copyObject", + "ranges": [{ "startOffset": 30694, "endOffset": 31240, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createAssigner", + "ranges": [{ "startOffset": 31423, "endOffset": 32158, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 31477, "endOffset": 32154, "count": 1 }, + { "startOffset": 31612, "endOffset": 31623, "count": 0 }, + { "startOffset": 31665, "endOffset": 31676, "count": 0 }, + { "startOffset": 31790, "endOffset": 31801, "count": 0 }, + { "startOffset": 31868, "endOffset": 31949, "count": 0 }, + { "startOffset": 32008, "endOffset": 32131, "count": 3 } + ], + "isBlockCoverage": true + }, + { + "functionName": "createBaseFor", + "ranges": [{ "startOffset": 32377, "endOffset": 32774, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 32422, "endOffset": 32771, "count": 12 }, + { "startOffset": 32603, "endOffset": 32748, "count": 25 }, + { "startOffset": 32637, "endOffset": 32645, "count": 0 }, + { "startOffset": 32718, "endOffset": 32742, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "getMapData", + "ranges": [{ "startOffset": 32948, "endOffset": 33103, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getNative", + "ranges": [ + { "startOffset": 33349, "endOffset": 33471, "count": 3 }, + { "startOffset": 33457, "endOffset": 33468, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "getRawTag", + "ranges": [{ "startOffset": 33672, "endOffset": 34080, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "initCloneObject", + "ranges": [ + { "startOffset": 34236, "endOffset": 34396, "count": 2 }, + { "startOffset": 34389, "endOffset": 34393, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "isIndex", + "ranges": [{ "startOffset": 34671, "endOffset": 34946, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isIterateeCall", + "ranges": [ + { "startOffset": 35316, "endOffset": 35644, "count": 1 }, + { "startOffset": 35389, "endOffset": 35412, "count": 0 }, + { "startOffset": 35471, "endOffset": 35527, "count": 0 }, + { "startOffset": 35556, "endOffset": 35574, "count": 0 }, + { "startOffset": 35584, "endOffset": 35626, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "isKeyable", + "ranges": [{ "startOffset": 35847, "endOffset": 36046, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isMasked", + "ranges": [ + { "startOffset": 36235, "endOffset": 36309, "count": 3 }, + { "startOffset": 36283, "endOffset": 36306, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "isPrototype", + "ranges": [ + { "startOffset": 36503, "endOffset": 36678, "count": 7 }, + { "startOffset": 36634, "endOffset": 36648, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "nativeKeysIn", + "ranges": [{ "startOffset": 36972, "endOffset": 37137, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "objectToString", + "ranges": [{ "startOffset": 37322, "endOffset": 37399, "count": 13 }], + "isBlockCoverage": true + }, + { + "functionName": "overRest", + "ranges": [ + { "startOffset": 37754, "endOffset": 38318, "count": 1 }, + { "startOffset": 37858, "endOffset": 37865, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 37880, "endOffset": 38315, "count": 1 }, + { "startOffset": 38052, "endOffset": 38101, "count": 4 } + ], + "isBlockCoverage": true + }, + { + "functionName": "safeGet", + "ranges": [ + { "startOffset": 38563, "endOffset": 38748, "count": 37 }, + { "startOffset": 38623, "endOffset": 38659, "count": 0 }, + { "startOffset": 38661, "endOffset": 38678, "count": 0 }, + { "startOffset": 38706, "endOffset": 38723, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "shortOut", + "ranges": [{ "startOffset": 39310, "endOffset": 39688, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 39385, "endOffset": 39685, "count": 1 }, + { "startOffset": 39528, "endOffset": 39606, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "toSource", + "ranges": [ + { "startOffset": 39849, "endOffset": 40037, "count": 3 }, + { "startOffset": 39951, "endOffset": 40018, "count": 0 }, + { "startOffset": 40022, "endOffset": 40036, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "eq", + "ranges": [ + { "startOffset": 40720, "endOffset": 40815, "count": 34 }, + { "startOffset": 40773, "endOffset": 40812, "count": 25 }, + { "startOffset": 40793, "endOffset": 40811, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 41238, "endOffset": 41270, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "isArguments", + "ranges": [{ "startOffset": 41294, "endOffset": 41434, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isArrayLike", + "ranges": [ + { "startOffset": 42513, "endOffset": 42616, "count": 12 }, + { "startOffset": 42592, "endOffset": 42613, "count": 7 } + ], + "isBlockCoverage": true + }, + { + "functionName": "isArrayLikeObject", + "ranges": [ + { "startOffset": 43142, "endOffset": 43231, "count": 7 }, + { "startOffset": 43207, "endOffset": 43228, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "isFunction", + "ranges": [ + { "startOffset": 43947, "endOffset": 44292, "count": 10 }, + { "startOffset": 44000, "endOffset": 44023, "count": 0 }, + { "startOffset": 44235, "endOffset": 44251, "count": 7 }, + { "startOffset": 44252, "endOffset": 44270, "count": 7 }, + { "startOffset": 44271, "endOffset": 44289, "count": 7 } + ], + "isBlockCoverage": true + }, + { + "functionName": "isLength", + "ranges": [ + { "startOffset": 44839, "endOffset": 44967, "count": 12 }, + { "startOffset": 44900, "endOffset": 44917, "count": 7 }, + { "startOffset": 44918, "endOffset": 44935, "count": 7 }, + { "startOffset": 44936, "endOffset": 44964, "count": 7 } + ], + "isBlockCoverage": true + }, + { + "functionName": "isObject", + "ranges": [ + { "startOffset": 45550, "endOffset": 45673, "count": 48 }, + { "startOffset": 45627, "endOffset": 45670, "count": 46 }, + { "startOffset": 45648, "endOffset": 45669, "count": 19 } + ], + "isBlockCoverage": true + }, + { + "functionName": "isObjectLike", + "ranges": [ + { "startOffset": 46172, "endOffset": 46256, "count": 12 }, + { "startOffset": 46226, "endOffset": 46253, "count": 3 } + ], + "isBlockCoverage": true + }, + { + "functionName": "isPlainObject", + "ranges": [ + { "startOffset": 46857, "endOffset": 47244, "count": 2 }, + { "startOffset": 46951, "endOffset": 46974, "count": 0 }, + { "startOffset": 47032, "endOffset": 47054, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "toPlainObject", + "ranges": [{ "startOffset": 48238, "endOffset": 48314, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "keysIn", + "ranges": [ + { "startOffset": 48822, "endOffset": 48930, "count": 12 }, + { "startOffset": 48877, "endOffset": 48906, "count": 7 }, + { "startOffset": 48907, "endOffset": 48927, "count": 5 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 49953, "endOffset": 50054, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "constant", + "ranges": [{ "startOffset": 50484, "endOffset": 50557, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 50520, "endOffset": 50554, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "identity", + "ranges": [{ "startOffset": 50856, "endOffset": 50900, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "stubFalse", + "ranges": [{ "startOffset": 51112, "endOffset": 51152, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "438", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/configuration/parse_configuration.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1457, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 70, "endOffset": 151, "count": 2 }, + { "startOffset": 128, "endOffset": 148, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "parseConfiguration", + "ranges": [ + { "startOffset": 443, "endOffset": 1409, "count": 1 }, + { "startOffset": 522, "endOffset": 548, "count": 0 }, + { "startOffset": 584, "endOffset": 855, "count": 0 }, + { "startOffset": 896, "endOffset": 1195, "count": 0 }, + { "startOffset": 1276, "endOffset": 1407, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "439", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/string-argv/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1626, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "parseArgsStringToArgv", + "ranges": [{ "startOffset": 43, "endOffset": 1116, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "firstString", + "ranges": [{ "startOffset": 1326, "endOffset": 1624, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "440", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/configuration/check_schema.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 2732, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 760, "endOffset": 1368, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "ownKeys", + "ranges": [{ "startOffset": 792, "endOffset": 1056, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 1069, "endOffset": 1365, "count": 1 }, + { "startOffset": 1132, "endOffset": 1364, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1762, "endOffset": 1865, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "checkSchema", + "ranges": [{ "startOffset": 2519, "endOffset": 2691, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "441", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/yup/index.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 76193, "count": 1 }, + { "startOffset": 608, "endOffset": 618, "count": 0 }, + { "startOffset": 35085, "endOffset": 35369, "count": 2 }, + { "startOffset": 35408, "endOffset": 35457, "count": 2 }, + { "startOffset": 35495, "endOffset": 35547, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "_interopDefaultLegacy", + "ranges": [ + { "startOffset": 198, "endOffset": 312, "count": 1 }, + { "startOffset": 269, "endOffset": 286, "count": 0 }, + { "startOffset": 287, "endOffset": 290, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "symbolToString", + "ranges": [{ "startOffset": 610, "endOffset": 618, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "printNumber", + "ranges": [{ "startOffset": 666, "endOffset": 822, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "printSimpleValue", + "ranges": [{ "startOffset": 823, "endOffset": 1572, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "printValue", + "ranges": [{ "startOffset": 1573, "endOffset": 1891, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toArray", + "ranges": [{ "startOffset": 1893, "endOffset": 1968, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ValidationErrorNoStack", + "ranges": [{ "startOffset": 2148, "endOffset": 2987, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "formatError", + "ranges": [{ "startOffset": 3122, "endOffset": 3722, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isError", + "ranges": [{ "startOffset": 3732, "endOffset": 3800, "count": 56 }], + "isBlockCoverage": true + }, + { + "functionName": "ValidationError", + "ranges": [{ "startOffset": 3803, "endOffset": 4565, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4575, "endOffset": 4704, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "notType", + "ranges": [{ "startOffset": 5025, "endOffset": 5488, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "notType", + "ranges": [{ "startOffset": 7171, "endOffset": 7753, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isSchema", + "ranges": [ + { "startOffset": 7904, "endOffset": 7937, "count": 150 }, + { "startOffset": 7915, "endOffset": 7937, "count": 92 } + ], + "isBlockCoverage": true + }, + { + "functionName": "fromOptions", + "ranges": [{ "startOffset": 7967, "endOffset": 8526, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Condition", + "ranges": [{ "startOffset": 8529, "endOffset": 8650, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolve", + "ranges": [{ "startOffset": 8653, "endOffset": 9187, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create$9", + "ranges": [{ "startOffset": 9242, "endOffset": 9315, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Reference", + "ranges": [{ "startOffset": 9336, "endOffset": 10140, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getValue", + "ranges": [{ "startOffset": 10143, "endOffset": 10377, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cast", + "ranges": [{ "startOffset": 10524, "endOffset": 10670, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolve", + "ranges": [{ "startOffset": 10673, "endOffset": 10705, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "describe", + "ranges": [{ "startOffset": 10708, "endOffset": 10783, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toString", + "ranges": [{ "startOffset": 10786, "endOffset": 10833, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isRef", + "ranges": [{ "startOffset": 10843, "endOffset": 10899, "count": 42 }], + "isBlockCoverage": true + }, + { + "functionName": "isAbsent", + "ranges": [{ "startOffset": 10974, "endOffset": 10996, "count": 31 }], + "isBlockCoverage": true + }, + { + "functionName": "createValidation", + "ranges": [{ "startOffset": 10999, "endOffset": 13445, "count": 60 }], + "isBlockCoverage": true + }, + { + "functionName": "validate", + "ranges": [ + { "startOffset": 11037, "endOffset": 13395, "count": 56 }, + { "startOffset": 12223, "endOffset": 12230, "count": 0 }, + { "startOffset": 12744, "endOffset": 12762, "count": 31 }, + { "startOffset": 12784, "endOffset": 12824, "count": 24 }, + { "startOffset": 12824, "endOffset": 12958, "count": 32 }, + { "startOffset": 12958, "endOffset": 12966, "count": 0 }, + { "startOffset": 12967, "endOffset": 12981, "count": 32 }, + { "startOffset": 12999, "endOffset": 13301, "count": 0 }, + { "startOffset": 13308, "endOffset": 13365, "count": 0 }, + { "startOffset": 13365, "endOffset": 13394, "count": 32 } + ], + "isBlockCoverage": true + }, + { + "functionName": "resolve", + "ranges": [{ "startOffset": 11403, "endOffset": 11516, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createError", + "ranges": [{ "startOffset": 11521, "endOffset": 12191, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "handleResult", + "ranges": [ + { "startOffset": 12440, "endOffset": 12598, "count": 56 }, + { "startOffset": 12507, "endOffset": 12529, "count": 0 }, + { "startOffset": 12553, "endOffset": 12576, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "handleError", + "ranges": [{ "startOffset": 12624, "endOffset": 12708, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getIn", + "ranges": [{ "startOffset": 13447, "endOffset": 15317, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "reach", + "ranges": [{ "startOffset": 15318, "endOffset": 15413, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "describe", + "ranges": [{ "startOffset": 15450, "endOffset": 15636, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolveAll", + "ranges": [{ "startOffset": 15639, "endOffset": 15784, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "clone", + "ranges": [{ "startOffset": 15787, "endOffset": 15844, "count": 26 }], + "isBlockCoverage": true + }, + { + "functionName": "merge", + "ranges": [{ "startOffset": 15847, "endOffset": 16031, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "clone", + "ranges": [ + { "startOffset": 16149, "endOffset": 17242, "count": 123 }, + { "startOffset": 16217, "endOffset": 16243, "count": 65 }, + { "startOffset": 16245, "endOffset": 16256, "count": 110 }, + { "startOffset": 16256, "endOffset": 16278, "count": 13 }, + { "startOffset": 16278, "endOffset": 16299, "count": 0 }, + { "startOffset": 16299, "endOffset": 16339, "count": 13 }, + { "startOffset": 16339, "endOffset": 16417, "count": 0 }, + { "startOffset": 16417, "endOffset": 17225, "count": 13 }, + { "startOffset": 16450, "endOffset": 16522, "count": 0 }, + { "startOffset": 16552, "endOffset": 16701, "count": 0 }, + { "startOffset": 16731, "endOffset": 16863, "count": 0 }, + { "startOffset": 16893, "endOffset": 17007, "count": 0 }, + { "startOffset": 17142, "endOffset": 17167, "count": 110 }, + { "startOffset": 17171, "endOffset": 17225, "count": 0 }, + { "startOffset": 17225, "endOffset": 17241, "count": 13 } + ], + "isBlockCoverage": true + }, + { + "functionName": "Schema", + "ranges": [ + { "startOffset": 17390, "endOffset": 18296, "count": 27 }, + { "startOffset": 18207, "endOffset": 18215, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 17848, "endOffset": 17898, "count": 27 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 18255, "endOffset": 18290, "count": 27 }], + "isBlockCoverage": true + }, + { + "functionName": "get _type", + "ranges": [{ "startOffset": 18318, "endOffset": 18357, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "clone", + "ranges": [ + { "startOffset": 18360, "endOffset": 19240, "count": 86 }, + { "startOffset": 18396, "endOffset": 18470, "count": 73 }, + { "startOffset": 18414, "endOffset": 18445, "count": 27 }, + { "startOffset": 18470, "endOffset": 19239, "count": 13 } + ], + "isBlockCoverage": true + }, + { + "functionName": "label", + "ranges": [{ "startOffset": 19243, "endOffset": 19336, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "meta", + "ranges": [{ "startOffset": 19339, "endOffset": 19521, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "withMutation", + "ranges": [{ "startOffset": 19524, "endOffset": 19675, "count": 76 }], + "isBlockCoverage": true + }, + { + "functionName": "concat", + "ranges": [{ "startOffset": 19678, "endOffset": 20870, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isType", + "ranges": [{ "startOffset": 20873, "endOffset": 21085, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolve", + "ranges": [ + { "startOffset": 21088, "endOffset": 21446, "count": 25 }, + { "startOffset": 21164, "endOffset": 21423, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 21302, "endOffset": 21367, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolveOptions", + "ranges": [{ "startOffset": 21449, "endOffset": 22106, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cast", + "ranges": [{ "startOffset": 22187, "endOffset": 22987, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_cast", + "ranges": [{ "startOffset": 22990, "endOffset": 23262, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_validate", + "ranges": [ + { "startOffset": 23265, "endOffset": 24153, "count": 25 }, + { "startOffset": 23454, "endOffset": 23551, "count": 0 }, + { "startOffset": 23635, "endOffset": 23683, "count": 51 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 23805, "endOffset": 24147, "count": 25 }, + { "startOffset": 23949, "endOffset": 24001, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "runTests", + "ranges": [ + { "startOffset": 24276, "endOffset": 25181, "count": 54 }, + { "startOffset": 24721, "endOffset": 24741, "count": 22 }, + { "startOffset": 24741, "endOffset": 24889, "count": 32 }, + { "startOffset": 24889, "endOffset": 25180, "count": 80 } + ], + "isBlockCoverage": true + }, + { + "functionName": "panicOnce", + "ranges": [{ "startOffset": 24458, "endOffset": 24542, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "nextOnce", + "ranges": [ + { "startOffset": 24563, "endOffset": 24646, "count": 54 }, + { "startOffset": 24589, "endOffset": 24596, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "finishTestRun", + "ranges": [ + { "startOffset": 24948, "endOffset": 25169, "count": 80 }, + { "startOffset": 24995, "endOffset": 25089, "count": 24 }, + { "startOffset": 25054, "endOffset": 25078, "count": 0 }, + { "startOffset": 25116, "endOffset": 25161, "count": 32 } + ], + "isBlockCoverage": true + }, + { + "functionName": "asNestedTest", + "ranges": [ + { "startOffset": 25184, "endOffset": 26331, "count": 24 }, + { "startOffset": 25312, "endOffset": 25317, "count": 21 }, + { "startOffset": 25318, "endOffset": 25325, "count": 3 }, + { "startOffset": 25346, "endOffset": 25432, "count": 0 }, + { "startOffset": 26061, "endOffset": 26070, "count": 3 }, + { "startOffset": 26071, "endOffset": 26078, "count": 21 }, + { "startOffset": 26104, "endOffset": 26122, "count": 21 }, + { "startOffset": 26123, "endOffset": 26173, "count": 3 }, + { "startOffset": 26139, "endOffset": 26144, "count": 0 }, + { "startOffset": 26160, "endOffset": 26170, "count": 0 }, + { "startOffset": 26174, "endOffset": 26218, "count": 21 }, + { "startOffset": 26188, "endOffset": 26206, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 26238, "endOffset": 26326, "count": 24 }], + "isBlockCoverage": true + }, + { + "functionName": "validate", + "ranges": [{ "startOffset": 26334, "endOffset": 27012, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "validateSync", + "ranges": [ + { "startOffset": 27015, "endOffset": 27730, "count": 1 }, + { "startOffset": 27244, "endOffset": 27252, "count": 0 }, + { "startOffset": 27290, "endOffset": 27314, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "schema._validate.result", + "ranges": [{ "startOffset": 27430, "endOffset": 27539, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 27541, "endOffset": 27705, "count": 1 }, + { "startOffset": 27591, "endOffset": 27673, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "isValid", + "ranges": [{ "startOffset": 27733, "endOffset": 27908, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isValidSync", + "ranges": [{ "startOffset": 27911, "endOffset": 28111, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_getDefault", + "ranges": [{ "startOffset": 28114, "endOffset": 28351, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getDefault", + "ranges": [{ "startOffset": 28354, "endOffset": 28532, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default", + "ranges": [{ "startOffset": 28535, "endOffset": 28698, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "strict", + "ranges": [{ "startOffset": 28701, "endOffset": 28785, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "nullability", + "ranges": [{ "startOffset": 28788, "endOffset": 29088, "count": 27 }], + "isBlockCoverage": true + }, + { + "functionName": "test", + "ranges": [ + { "startOffset": 28972, "endOffset": 29059, "count": 25 }, + { "startOffset": 29016, "endOffset": 29043, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "optionality", + "ranges": [{ "startOffset": 29091, "endOffset": 29402, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "optional", + "ranges": [{ "startOffset": 29405, "endOffset": 29456, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "defined", + "ranges": [{ "startOffset": 29459, "endOffset": 29542, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "nullable", + "ranges": [{ "startOffset": 29545, "endOffset": 29596, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "nonNullable", + "ranges": [{ "startOffset": 29599, "endOffset": 29686, "count": 27 }], + "isBlockCoverage": true + }, + { + "functionName": "required", + "ranges": [{ "startOffset": 29689, "endOffset": 29819, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "notRequired", + "ranges": [{ "startOffset": 29822, "endOffset": 29915, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transform", + "ranges": [{ "startOffset": 29918, "endOffset": 30013, "count": 18 }], + "isBlockCoverage": true + }, + { + "functionName": "test", + "ranges": [ + { "startOffset": 30622, "endOffset": 31865, "count": 5 }, + { "startOffset": 30722, "endOffset": 30783, "count": 0 }, + { "startOffset": 30828, "endOffset": 31041, "count": 0 }, + { "startOffset": 31078, "endOffset": 31107, "count": 0 }, + { "startOffset": 31149, "endOffset": 31204, "count": 0 }, + { "startOffset": 31314, "endOffset": 31369, "count": 3 }, + { "startOffset": 31395, "endOffset": 31514, "count": 2 }, + { "startOffset": 31419, "endOffset": 31508, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 31620, "endOffset": 31811, "count": 2 }, + { "startOffset": 31669, "endOffset": 31786, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "when", + "ranges": [{ "startOffset": 31868, "endOffset": 32352, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "typeError", + "ranges": [{ "startOffset": 32355, "endOffset": 32749, "count": 27 }], + "isBlockCoverage": true + }, + { + "functionName": "test", + "ranges": [ + { "startOffset": 32529, "endOffset": 32720, "count": 7 }, + { "startOffset": 32587, "endOffset": 32691, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "oneOf", + "ranges": [{ "startOffset": 32752, "endOffset": 33376, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 32837, "endOffset": 32918, "count": 80 }], + "isBlockCoverage": true + }, + { + "functionName": "test", + "ranges": [{ "startOffset": 33041, "endOffset": 33347, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "notOneOf", + "ranges": [{ "startOffset": 33379, "endOffset": 34011, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "strip", + "ranges": [{ "startOffset": 34014, "endOffset": 34114, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "describe", + "ranges": [{ "startOffset": 34345, "endOffset": 34970, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Schema.", + "ranges": [{ "startOffset": 35119, "endOffset": 35368, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "returnsTrue", + "ranges": [{ "startOffset": 35569, "endOffset": 35579, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create$8", + "ranges": [{ "startOffset": 35581, "endOffset": 35640, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "MixedSchema", + "ranges": [{ "startOffset": 35678, "endOffset": 35866, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create$7", + "ranges": [{ "startOffset": 35914, "endOffset": 35967, "count": 7 }], + "isBlockCoverage": true + }, + { + "functionName": "BooleanSchema", + "ranges": [{ "startOffset": 36007, "endOffset": 36488, "count": 7 }], + "isBlockCoverage": true + }, + { + "functionName": "check", + "ranges": [{ "startOffset": 36064, "endOffset": 36172, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 36203, "endOffset": 36482, "count": 7 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 36232, "endOffset": 36474, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isTrue", + "ranges": [{ "startOffset": 36491, "endOffset": 36748, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isFalse", + "ranges": [{ "startOffset": 36751, "endOffset": 37011, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default", + "ranges": [{ "startOffset": 37014, "endOffset": 37063, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "defined", + "ranges": [{ "startOffset": 37066, "endOffset": 37115, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "optional", + "ranges": [{ "startOffset": 37118, "endOffset": 37163, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "required", + "ranges": [{ "startOffset": 37166, "endOffset": 37217, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "notRequired", + "ranges": [{ "startOffset": 37220, "endOffset": 37271, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "nullable", + "ranges": [{ "startOffset": 37274, "endOffset": 37319, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "nonNullable", + "ranges": [{ "startOffset": 37322, "endOffset": 37379, "count": 7 }], + "isBlockCoverage": true + }, + { + "functionName": "strip", + "ranges": [{ "startOffset": 37382, "endOffset": 37423, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseIsoDate", + "ranges": [{ "startOffset": 38088, "endOffset": 38892, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseDateStruct", + "ranges": [{ "startOffset": 38893, "endOffset": 39878, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toNumber", + "ranges": [{ "startOffset": 39879, "endOffset": 39961, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isTrimmed", + "ranges": [{ "startOffset": 41877, "endOffset": 41927, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create$6", + "ranges": [{ "startOffset": 41963, "endOffset": 42015, "count": 9 }], + "isBlockCoverage": true + }, + { + "functionName": "StringSchema", + "ranges": [{ "startOffset": 42054, "endOffset": 42723, "count": 9 }], + "isBlockCoverage": true + }, + { + "functionName": "check", + "ranges": [ + { "startOffset": 42110, "endOffset": 42236, "count": 3 }, + { "startOffset": 42162, "endOffset": 42186, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 42267, "endOffset": 42717, "count": 9 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 42296, "endOffset": 42709, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "required", + "ranges": [{ "startOffset": 42726, "endOffset": 42956, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "notRequired", + "ranges": [{ "startOffset": 42959, "endOffset": 43141, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "length", + "ranges": [{ "startOffset": 43144, "endOffset": 43426, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "min", + "ranges": [{ "startOffset": 43429, "endOffset": 43692, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "max", + "ranges": [{ "startOffset": 43695, "endOffset": 43958, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "matches", + "ranges": [ + { "startOffset": 43961, "endOffset": 44531, "count": 1 }, + { "startOffset": 44071, "endOffset": 44274, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "test", + "ranges": [{ "startOffset": 44446, "endOffset": 44519, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "email", + "ranges": [{ "startOffset": 44534, "endOffset": 44678, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "url", + "ranges": [{ "startOffset": 44681, "endOffset": 44817, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "uuid", + "ranges": [{ "startOffset": 44820, "endOffset": 44961, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "datetime", + "ranges": [{ "startOffset": 44964, "endOffset": 46170, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ensure", + "ranges": [{ "startOffset": 46195, "endOffset": 46280, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "trim", + "ranges": [{ "startOffset": 46283, "endOffset": 46453, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lowercase", + "ranges": [{ "startOffset": 46456, "endOffset": 46756, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "uppercase", + "ranges": [{ "startOffset": 46759, "endOffset": 47059, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isNaN$1", + "ranges": [{ "startOffset": 47150, "endOffset": 47174, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create$5", + "ranges": [{ "startOffset": 47176, "endOffset": 47228, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "NumberSchema", + "ranges": [{ "startOffset": 47267, "endOffset": 48115, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "check", + "ranges": [{ "startOffset": 47323, "endOffset": 47468, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 47499, "endOffset": 48109, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 47528, "endOffset": 48101, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "min", + "ranges": [{ "startOffset": 48118, "endOffset": 48374, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "test", + "ranges": [{ "startOffset": 48298, "endOffset": 48362, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "max", + "ranges": [{ "startOffset": 48377, "endOffset": 48633, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lessThan", + "ranges": [{ "startOffset": 48636, "endOffset": 48904, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "moreThan", + "ranges": [{ "startOffset": 48907, "endOffset": 49175, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "positive", + "ranges": [{ "startOffset": 49178, "endOffset": 49249, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "negative", + "ranges": [{ "startOffset": 49252, "endOffset": 49323, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "integer", + "ranges": [{ "startOffset": 49326, "endOffset": 49499, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "test", + "ranges": [{ "startOffset": 49459, "endOffset": 49487, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "truncate", + "ranges": [{ "startOffset": 49502, "endOffset": 49592, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "round", + "ranges": [{ "startOffset": 49595, "endOffset": 50096, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isDate", + "ranges": [{ "startOffset": 50218, "endOffset": 50280, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create$4", + "ranges": [{ "startOffset": 50282, "endOffset": 50332, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "DateSchema", + "ranges": [{ "startOffset": 50369, "endOffset": 51013, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "prepareParam", + "ranges": [{ "startOffset": 51016, "endOffset": 51331, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "min", + "ranges": [{ "startOffset": 51334, "endOffset": 51637, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "max", + "ranges": [{ "startOffset": 51640, "endOffset": 51943, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "sortFields", + "ranges": [ + { "startOffset": 52086, "endOffset": 52769, "count": 1 }, + { "startOffset": 52463, "endOffset": 52686, "count": 21 }, + { "startOffset": 52545, "endOffset": 52563, "count": 0 }, + { "startOffset": 52565, "endOffset": 52590, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 52222, "endOffset": 52245, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addNode", + "ranges": [{ "startOffset": 52251, "endOffset": 52421, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 52654, "endOffset": 52680, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "findIndex", + "ranges": [{ "startOffset": 52771, "endOffset": 53000, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "sortByKeyOrder", + "ranges": [{ "startOffset": 53001, "endOffset": 53112, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 53042, "endOffset": 53109, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseJson", + "ranges": [{ "startOffset": 53132, "endOffset": 53351, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "deepPartial", + "ranges": [{ "startOffset": 53368, "endOffset": 54013, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "deepHas", + "ranges": [{ "startOffset": 54030, "endOffset": 54280, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isObject", + "ranges": [{ "startOffset": 54297, "endOffset": 54361, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "unknown", + "ranges": [{ "startOffset": 54363, "endOffset": 54504, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create$3", + "ranges": [{ "startOffset": 54545, "endOffset": 54605, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "ObjectSchema", + "ranges": [{ "startOffset": 54644, "endOffset": 55018, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "check", + "ranges": [ + { "startOffset": 54704, "endOffset": 54789, "count": 1 }, + { "startOffset": 54750, "endOffset": 54780, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 54947, "endOffset": 55012, "count": 3 }, + { "startOffset": 54971, "endOffset": 55006, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "_cast", + "ranges": [{ "startOffset": 55021, "endOffset": 57039, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_validate", + "ranges": [{ "startOffset": 57042, "endOffset": 58342, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 57572, "endOffset": 58336, "count": 3 }, + { "startOffset": 57641, "endOffset": 57701, "count": 2 }, + { "startOffset": 57701, "endOffset": 57738, "count": 1 }, + { "startOffset": 57738, "endOffset": 57746, "count": 0 }, + { "startOffset": 57805, "endOffset": 58118, "count": 21 }, + { "startOffset": 57891, "endOffset": 57922, "count": 0 }, + { "startOffset": 58118, "endOffset": 58335, "count": 1 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 58226, "endOffset": 58328, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "clone", + "ranges": [{ "startOffset": 58345, "endOffset": 58584, "count": 8 }], + "isBlockCoverage": true + }, + { + "functionName": "concat", + "ranges": [{ "startOffset": 58587, "endOffset": 59014, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_getDefault", + "ranges": [{ "startOffset": 59017, "endOffset": 59728, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setFields", + "ranges": [{ "startOffset": 59731, "endOffset": 60077, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "shape", + "ranges": [{ "startOffset": 60080, "endOffset": 60480, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 60151, "endOffset": 60474, "count": 1 }, + { "startOffset": 60227, "endOffset": 60355, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "partial", + "ranges": [{ "startOffset": 60483, "endOffset": 60738, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "deepPartial", + "ranges": [{ "startOffset": 60741, "endOffset": 60813, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pick", + "ranges": [{ "startOffset": 60816, "endOffset": 61064, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "omit", + "ranges": [{ "startOffset": 61067, "endOffset": 61265, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "from", + "ranges": [{ "startOffset": 61268, "endOffset": 61625, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "json", + "ranges": [{ "startOffset": 61678, "endOffset": 61728, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "exact", + "ranges": [{ "startOffset": 61860, "endOffset": 62273, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stripUnknown", + "ranges": [{ "startOffset": 62276, "endOffset": 62350, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "noUnknown", + "ranges": [{ "startOffset": 62353, "endOffset": 62951, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "unknown", + "ranges": [{ "startOffset": 62954, "endOffset": 63053, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformKeys", + "ranges": [{ "startOffset": 63056, "endOffset": 63266, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "camelCase", + "ranges": [{ "startOffset": 63269, "endOffset": 63337, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "snakeCase", + "ranges": [{ "startOffset": 63340, "endOffset": 63408, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "constantCase", + "ranges": [{ "startOffset": 63411, "endOffset": 63508, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "describe", + "ranges": [{ "startOffset": 63511, "endOffset": 64098, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create$2", + "ranges": [{ "startOffset": 64147, "endOffset": 64206, "count": 6 }], + "isBlockCoverage": true + }, + { + "functionName": "ArraySchema", + "ranges": [{ "startOffset": 64244, "endOffset": 64546, "count": 6 }], + "isBlockCoverage": true + }, + { + "functionName": "check", + "ranges": [{ "startOffset": 64346, "endOffset": 64397, "count": 9 }], + "isBlockCoverage": true + }, + { + "functionName": "_cast", + "ranges": [{ "startOffset": 64549, "endOffset": 65079, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_validate", + "ranges": [ + { "startOffset": 65082, "endOffset": 66494, "count": 6 }, + { "startOffset": 65392, "endOffset": 65412, "count": 0 }, + { "startOffset": 65470, "endOffset": 65493, "count": 3 }, + { "startOffset": 65494, "endOffset": 65502, "count": 3 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 65548, "endOffset": 66488, "count": 6 }, + { "startOffset": 65671, "endOffset": 66213, "count": 3 }, + { "startOffset": 66185, "endOffset": 66193, "count": 0 }, + { "startOffset": 66213, "endOffset": 66370, "count": 3 }, + { "startOffset": 66371, "endOffset": 66379, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 66413, "endOffset": 66480, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "clone", + "ranges": [{ "startOffset": 66497, "endOffset": 66637, "count": 18 }], + "isBlockCoverage": true + }, + { + "functionName": "json", + "ranges": [{ "startOffset": 66690, "endOffset": 66740, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "concat", + "ranges": [{ "startOffset": 66743, "endOffset": 67121, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "of", + "ranges": [ + { "startOffset": 67124, "endOffset": 67536, "count": 6 }, + { "startOffset": 67276, "endOffset": 67377, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "length", + "ranges": [{ "startOffset": 67539, "endOffset": 67820, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "min", + "ranges": [{ "startOffset": 67823, "endOffset": 68145, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "max", + "ranges": [{ "startOffset": 68148, "endOffset": 68434, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ensure", + "ranges": [{ "startOffset": 68437, "endOffset": 68686, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "compact", + "ranges": [{ "startOffset": 68689, "endOffset": 68871, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "describe", + "ranges": [{ "startOffset": 68874, "endOffset": 69405, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create$1", + "ranges": [{ "startOffset": 69467, "endOffset": 69532, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "TupleSchema", + "ranges": [{ "startOffset": 69570, "endOffset": 69884, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_cast", + "ranges": [{ "startOffset": 69887, "endOffset": 70417, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_validate", + "ranges": [{ "startOffset": 70420, "endOffset": 71430, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "describe", + "ranges": [{ "startOffset": 71433, "endOffset": 71988, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 72036, "endOffset": 72092, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "catchValidationError", + "ranges": [{ "startOffset": 72093, "endOffset": 72258, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Lazy", + "ranges": [{ "startOffset": 72274, "endOffset": 72775, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Lazy._resolve", + "ranges": [{ "startOffset": 72398, "endOffset": 72672, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "clone", + "ranges": [{ "startOffset": 72778, "endOffset": 72905, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "optionality", + "ranges": [{ "startOffset": 72908, "endOffset": 73005, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "optional", + "ranges": [{ "startOffset": 73008, "endOffset": 73059, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolve", + "ranges": [{ "startOffset": 73062, "endOffset": 73134, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cast", + "ranges": [{ "startOffset": 73137, "endOffset": 73226, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "asNestedTest", + "ranges": [{ "startOffset": 73229, "endOffset": 73503, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "validate", + "ranges": [{ "startOffset": 73506, "endOffset": 73631, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "validateSync", + "ranges": [{ "startOffset": 73634, "endOffset": 73739, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "validateAt", + "ranges": [{ "startOffset": 73742, "endOffset": 73883, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "validateSyncAt", + "ranges": [{ "startOffset": 73886, "endOffset": 74007, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isValid", + "ranges": [{ "startOffset": 74010, "endOffset": 74249, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isValidSync", + "ranges": [{ "startOffset": 74252, "endOffset": 74355, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "describe", + "ranges": [{ "startOffset": 74358, "endOffset": 74524, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "meta", + "ranges": [{ "startOffset": 74527, "endOffset": 74709, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setLocale", + "ranges": [{ "startOffset": 74713, "endOffset": 74936, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addMethod", + "ranges": [{ "startOffset": 74938, "endOffset": 75322, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "442", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/property-expr/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3439, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Cache", + "ranges": [{ "startOffset": 127, "endOffset": 195, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "Cache.clear", + "ranges": [{ "startOffset": 220, "endOffset": 289, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "Cache.get", + "ranges": [{ "startOffset": 312, "endOffset": 357, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Cache.set", + "ranges": [{ "startOffset": 380, "endOffset": 532, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setter", + "ranges": [{ "startOffset": 1002, "endOffset": 1571, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getter", + "ranges": [{ "startOffset": 1584, "endOffset": 1951, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "join", + "ranges": [{ "startOffset": 1962, "endOffset": 2204, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "forEach", + "ranges": [{ "startOffset": 2218, "endOffset": 2319, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "normalizePath", + "ranges": [{ "startOffset": 2324, "endOffset": 2538, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "split", + "ranges": [{ "startOffset": 2540, "endOffset": 2605, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "forEach", + "ranges": [{ "startOffset": 2607, "endOffset": 3028, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isQuoted", + "ranges": [{ "startOffset": 3030, "endOffset": 3150, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hasLeadingNumber", + "ranges": [{ "startOffset": 3152, "endOffset": 3253, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hasSpecialChars", + "ranges": [{ "startOffset": 3255, "endOffset": 3325, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "shouldBeQuoted", + "ranges": [{ "startOffset": 3327, "endOffset": 3438, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "443", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/tiny-case/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2799, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "words", + "ranges": [{ "startOffset": 2035, "endOffset": 2068, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "upperFirst", + "ranges": [{ "startOffset": 2089, "endOffset": 2133, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "join", + "ranges": [{ "startOffset": 2148, "endOffset": 2192, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "camelCase", + "ranges": [{ "startOffset": 2212, "endOffset": 2406, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pascalCase", + "ranges": [{ "startOffset": 2427, "endOffset": 2462, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "snakeCase", + "ranges": [{ "startOffset": 2482, "endOffset": 2505, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "kebabCase", + "ranges": [{ "startOffset": 2525, "endOffset": 2548, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "sentenceCase", + "ranges": [{ "startOffset": 2571, "endOffset": 2606, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "titleCase", + "ranges": [{ "startOffset": 2626, "endOffset": 2671, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "444", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/toposort/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2270, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "module.exports", + "ranges": [{ "startOffset": 106, "endOffset": 170, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toposort", + "ranges": [ + { "startOffset": 205, "endOffset": 1619, "count": 1 }, + { "startOffset": 718, "endOffset": 774, "count": 21 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 526, "endOffset": 701, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visit", + "ranges": [ + { "startOffset": 795, "endOffset": 1617, "count": 21 }, + { "startOffset": 866, "endOffset": 1059, "count": 0 }, + { "startOffset": 1091, "endOffset": 1221, "count": 0 }, + { "startOffset": 1243, "endOffset": 1250, "count": 0 }, + { "startOffset": 1396, "endOffset": 1584, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "uniqueNodes", + "ranges": [{ "startOffset": 1621, "endOffset": 1816, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "makeOutgoingEdges", + "ranges": [ + { "startOffset": 1818, "endOffset": 2123, "count": 1 }, + { "startOffset": 1925, "endOffset": 2106, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "makeNodesHash", + "ranges": [ + { "startOffset": 2125, "endOffset": 2269, "count": 1 }, + { "startOffset": 2226, "endOffset": 2254, "count": 21 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "445", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/configuration/helpers.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 287, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "isTruthyString", + "ranges": [ + { "startOffset": 118, "endOffset": 251, "count": 1 }, + { "startOffset": 201, "endOffset": 250, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "446", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/configuration/split_format_descriptor.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2505, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "splitFormatDescriptor", + "ranges": [{ "startOffset": 132, "endOffset": 2453, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "447", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/configuration/types.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 110, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "448", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/configuration/validate_configuration.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1239, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "validateConfiguration", + "ranges": [ + { "startOffset": 132, "endOffset": 1188, "count": 1 }, + { "startOffset": 224, "endOffset": 416, "count": 0 }, + { "startOffset": 494, "endOffset": 724, "count": 0 }, + { "startOffset": 761, "endOffset": 792, "count": 0 }, + { "startOffset": 794, "endOffset": 1015, "count": 0 }, + { "startOffset": 1053, "endOffset": 1076, "count": 0 }, + { "startOffset": 1078, "endOffset": 1186, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "449", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/api/index.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 1272, "count": 1 }, + { "startOffset": 640, "endOffset": 721, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 321, "endOffset": 638, "count": 4 }, + { "startOffset": 465, "endOffset": 480, "count": 0 }, + { "startOffset": 497, "endOffset": 517, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 560, "endOffset": 587, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 643, "endOffset": 720, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__exportStar", + "ranges": [ + { "startOffset": 774, "endOffset": 925, "count": 5 }, + { "startOffset": 818, "endOffset": 923, "count": 4 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "450", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/api/load_configuration.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1763, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "loadConfiguration", + "ranges": [ + { "startOffset": 547, "endOffset": 1716, "count": 1 }, + { "startOffset": 791, "endOffset": 873, "count": 0 }, + { "startOffset": 909, "endOffset": 980, "count": 0 }, + { "startOffset": 1103, "endOffset": 1192, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "451", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/configuration/locate_file.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 691, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 70, "endOffset": 151, "count": 2 }, + { "startOffset": 122, "endOffset": 127, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "locateFile", + "ranges": [{ "startOffset": 508, "endOffset": 651, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 569, "endOffset": 647, "count": 6 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "452", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/mz/fs.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 1044, "count": 1 }, + { "startOffset": 83, "endOffset": 118, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "exports.exists", + "ranges": [{ "startOffset": 742, "endOffset": 1043, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "453", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/any-promise/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 49, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "454", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/any-promise/register.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2910, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "loadImplementation", + "ranges": [ + { "startOffset": 330, "endOffset": 1397, "count": 1 }, + { "startOffset": 599, "endOffset": 1027, "count": 0 }, + { "startOffset": 1048, "endOffset": 1380, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "shouldPreferGlobalPromise", + "ranges": [ + { "startOffset": 1512, "endOffset": 2093, "count": 1 }, + { "startOffset": 1584, "endOffset": 1636, "count": 0 }, + { "startOffset": 1979, "endOffset": 1998, "count": 0 }, + { "startOffset": 2003, "endOffset": 2092, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "tryAutoDetect", + "ranges": [{ "startOffset": 2561, "endOffset": 2909, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "455", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/any-promise/loader.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2581, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "module.exports", + "ranges": [{ "startOffset": 1121, "endOffset": 2580, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "register", + "ranges": [ + { "startOffset": 1166, "endOffset": 2578, "count": 1 }, + { "startOffset": 1594, "endOffset": 1620, "count": 0 }, + { "startOffset": 1629, "endOffset": 1676, "count": 0 }, + { "startOffset": 1677, "endOffset": 1986, "count": 0 }, + { "startOffset": 2087, "endOffset": 2125, "count": 0 }, + { "startOffset": 2126, "endOffset": 2242, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "456", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/graceful-fs/graceful-fs.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 12680, "count": 1 }, + { "startOffset": 529, "endOffset": 624, "count": 0 }, + { "startOffset": 859, "endOffset": 1061, "count": 0 }, + { "startOffset": 2292, "endOffset": 2430, "count": 0 }, + { "startOffset": 2590, "endOffset": 2606, "count": 0 }, + { "startOffset": 2608, "endOffset": 2667, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "noop", + "ranges": [{ "startOffset": 626, "endOffset": 645, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "publishQueue", + "ranges": [{ "startOffset": 647, "endOffset": 790, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 746, "endOffset": 783, "count": 31 }], + "isBlockCoverage": true + }, + { + "functionName": "debug", + "ranges": [{ "startOffset": 927, "endOffset": 1061, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1492, "endOffset": 1899, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "close", + "ranges": [{ "startOffset": 1518, "endOffset": 1797, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1579, "endOffset": 1790, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1930, "endOffset": 2221, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "closeSync", + "ranges": [{ "startOffset": 1960, "endOffset": 2107, "count": 14 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2317, "endOffset": 2425, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "patch", + "ranges": [ + { "startOffset": 2669, "endOffset": 10035, "count": 1 }, + { "startOffset": 6760, "endOffset": 6877, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "readFile", + "ranges": [{ "startOffset": 2948, "endOffset": 3507, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writeFile", + "ranges": [{ "startOffset": 3572, "endOffset": 4166, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "appendFile", + "ranges": [{ "startOffset": 4258, "endOffset": 4857, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "copyFile", + "ranges": [{ "startOffset": 4939, "endOffset": 5516, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readdir", + "ranges": [{ "startOffset": 5617, "endOffset": 6711, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 7295, "endOffset": 7338, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 7349, "endOffset": 7394, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 7500, "endOffset": 7544, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 7555, "endOffset": 7601, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 7763, "endOffset": 7810, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 7821, "endOffset": 7870, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 8016, "endOffset": 8064, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 8075, "endOffset": 8125, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ReadStream", + "ranges": [{ "startOffset": 8180, "endOffset": 8400, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ReadStream$open", + "ranges": [{ "startOffset": 8404, "endOffset": 8725, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "WriteStream", + "ranges": [{ "startOffset": 8729, "endOffset": 8954, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "WriteStream$open", + "ranges": [{ "startOffset": 8958, "endOffset": 9229, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createReadStream", + "ranges": [{ "startOffset": 9233, "endOffset": 9324, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createWriteStream", + "ranges": [{ "startOffset": 9328, "endOffset": 9421, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "open", + "ranges": [{ "startOffset": 9466, "endOffset": 10020, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "enqueue", + "ranges": [{ "startOffset": 10037, "endOffset": 10147, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resetQueue", + "ranges": [ + { "startOffset": 10396, "endOffset": 10864, "count": 15 }, + { "startOffset": 10497, "endOffset": 10787, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "retry", + "ranges": [ + { "startOffset": 10866, "endOffset": 12679, "count": 15 }, + { "startOffset": 11061, "endOffset": 12677, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "457", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/graceful-fs/polyfills.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 10141, "count": 1 }, + { "startOffset": 259, "endOffset": 272, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "process.cwd", + "ranges": [ + { "startOffset": 163, "endOffset": 234, "count": 8 }, + { "startOffset": 192, "endOffset": 219, "count": 1 } + ], + "isBlockCoverage": true + }, + { + "functionName": "process.chdir", + "ranges": [{ "startOffset": 416, "endOffset": 476, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "patch", + "ranges": [ + { "startOffset": 577, "endOffset": 10140, "count": 1 }, + { "startOffset": 832, "endOffset": 857, "count": 0 }, + { "startOffset": 916, "endOffset": 942, "count": 0 }, + { "startOffset": 1963, "endOffset": 2088, "count": 0 }, + { "startOffset": 2119, "endOffset": 2248, "count": 0 }, + { "startOffset": 2875, "endOffset": 3782, "count": 0 }, + { "startOffset": 3881, "endOffset": 3890, "count": 0 }, + { "startOffset": 4689, "endOffset": 4702, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "fs.lchmod", + "ranges": [{ "startOffset": 1981, "endOffset": 2049, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fs.lchmodSync", + "ranges": [{ "startOffset": 2070, "endOffset": 2084, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fs.lchown", + "ranges": [{ "startOffset": 2137, "endOffset": 2209, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fs.lchownSync", + "ranges": [{ "startOffset": 2230, "endOffset": 2244, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2944, "endOffset": 3766, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3896, "endOffset": 4627, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "read", + "ranges": [{ "startOffset": 3921, "endOffset": 4462, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4708, "endOffset": 5082, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "fs.readSync", + "ranges": [{ "startOffset": 4740, "endOffset": 5081, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "patchLchmod", + "ranges": [{ "startOffset": 5100, "endOffset": 6268, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "patchLutimes", + "ranges": [{ "startOffset": 6272, "endOffset": 7328, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "chmodFix", + "ranges": [ + { "startOffset": 7332, "endOffset": 7581, "count": 3 }, + { "startOffset": 7374, "endOffset": 7385, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 7397, "endOffset": 7577, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "chmodFixSync", + "ranges": [ + { "startOffset": 7585, "endOffset": 7810, "count": 3 }, + { "startOffset": 7631, "endOffset": 7642, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 7654, "endOffset": 7806, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "chownFix", + "ranges": [ + { "startOffset": 7815, "endOffset": 8072, "count": 3 }, + { "startOffset": 7857, "endOffset": 7868, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 7880, "endOffset": 8068, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "chownFixSync", + "ranges": [ + { "startOffset": 8076, "endOffset": 8309, "count": 3 }, + { "startOffset": 8122, "endOffset": 8133, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8145, "endOffset": 8305, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "statFix", + "ranges": [ + { "startOffset": 8313, "endOffset": 8936, "count": 3 }, + { "startOffset": 8354, "endOffset": 8365, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8466, "endOffset": 8932, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "statFixSync", + "ranges": [ + { "startOffset": 8940, "endOffset": 9377, "count": 3 }, + { "startOffset": 8985, "endOffset": 8996, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9097, "endOffset": 9373, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "chownErOk", + "ranges": [{ "startOffset": 9850, "endOffset": 10138, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "458", + "url": "node:constants", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1713, "count": 1 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "459", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/graceful-fs/legacy-streams.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2655, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "legacy", + "ranges": [{ "startOffset": 64, "endOffset": 2654, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "460", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/graceful-fs/clone.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 496, "count": 1 }, + { "startOffset": 81, "endOffset": 125, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "getPrototypeOf", + "ranges": [{ "startOffset": 84, "endOffset": 125, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "clone", + "ranges": [ + { "startOffset": 127, "endOffset": 495, "count": 1 }, + { "startOffset": 201, "endOffset": 211, "count": 0 }, + { "startOffset": 291, "endOffset": 333, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 377, "endOffset": 477, "count": 108 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "461", + "url": "node:internal/fs/dir", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 8190, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 764, "endOffset": 925, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Dir", + "ranges": [{ "startOffset": 930, "endOffset": 1651, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get path", + "ranges": [{ "startOffset": 1655, "endOffset": 1761, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#processHandlerQueue", + "ranges": [{ "startOffset": 1765, "endOffset": 2397, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "read", + "ranges": [{ "startOffset": 2401, "endOffset": 2515, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#readImpl", + "ranges": [{ "startOffset": 2519, "endOffset": 4167, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "processReadResult", + "ranges": [{ "startOffset": 4171, "endOffset": 4421, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readSyncRecursive", + "ranges": [{ "startOffset": 4425, "endOffset": 4726, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readSync", + "ranges": [{ "startOffset": 4730, "endOffset": 5554, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "close", + "ranges": [{ "startOffset": 5558, "endOffset": 6332, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "closeSync", + "ranges": [{ "startOffset": 6336, "endOffset": 6718, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "entries", + "ranges": [{ "startOffset": 6722, "endOffset": 6977, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6981, "endOffset": 7056, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 7060, "endOffset": 7160, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "opendir", + "ranges": [{ "startOffset": 7363, "endOffset": 7914, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "opendirSync", + "ranges": [{ "startOffset": 7916, "endOffset": 8133, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "462", + "url": "node:internal/fs/streams", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 15565, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "_construct", + "ranges": [ + { "startOffset": 1136, "endOffset": 2039, "count": 1 }, + { "startOffset": 1228, "endOffset": 1261, "count": 0 }, + { "startOffset": 1328, "endOffset": 1768, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "stream.emit", + "ranges": [{ "startOffset": 1433, "endOffset": 1744, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 1837, "endOffset": 2031, "count": 1 }, + { "startOffset": 1865, "endOffset": 1896, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "FileHandleOperations", + "ranges": [{ "startOffset": 2132, "endOffset": 3222, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "close", + "ranges": [ + { "startOffset": 3225, "endOffset": 3466, "count": 1 }, + { "startOffset": 3277, "endOffset": 3295, "count": 0 }, + { "startOffset": 3319, "endOffset": 3424, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3354, "endOffset": 3418, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_close", + "ranges": [{ "startOffset": 3468, "endOffset": 3590, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3534, "endOffset": 3566, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "importFd", + "ranges": [{ "startOffset": 3592, "endOffset": 4597, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ReadStream", + "ranges": [ + { "startOffset": 4599, "endOffset": 6349, "count": 1 }, + { "startOffset": 4677, "endOffset": 4714, "count": 0 }, + { "startOffset": 5297, "endOffset": 5312, "count": 0 }, + { "startOffset": 5365, "endOffset": 5379, "count": 0 }, + { "startOffset": 5414, "endOffset": 5480, "count": 0 }, + { "startOffset": 5549, "endOffset": 5568, "count": 0 }, + { "startOffset": 5888, "endOffset": 5966, "count": 0 }, + { "startOffset": 6029, "endOffset": 6296, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 6538, "endOffset": 6649, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 6653, "endOffset": 6766, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6802, "endOffset": 6827, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ReadStream._read", + "ranges": [ + { "startOffset": 7003, "endOffset": 8134, "count": 2 }, + { "startOffset": 7046, "endOffset": 7087, "count": 0 }, + { "startOffset": 7152, "endOffset": 7190, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 7318, "endOffset": 8130, "count": 2 }, + { "startOffset": 7470, "endOffset": 7527, "count": 0 }, + { "startOffset": 7543, "endOffset": 7586, "count": 0 }, + { "startOffset": 7611, "endOffset": 8084, "count": 1 }, + { "startOffset": 7649, "endOffset": 7693, "count": 0 }, + { "startOffset": 8084, "endOffset": 8124, "count": 1 } + ], + "isBlockCoverage": true + }, + { + "functionName": "ReadStream._destroy", + "ranges": [ + { "startOffset": 8169, "endOffset": 8730, "count": 1 }, + { "startOffset": 8626, "endOffset": 8691, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8651, "endOffset": 8685, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ReadStream.close", + "ranges": [{ "startOffset": 8762, "endOffset": 8848, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 8928, "endOffset": 8962, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "WriteStream", + "ranges": [{ "startOffset": 8991, "endOffset": 10996, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 11188, "endOffset": 11300, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 11304, "endOffset": 11418, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 11455, "endOffset": 11480, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writeAll", + "ranges": [{ "startOffset": 11631, "endOffset": 12424, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writevAll", + "ranges": [{ "startOffset": 12426, "endOffset": 13243, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "WriteStream._write", + "ranges": [{ "startOffset": 13276, "endOffset": 13660, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "WriteStream._writev", + "ranges": [{ "startOffset": 13695, "endOffset": 14257, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "WriteStream._destroy", + "ranges": [{ "startOffset": 14293, "endOffset": 14854, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "WriteStream.close", + "ranges": [{ "startOffset": 14887, "endOffset": 15269, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 15451, "endOffset": 15485, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "463", + "url": "node:internal/fs/promises", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 34739, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "lazyLoadCpPromises", + "ranges": [{ "startOffset": 3148, "endOffset": 3240, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lazyFsStreams", + "ranges": [{ "startOffset": 3302, "endOffset": 3385, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3414, "endOffset": 3464, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3503, "endOffset": 3571, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "handleErrorFromBinding", + "ranges": [{ "startOffset": 3858, "endOffset": 3988, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "FileHandle", + "ranges": [ + { "startOffset": 4110, "endOffset": 4328, "count": 3 }, + { "startOffset": 4265, "endOffset": 4269, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "getAsyncId", + "ranges": [{ "startOffset": 4332, "endOffset": 4389, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get fd", + "ranges": [{ "startOffset": 4393, "endOffset": 4429, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "appendFile", + "ranges": [{ "startOffset": 4433, "endOffset": 4515, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "chmod", + "ranges": [{ "startOffset": 4519, "endOffset": 4575, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "chown", + "ranges": [{ "startOffset": 4579, "endOffset": 4643, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "datasync", + "ranges": [{ "startOffset": 4647, "endOffset": 4699, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "sync", + "ranges": [{ "startOffset": 4703, "endOffset": 4747, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "read", + "ranges": [{ "startOffset": 4751, "endOffset": 4860, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readv", + "ranges": [{ "startOffset": 4864, "endOffset": 4945, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readFile", + "ranges": [{ "startOffset": 4949, "endOffset": 5016, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readLines", + "ranges": [{ "startOffset": 5020, "endOffset": 5163, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stat", + "ranges": [{ "startOffset": 5167, "endOffset": 5227, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "truncate", + "ranges": [{ "startOffset": 5231, "endOffset": 5295, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "utimes", + "ranges": [{ "startOffset": 5299, "endOffset": 5373, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "write", + "ranges": [{ "startOffset": 5377, "endOffset": 5488, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writev", + "ranges": [{ "startOffset": 5492, "endOffset": 5575, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writeFile", + "ranges": [{ "startOffset": 5579, "endOffset": 5660, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5664, "endOffset": 6464, "count": 3 }], + "isBlockCoverage": false + }, + { + "functionName": "close", + "ranges": [ + { "startOffset": 5672, "endOffset": 6464, "count": 3 }, + { "startOffset": 5706, "endOffset": 5744, "count": 0 }, + { "startOffset": 5775, "endOffset": 5816, "count": 0 }, + { "startOffset": 6042, "endOffset": 6403, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5984, "endOffset": 6026, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": ".SafePromisePrototypeFinally.", + "ranges": [{ "startOffset": 6127, "endOffset": 6239, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6242, "endOffset": 6387, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6469, "endOffset": 6527, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readableWebStream", + "ranges": [{ "startOffset": 6729, "endOffset": 8366, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createReadStream", + "ranges": [{ "startOffset": 8664, "endOffset": 8815, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createWriteStream", + "ranges": [{ "startOffset": 9119, "endOffset": 9273, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9277, "endOffset": 9741, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9745, "endOffset": 9798, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9802, "endOffset": 9889, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9893, "endOffset": 9926, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9930, "endOffset": 10147, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "handleFdClose", + "ranges": [{ "startOffset": 10151, "endOffset": 10522, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 10262, "endOffset": 10321, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 10308, "endOffset": 10320, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 10327, "endOffset": 10514, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "handleFdSync", + "ranges": [{ "startOffset": 10524, "endOffset": 10807, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fsCall", + "ranges": [{ "startOffset": 10809, "endOffset": 11293, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "checkAborted", + "ranges": [ + { "startOffset": 11295, "endOffset": 11414, "count": 9 }, + { "startOffset": 11339, "endOffset": 11348, "count": 0 }, + { "startOffset": 11354, "endOffset": 11412, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "writeFileHandle", + "ranges": [ + { "startOffset": 11416, "endOffset": 12558, "count": 3 }, + { "startOffset": 11539, "endOffset": 12061, "count": 0 }, + { "startOffset": 12192, "endOffset": 12199, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "readFileHandle", + "ranges": [{ "startOffset": 12560, "endOffset": 14961, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "access", + "ranges": [{ "startOffset": 15114, "endOffset": 15307, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "cp", + "ranges": [{ "startOffset": 15309, "endOffset": 15520, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "copyFile", + "ranges": [{ "startOffset": 15522, "endOffset": 15786, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "open", + "ranges": [{ "startOffset": 15906, "endOffset": 16238, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "read", + "ranges": [{ "startOffset": 16240, "endOffset": 17736, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readv", + "ranges": [{ "startOffset": 17738, "endOffset": 18102, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "write", + "ranges": [ + { "startOffset": 18104, "endOffset": 19462, "count": 3 }, + { "startOffset": 18214, "endOffset": 18266, "count": 0 }, + { "startOffset": 18371, "endOffset": 18521, "count": 0 }, + { "startOffset": 18547, "endOffset": 18572, "count": 0 }, + { "startOffset": 18672, "endOffset": 18708, "count": 0 }, + { "startOffset": 19072, "endOffset": 19076, "count": 0 }, + { "startOffset": 19135, "endOffset": 19407, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "writev", + "ranges": [{ "startOffset": 19464, "endOffset": 19929, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "rename", + "ranges": [{ "startOffset": 19931, "endOffset": 20211, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "truncate", + "ranges": [{ "startOffset": 20213, "endOffset": 20346, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ftruncate", + "ranges": [{ "startOffset": 20348, "endOffset": 20587, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "rm", + "ranges": [{ "startOffset": 20589, "endOffset": 20762, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "rmdir", + "ranges": [{ "startOffset": 20764, "endOffset": 21184, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fdatasync", + "ranges": [{ "startOffset": 21186, "endOffset": 21355, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fsync", + "ranges": [{ "startOffset": 21357, "endOffset": 21518, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mkdir", + "ranges": [{ "startOffset": 21520, "endOffset": 22033, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readdirRecursive", + "ranges": [{ "startOffset": 22035, "endOffset": 23999, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readdir", + "ranges": [{ "startOffset": 24001, "endOffset": 24592, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readlink", + "ranges": [{ "startOffset": 24594, "endOffset": 24858, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "symlink", + "ranges": [{ "startOffset": 24860, "endOffset": 25998, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fstat", + "ranges": [{ "startOffset": 26000, "endOffset": 26252, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lstat", + "ranges": [ + { "startOffset": 26254, "endOffset": 26809, "count": 2 }, + { "startOffset": 26374, "endOffset": 26409, "count": 0 }, + { "startOffset": 26411, "endOffset": 26621, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "stat", + "ranges": [{ "startOffset": 26811, "endOffset": 27072, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "statfs", + "ranges": [{ "startOffset": 27074, "endOffset": 27340, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "link", + "ranges": [{ "startOffset": 27342, "endOffset": 27643, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "unlink", + "ranges": [{ "startOffset": 27645, "endOffset": 27819, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fchmod", + "ranges": [{ "startOffset": 27821, "endOffset": 28163, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "chmod", + "ranges": [{ "startOffset": 28165, "endOffset": 28402, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lchmod", + "ranges": [{ "startOffset": 28404, "endOffset": 28632, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lchown", + "ranges": [{ "startOffset": 28634, "endOffset": 28937, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fchown", + "ranges": [{ "startOffset": 28939, "endOffset": 29345, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "chown", + "ranges": [{ "startOffset": 29347, "endOffset": 29648, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "utimes", + "ranges": [{ "startOffset": 29650, "endOffset": 29932, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "futimes", + "ranges": [{ "startOffset": 29934, "endOffset": 30213, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lutimes", + "ranges": [{ "startOffset": 30215, "endOffset": 30484, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "realpath", + "ranges": [{ "startOffset": 30486, "endOffset": 30724, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mkdtemp", + "ranges": [{ "startOffset": 30726, "endOffset": 31034, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mkdtempDisposable", + "ranges": [{ "startOffset": 31036, "endOffset": 31782, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writeFile", + "ranges": [ + { "startOffset": 31784, "endOffset": 32658, "count": 3 }, + { "startOffset": 31972, "endOffset": 31978, "count": 0 }, + { "startOffset": 32010, "endOffset": 32018, "count": 0 }, + { "startOffset": 32226, "endOffset": 32235, "count": 0 }, + { "startOffset": 32320, "endOffset": 32389, "count": 0 }, + { "startOffset": 32566, "endOffset": 32612, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "isCustomIterable", + "ranges": [ + { "startOffset": 32660, "endOffset": 32774, "count": 6 }, + { "startOffset": 32745, "endOffset": 32771, "count": 3 } + ], + "isBlockCoverage": true + }, + { + "functionName": "appendFile", + "ranges": [{ "startOffset": 32776, "endOffset": 33003, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readFile", + "ranges": [{ "startOffset": 33005, "endOffset": 33349, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_watch", + "ranges": [{ "startOffset": 33351, "endOffset": 34012, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 34039, "endOffset": 34077, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "glob", + "ranges": [{ "startOffset": 34080, "endOffset": 34193, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "464", + "url": "node:internal/fs/watchers", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 14409, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1725, "endOffset": 1771, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createIgnoreMatcher", + "ranges": [{ "startOffset": 2010, "endOffset": 3163, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "emitStop", + "ranges": [{ "startOffset": 3165, "endOffset": 3213, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "StatWatcher", + "ranges": [{ "startOffset": 3215, "endOffset": 3445, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "onchange", + "ranges": [{ "startOffset": 3565, "endOffset": 3922, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "StatWatcher.", + "ranges": [{ "startOffset": 4310, "endOffset": 5148, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "StatWatcher.start", + "ranges": [{ "startOffset": 5369, "endOffset": 5377, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "StatWatcher.stop", + "ranges": [{ "startOffset": 5623, "endOffset": 5904, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "StatWatcher.", + "ranges": [{ "startOffset": 5993, "endOffset": 6420, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "StatWatcher.ref", + "ranges": [{ "startOffset": 6451, "endOffset": 6733, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "StatWatcher.unref", + "ranges": [{ "startOffset": 6766, "endOffset": 7016, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "FSWatcher", + "ranges": [{ "startOffset": 7020, "endOffset": 8185, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "FSWatcher.", + "ranges": [{ "startOffset": 8722, "endOffset": 9838, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "FSWatcher.start", + "ranges": [{ "startOffset": 10055, "endOffset": 10063, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "FSWatcher.close", + "ranges": [{ "startOffset": 10186, "endOffset": 10523, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "FSWatcher.ref", + "ranges": [{ "startOffset": 10552, "endOffset": 10621, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "FSWatcher.unref", + "ranges": [{ "startOffset": 10652, "endOffset": 10723, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "emitCloseNT", + "ranges": [{ "startOffset": 10726, "endOffset": 10778, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 11002, "endOffset": 11038, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 11042, "endOffset": 11083, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "watch", + "ranges": [{ "startOffset": 11119, "endOffset": 14254, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "465", + "url": "node:internal/fs/recursive_watch", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 7607, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "lazyLoadFsSync", + "ranges": [{ "startOffset": 759, "endOffset": 845, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 917, "endOffset": 1119, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "FSWatcher", + "ranges": [{ "startOffset": 1124, "endOffset": 2074, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "close", + "ranges": [{ "startOffset": 2078, "endOffset": 2372, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#unwatchFiles", + "ranges": [{ "startOffset": 2376, "endOffset": 2684, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#watchFolder", + "ranges": [{ "startOffset": 2688, "endOffset": 3788, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#watchFile", + "ranges": [{ "startOffset": 3792, "endOffset": 5599, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5603, "endOffset": 6102, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ref", + "ranges": [{ "startOffset": 6106, "endOffset": 6230, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "unref", + "ranges": [{ "startOffset": 6234, "endOffset": 6362, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6366, "endOffset": 7551, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "466", + "url": "node:internal/readline/interface", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 47331, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "InterfaceConstructor", + "ranges": [{ "startOffset": 4891, "endOffset": 10245, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get columns", + "ranges": [{ "startOffset": 10433, "endOffset": 10531, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setPrompt", + "ranges": [{ "startOffset": 10640, "endOffset": 10691, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getPrompt", + "ranges": [{ "startOffset": 10785, "endOffset": 10828, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setupHistoryManager", + "ranges": [{ "startOffset": 10832, "endOffset": 11869, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 11873, "endOffset": 12064, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "prompt", + "ranges": [{ "startOffset": 12203, "endOffset": 12457, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 12461, "endOffset": 12768, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 12772, "endOffset": 12883, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 12887, "endOffset": 13129, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 13133, "endOffset": 13220, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 13224, "endOffset": 13392, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 13396, "endOffset": 13593, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 13597, "endOffset": 13708, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 13712, "endOffset": 15114, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "close", + "ranges": [{ "startOffset": 15198, "endOffset": 15369, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pause", + "ranges": [{ "startOffset": 15450, "endOffset": 15659, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resume", + "ranges": [{ "startOffset": 15751, "endOffset": 15965, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "write", + "ranges": [{ "startOffset": 16236, "endOffset": 16473, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 16477, "endOffset": 18211, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 18215, "endOffset": 19327, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 19331, "endOffset": 19730, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 19734, "endOffset": 21953, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 21957, "endOffset": 22418, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 22422, "endOffset": 22680, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 22684, "endOffset": 23166, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 23170, "endOffset": 23651, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 23655, "endOffset": 24415, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 24419, "endOffset": 24846, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 24850, "endOffset": 25132, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 25136, "endOffset": 25398, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 25402, "endOffset": 25662, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 25666, "endOffset": 25821, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 25825, "endOffset": 26504, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 26508, "endOffset": 26659, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 26663, "endOffset": 26821, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "clearLine", + "ranges": [{ "startOffset": 26825, "endOffset": 26978, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 26982, "endOffset": 27168, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 27826, "endOffset": 31442, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 31446, "endOffset": 31633, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 31637, "endOffset": 31949, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 31953, "endOffset": 32265, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 32269, "endOffset": 33343, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 33347, "endOffset": 33692, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 34127, "endOffset": 34431, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 34435, "endOffset": 34761, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 34765, "endOffset": 35077, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 35152, "endOffset": 36239, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getCursorPos", + "ranges": [{ "startOffset": 36416, "endOffset": 36580, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 36699, "endOffset": 37256, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 37293, "endOffset": 45960, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 46131, "endOffset": 46511, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 46585, "endOffset": 46615, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "467", + "url": "node:internal/readline/utils", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 12782, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "CSI", + "ranges": [ + { "startOffset": 390, "endOffset": 584, "count": 4 }, + { "startOffset": 549, "endOffset": 564, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "charLengthLeft", + "ranges": [{ "startOffset": 963, "endOffset": 1225, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "charLengthAt", + "ranges": [{ "startOffset": 1227, "endOffset": 1489, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "emitKeys", + "ranges": [{ "startOffset": 2218, "endOffset": 11845, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "commonPrefix", + "ranges": [{ "startOffset": 11875, "endOffset": 12271, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "reverseString", + "ranges": [{ "startOffset": 12273, "endOffset": 12652, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "468", + "url": "node:internal/readline/callbacks", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2754, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "cursorTo", + "ranges": [{ "startOffset": 460, "endOffset": 1146, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "moveCursor", + "ranges": [{ "startOffset": 1210, "endOffset": 1722, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "clearLine", + "ranges": [{ "startOffset": 1869, "endOffset": 2272, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "clearScreenDown", + "ranges": [{ "startOffset": 2349, "endOffset": 2672, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "469", + "url": "node:internal/repl/history", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 12779, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 504, "endOffset": 529, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ReplHistory", + "ranges": [{ "startOffset": 1998, "endOffset": 2527, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "initialize", + "ranges": [{ "startOffset": 2531, "endOffset": 3855, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addHistory", + "ranges": [{ "startOffset": 3859, "endOffset": 5731, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "canNavigateToNext", + "ranges": [{ "startOffset": 5735, "endOffset": 5819, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "navigateToNext", + "ranges": [{ "startOffset": 5823, "endOffset": 6345, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "canNavigateToPrevious", + "ranges": [{ "startOffset": 6349, "endOffset": 6458, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "navigateToPrevious", + "ranges": [{ "startOffset": 6462, "endOffset": 7035, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get size", + "ranges": [{ "startOffset": 7039, "endOffset": 7073, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get isFlushing", + "ranges": [{ "startOffset": 7076, "endOffset": 7122, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get history", + "ranges": [{ "startOffset": 7125, "endOffset": 7165, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set history", + "ranges": [{ "startOffset": 7168, "endOffset": 7214, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get index", + "ranges": [{ "startOffset": 7217, "endOffset": 7253, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set index", + "ranges": [{ "startOffset": 7256, "endOffset": 7298, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 7337, "endOffset": 7536, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 7547, "endOffset": 8115, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8126, "endOffset": 8363, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8367, "endOffset": 8664, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8668, "endOffset": 8808, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8812, "endOffset": 9050, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9054, "endOffset": 10362, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 10366, "endOffset": 10956, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 10960, "endOffset": 11153, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 11157, "endOffset": 11841, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 11845, "endOffset": 12229, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 12233, "endOffset": 12738, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "470", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/thenify-all/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2001, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "thenifyAll", + "ranges": [{ "startOffset": 452, "endOffset": 566, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "withCallback", + "ranges": [{ "startOffset": 926, "endOffset": 1055, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "promisifyAll", + "ranges": [ + { "startOffset": 1057, "endOffset": 1798, "count": 1 }, + { "startOffset": 1142, "endOffset": 1203, "count": 0 }, + { "startOffset": 1239, "endOffset": 1291, "count": 0 }, + { "startOffset": 1309, "endOffset": 1348, "count": 0 }, + { "startOffset": 1386, "endOffset": 1417, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1437, "endOffset": 1587, "count": 33 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 1640, "endOffset": 1773, "count": 105 }, + { "startOffset": 1692, "endOffset": 1698, "count": 0 }, + { "startOffset": 1726, "endOffset": 1732, "count": 33 }, + { "startOffset": 1732, "endOffset": 1772, "count": 72 } + ], + "isBlockCoverage": true + }, + { + "functionName": "deprecated", + "ranges": [ + { "startOffset": 1800, "endOffset": 2000, "count": 105 }, + { "startOffset": 1921, "endOffset": 1933, "count": 99 }, + { "startOffset": 1933, "endOffset": 1972, "count": 6 }, + { "startOffset": 1972, "endOffset": 1983, "count": 0 }, + { "startOffset": 1983, "endOffset": 1999, "count": 6 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "471", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/thenify/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1946, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "thenify", + "ranges": [{ "startOffset": 207, "endOffset": 311, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "thenify.withCallback", + "ranges": [{ "startOffset": 485, "endOffset": 638, "count": 33 }], + "isBlockCoverage": true + }, + { + "functionName": "createCallback", + "ranges": [{ "startOffset": 640, "endOffset": 1223, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createWrapper", + "ranges": [ + { "startOffset": 1225, "endOffset": 1945, "count": 33 }, + { "startOffset": 1283, "endOffset": 1288, "count": 0 }, + { "startOffset": 1326, "endOffset": 1331, "count": 8 } + ], + "isBlockCoverage": true + }, + { + "functionName": "newFn", + "ranges": [{ "startOffset": 1377, "endOffset": 1872, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "472", + "url": "node:assert", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 27510, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "lazyLoadComparison", + "ranges": [{ "startOffset": 2366, "endOffset": 2608, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Assert", + "ranges": [{ "startOffset": 3464, "endOffset": 4205, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "innerFail", + "ranges": [{ "startOffset": 4838, "endOffset": 4954, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fail", + "ranges": [{ "startOffset": 5139, "endOffset": 6460, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ok", + "ranges": [{ "startOffset": 6687, "endOffset": 6748, "count": 34 }], + "isBlockCoverage": true + }, + { + "functionName": "ok", + "ranges": [{ "startOffset": 6991, "endOffset": 7052, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "equal", + "ranges": [{ "startOffset": 7260, "endOffset": 7668, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "notEqual", + "ranges": [{ "startOffset": 7897, "endOffset": 8309, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "deepEqual", + "ranges": [{ "startOffset": 8519, "endOffset": 8920, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "notDeepEqual", + "ranges": [{ "startOffset": 9136, "endOffset": 9545, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "deepStrictEqual", + "ranges": [{ "startOffset": 9778, "endOffset": 10236, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "notDeepStrictEqual", + "ranges": [{ "startOffset": 10495, "endOffset": 10961, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "strictEqual", + "ranges": [ + { "startOffset": 11176, "endOffset": 11525, "count": 4 }, + { "startOffset": 11254, "endOffset": 11313, "count": 0 }, + { "startOffset": 11349, "endOffset": 11523, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "notStrictEqual", + "ranges": [{ "startOffset": 11747, "endOffset": 12104, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "partialDeepStrictEqual", + "ranges": [{ "startOffset": 12322, "endOffset": 12780, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Comparison", + "ranges": [{ "startOffset": 12804, "endOffset": 13186, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "compareExceptionKey", + "ranges": [{ "startOffset": 13190, "endOffset": 13983, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "expectedException", + "ranges": [{ "startOffset": 13985, "endOffset": 17449, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getActual", + "ranges": [{ "startOffset": 17451, "endOffset": 17591, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "checkIsPromise", + "ranges": [{ "startOffset": 17593, "endOffset": 17957, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "waitForActual", + "ranges": [{ "startOffset": 17959, "endOffset": 18673, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "expectsError", + "ranges": [{ "startOffset": 18675, "endOffset": 20341, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hasMatchingError", + "ranges": [{ "startOffset": 20343, "endOffset": 20968, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "expectsNoError", + "ranges": [{ "startOffset": 20970, "endOffset": 21658, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "throws", + "ranges": [{ "startOffset": 21826, "endOffset": 21920, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "rejects", + "ranges": [{ "startOffset": 22109, "endOffset": 22221, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "doesNotThrow", + "ranges": [{ "startOffset": 22393, "endOffset": 22487, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "doesNotReject", + "ranges": [{ "startOffset": 22663, "endOffset": 22775, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ifError", + "ranges": [{ "startOffset": 22922, "endOffset": 24747, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "internalMatch", + "ranges": [{ "startOffset": 24750, "endOffset": 25870, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "match", + "ranges": [{ "startOffset": 26076, "endOffset": 26168, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "doesNotMatch", + "ranges": [{ "startOffset": 26386, "endOffset": 26492, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "strict", + "ranges": [{ "startOffset": 26683, "endOffset": 26752, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 27147, "endOffset": 27216, "count": 17 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "473", + "url": "node:internal/assert/assertion_error", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 14267, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "copyError", + "ranges": [{ "startOffset": 1742, "endOffset": 2216, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inspectValue", + "ranges": [{ "startOffset": 2218, "endOffset": 2789, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getErrorMessage", + "ranges": [{ "startOffset": 2791, "endOffset": 2887, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "checkOperator", + "ranges": [{ "startOffset": 2889, "endOffset": 3380, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getColoredMyersDiff", + "ranges": [{ "startOffset": 3382, "endOffset": 3776, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getStackedDiff", + "ranges": [{ "startOffset": 3778, "endOffset": 4752, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getSimpleDiff", + "ranges": [{ "startOffset": 4754, "endOffset": 5514, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isSimpleDiff", + "ranges": [{ "startOffset": 5516, "endOffset": 5795, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createErrDiff", + "ranges": [{ "startOffset": 5797, "endOffset": 7971, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addEllipsis", + "ranges": [{ "startOffset": 7973, "endOffset": 8310, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "AssertionError", + "ranges": [{ "startOffset": 8351, "endOffset": 13296, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toString", + "ranges": [{ "startOffset": 13300, "endOffset": 13375, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 13379, "endOffset": 14230, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "474", + "url": "node:internal/util/colors", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1321, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "lazyInternalTTY", + "ranges": [{ "startOffset": 32, "endOffset": 127, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "shouldColorize", + "ranges": [ + { "startOffset": 257, "endOffset": 517, "count": 1 }, + { "startOffset": 388, "endOffset": 413, "count": 0 }, + { "startOffset": 414, "endOffset": 512, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "refresh", + "ranges": [ + { "startOffset": 521, "endOffset": 1289, "count": 1 }, + { "startOffset": 971, "endOffset": 1285, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "475", + "url": "node:internal/assert/myers_diff", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 5361, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "areLinesEqual", + "ranges": [{ "startOffset": 326, "endOffset": 561, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "myersDiff", + "ranges": [{ "startOffset": 563, "endOffset": 1851, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "backtrack", + "ranges": [{ "startOffset": 1853, "endOffset": 3182, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "printSimpleMyersDiff", + "ranges": [{ "startOffset": 3184, "endOffset": 3630, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "printMyersDiff", + "ranges": [{ "startOffset": 3632, "endOffset": 5289, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "476", + "url": "node:internal/assert/utils", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2414, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "escapeFn", + "ranges": [{ "startOffset": 980, "endOffset": 1028, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getErrMessage", + "ranges": [{ "startOffset": 1031, "endOffset": 1786, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "innerOk", + "ranges": [ + { "startOffset": 1788, "endOffset": 2379, "count": 34 }, + { "startOffset": 1849, "endOffset": 2377, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "477", + "url": "node:internal/errors/error_source", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 5359, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "getErrorSourceLocation", + "ranges": [{ "startOffset": 691, "endOffset": 1458, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getFirstExpression", + "ranges": [{ "startOffset": 1785, "endOffset": 4627, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getErrorSourceExpression", + "ranges": [{ "startOffset": 5052, "endOffset": 5281, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "478", + "url": "node:internal/assert/calltracker", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3452, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 491, "endOffset": 534, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "CallTrackerContext", + "ranges": [{ "startOffset": 538, "endOffset": 698, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "track", + "ranges": [{ "startOffset": 702, "endOffset": 877, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get delta", + "ranges": [{ "startOffset": 881, "endOffset": 946, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "reset", + "ranges": [{ "startOffset": 950, "endOffset": 985, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getCalls", + "ranges": [{ "startOffset": 988, "endOffset": 1063, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "report", + "ranges": [{ "startOffset": 1067, "endOffset": 1493, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1520, "endOffset": 1588, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#getTrackedFunction", + "ranges": [{ "startOffset": 1593, "endOffset": 1817, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "reset", + "ranges": [{ "startOffset": 1821, "endOffset": 2000, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getCalls", + "ranges": [{ "startOffset": 2004, "endOffset": 2084, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "calls", + "ranges": [{ "startOffset": 2088, "endOffset": 2866, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "report", + "ranges": [{ "startOffset": 2870, "endOffset": 3106, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "verify", + "ranges": [{ "startOffset": 3110, "endOffset": 3418, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "479", + "url": "node:internal/streams/fast-utf8-stream", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 24626, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "sleep", + "ranges": [{ "startOffset": 978, "endOffset": 1498, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2034, "endOffset": 2623, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Utf8Stream", + "ranges": [{ "startOffset": 4178, "endOffset": 8545, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "write", + "ranges": [{ "startOffset": 8618, "endOffset": 8665, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "flush", + "ranges": [{ "startOffset": 8818, "endOffset": 8868, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "flushSync", + "ranges": [{ "startOffset": 8872, "endOffset": 8913, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "reopen", + "ranges": [{ "startOffset": 8957, "endOffset": 9746, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "end", + "ranges": [{ "startOffset": 9750, "endOffset": 10198, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "destroy", + "ranges": [{ "startOffset": 10202, "endOffset": 10289, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get mode", + "ranges": [{ "startOffset": 10317, "endOffset": 10350, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get file", + "ranges": [{ "startOffset": 10388, "endOffset": 10421, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get fd", + "ranges": [{ "startOffset": 10449, "endOffset": 10478, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get minLength", + "ranges": [{ "startOffset": 10506, "endOffset": 10549, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get maxLength", + "ranges": [{ "startOffset": 10577, "endOffset": 10620, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get writing", + "ranges": [{ "startOffset": 10649, "endOffset": 10688, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get sync", + "ranges": [{ "startOffset": 10717, "endOffset": 10750, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get fsync", + "ranges": [{ "startOffset": 10779, "endOffset": 10814, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get append", + "ranges": [{ "startOffset": 10843, "endOffset": 10880, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get periodicFlush", + "ranges": [{ "startOffset": 10908, "endOffset": 10959, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get contentMode", + "ranges": [{ "startOffset": 10996, "endOffset": 11106, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get mkdir", + "ranges": [{ "startOffset": 11135, "endOffset": 11170, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 11174, "endOffset": 11211, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#release", + "ranges": [{ "startOffset": 11215, "endOffset": 13523, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#openFile", + "ranges": [{ "startOffset": 13527, "endOffset": 15449, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#emitDrain", + "ranges": [{ "startOffset": 15453, "endOffset": 15623, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#actualClose", + "ranges": [{ "startOffset": 15627, "endOffset": 16446, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#actualWriteBuffer", + "ranges": [{ "startOffset": 16450, "endOffset": 17155, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#actualWriteUtf8", + "ranges": [{ "startOffset": 17159, "endOffset": 17585, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#flushBufferSync", + "ranges": [{ "startOffset": 17589, "endOffset": 18628, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#flushSyncUtf8", + "ranges": [{ "startOffset": 18632, "endOffset": 19789, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#callFlushCallbackOnDrain", + "ranges": [{ "startOffset": 19793, "endOffset": 20670, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#flushBuffer", + "ranges": [{ "startOffset": 20674, "endOffset": 21238, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#flushUtf8", + "ranges": [{ "startOffset": 21242, "endOffset": 21763, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#writeBuffer", + "ranges": [{ "startOffset": 21767, "endOffset": 22746, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#writeUtf8", + "ranges": [{ "startOffset": 22750, "endOffset": 23457, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "releaseWritingBuf", + "ranges": [{ "startOffset": 23845, "endOffset": 24417, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mergeBuf", + "ranges": [{ "startOffset": 24419, "endOffset": 24595, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "480", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/environment/index.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 887, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 88, "endOffset": 405, "count": 1 }, + { "startOffset": 232, "endOffset": 247, "count": 0 }, + { "startOffset": 264, "endOffset": 284, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 327, "endOffset": 354, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__exportStar", + "ranges": [ + { "startOffset": 541, "endOffset": 692, "count": 2 }, + { "startOffset": 585, "endOffset": 690, "count": 1 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "481", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/environment/make_environment.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 697, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "makeEnvironment", + "ranges": [{ "startOffset": 174, "endOffset": 652, "count": 2 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "482", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/environment/console_logger.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 838, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 183, "endOffset": 220, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "ConsoleLogger", + "ranges": [{ "startOffset": 226, "endOffset": 403, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "debug", + "ranges": [ + { "startOffset": 408, "endOffset": 552, "count": 12 }, + { "startOffset": 475, "endOffset": 546, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 557, "endOffset": 654, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "warn", + "ranges": [{ "startOffset": 659, "endOffset": 754, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "483", + "url": "node:console", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1202, "count": 1 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "484", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/environment/types.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 110, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "485", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/api/convert_configuration.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2517, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "convertConfiguration", + "ranges": [{ "startOffset": 183, "endOffset": 1302, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "convertFormats", + "ranges": [ + { "startOffset": 1303, "endOffset": 1985, "count": 1 }, + { "startOffset": 1599, "endOffset": 1604, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1415, "endOffset": 1510, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1575, "endOffset": 1598, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1680, "endOffset": 1704, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1726, "endOffset": 1860, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "makePublishConfig", + "ranges": [ + { "startOffset": 1986, "endOffset": 2248, "count": 1 }, + { "startOffset": 2144, "endOffset": 2247, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "isPublishing", + "ranges": [{ "startOffset": 2249, "endOffset": 2467, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "486", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/api/load_sources.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2089, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "loadSources", + "ranges": [{ "startOffset": 560, "endOffset": 2048, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "487", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/paths/index.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 876, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 88, "endOffset": 405, "count": 1 }, + { "startOffset": 232, "endOffset": 247, "count": 0 }, + { "startOffset": 264, "endOffset": 284, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 327, "endOffset": 354, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__exportStar", + "ranges": [ + { "startOffset": 541, "endOffset": 692, "count": 2 }, + { "startOffset": 585, "endOffset": 690, "count": 1 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "488", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/paths/paths.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 4478, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 70, "endOffset": 151, "count": 2 }, + { "startOffset": 122, "endOffset": 127, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "resolvePaths", + "ranges": [{ "startOffset": 392, "endOffset": 1264, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "expandPaths", + "ranges": [{ "startOffset": 1265, "endOffset": 2100, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1398, "endOffset": 1968, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 1643, "endOffset": 1920, "count": 4 }, + { "startOffset": 1721, "endOffset": 1882, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2020, "endOffset": 2059, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "getUnexpandedSourcePaths", + "ranges": [ + { "startOffset": 2101, "endOffset": 2849, "count": 1 }, + { "startOffset": 2796, "endOffset": 2848, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 2243, "endOffset": 2625, "count": 1 }, + { "startOffset": 2361, "endOffset": 2589, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2558, "endOffset": 2573, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2763, "endOffset": 2778, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "getFeatureDirectoryPaths", + "ranges": [{ "startOffset": 2850, "endOffset": 3498, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "expandSourcePaths", + "ranges": [{ "startOffset": 3499, "endOffset": 3709, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3589, "endOffset": 3622, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "deriveSupportPaths", + "ranges": [ + { "startOffset": 3710, "endOffset": 4444, "count": 1 }, + { "startOffset": 3856, "endOffset": 3901, "count": 0 }, + { "startOffset": 3903, "endOffset": 4118, "count": 0 }, + { "startOffset": 4250, "endOffset": 4254, "count": 0 }, + { "startOffset": 4321, "endOffset": 4395, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "489", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/glob/dist/commonjs/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2876, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 699, "endOffset": 741, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 814, "endOffset": 858, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 965, "endOffset": 1003, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1124, "endOffset": 1171, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1284, "endOffset": 1326, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "globStreamSync", + "ranges": [{ "startOffset": 1331, "endOffset": 1443, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "globStream", + "ranges": [{ "startOffset": 1444, "endOffset": 1548, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "globSync", + "ranges": [{ "startOffset": 1549, "endOffset": 1653, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "glob_", + "ranges": [{ "startOffset": 1654, "endOffset": 1757, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "globIterateSync", + "ranges": [{ "startOffset": 1758, "endOffset": 1872, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "globIterate", + "ranges": [{ "startOffset": 1873, "endOffset": 1979, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "490", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/glob/node_modules/minimatch/dist/commonjs/index.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 39853, "count": 1 }, + { "startOffset": 3263, "endOffset": 3272, "count": 0 }, + { "startOffset": 3407, "endOffset": 3423, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 70, "endOffset": 151, "count": 1 }, + { "startOffset": 122, "endOffset": 127, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "minimatch", + "ranges": [{ "startOffset": 729, "endOffset": 1007, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "starDotExtTest", + "ranges": [{ "startOffset": 1166, "endOffset": 1219, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "starDotExtTestDot", + "ranges": [{ "startOffset": 1247, "endOffset": 1278, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "starDotExtTestNocase", + "ranges": [{ "startOffset": 1309, "endOffset": 1421, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 1360, "endOffset": 1418, "count": 5 }, + { "startOffset": 1386, "endOffset": 1418, "count": 4 } + ], + "isBlockCoverage": true + }, + { + "functionName": "starDotExtTestNocaseDot", + "ranges": [{ "startOffset": 1455, "endOffset": 1545, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "starDotStarTest", + "ranges": [{ "startOffset": 1607, "endOffset": 1651, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "starDotStarTestDot", + "ranges": [{ "startOffset": 1680, "endOffset": 1729, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "dotStarTest", + "ranges": [{ "startOffset": 1780, "endOffset": 1831, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "starTest", + "ranges": [{ "startOffset": 1874, "endOffset": 1917, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "starTestDot", + "ranges": [{ "startOffset": 1939, "endOffset": 1987, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "qmarksTestNocase", + "ranges": [{ "startOffset": 2057, "endOffset": 2247, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "qmarksTestNocaseDot", + "ranges": [{ "startOffset": 2277, "endOffset": 2470, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "qmarksTestDot", + "ranges": [{ "startOffset": 2494, "endOffset": 2623, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "qmarksTest", + "ranges": [{ "startOffset": 2644, "endOffset": 2770, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "qmarksTestNoExt", + "ranges": [{ "startOffset": 2796, "endOffset": 2894, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "qmarksTestNoExtDot", + "ranges": [{ "startOffset": 2923, "endOffset": 3026, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "filter", + "ranges": [{ "startOffset": 4110, "endOffset": 4187, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ext", + "ranges": [{ "startOffset": 4269, "endOffset": 4307, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "defaults", + "ranges": [{ "startOffset": 4326, "endOffset": 5918, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "braceExpand", + "ranges": [ + { "startOffset": 6266, "endOffset": 6670, "count": 2 }, + { "startOffset": 6616, "endOffset": 6669, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "makeRe", + "ranges": [{ "startOffset": 7419, "endOffset": 7486, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "match", + "ranges": [{ "startOffset": 7570, "endOffset": 7792, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "regExpEscape", + "ranges": [{ "startOffset": 7956, "endOffset": 8008, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8032, "endOffset": 8310, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "Minimatch", + "ranges": [ + { "startOffset": 8316, "endOffset": 9586, "count": 2 }, + { "startOffset": 8447, "endOffset": 8452, "count": 0 }, + { "startOffset": 8632, "endOffset": 8650, "count": 0 }, + { "startOffset": 8783, "endOffset": 8822, "count": 0 }, + { "startOffset": 9359, "endOffset": 9387, "count": 0 }, + { "startOffset": 9424, "endOffset": 9438, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "hasMagic", + "ranges": [{ "startOffset": 9591, "endOffset": 9918, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "debug", + "ranges": [{ "startOffset": 9923, "endOffset": 9938, "count": 8 }], + "isBlockCoverage": true + }, + { + "functionName": "make", + "ranges": [ + { "startOffset": 9943, "endOffset": 12773, "count": 2 }, + { "startOffset": 10113, "endOffset": 10141, "count": 0 }, + { "startOffset": 10143, "endOffset": 10207, "count": 0 }, + { "startOffset": 10230, "endOffset": 10292, "count": 0 }, + { "startOffset": 10483, "endOffset": 10556, "count": 0 }, + { "startOffset": 12337, "endOffset": 12723, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "debug", + "ranges": [{ "startOffset": 10510, "endOffset": 10545, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 11186, "endOffset": 11209, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 11383, "endOffset": 12091, "count": 2 }, + { "startOffset": 11430, "endOffset": 11456, "count": 0 }, + { "startOffset": 11458, "endOffset": 12033, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 11848, "endOffset": 11868, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 11978, "endOffset": 11998, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 12059, "endOffset": 12079, "count": 10 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 12226, "endOffset": 12254, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "preprocess", + "ranges": [ + { "startOffset": 13074, "endOffset": 14142, "count": 2 }, + { "startOffset": 13201, "endOffset": 13486, "count": 0 }, + { "startOffset": 13784, "endOffset": 14110, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "adjascentGlobstarOptimize", + "ranges": [{ "startOffset": 14192, "endOffset": 14632, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "levelOneOptimize", + "ranges": [{ "startOffset": 14692, "endOffset": 15347, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "levelTwoFileOptimize", + "ranges": [{ "startOffset": 15352, "endOffset": 16840, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "firstPhasePreProcess", + "ranges": [ + { "startOffset": 17671, "endOffset": 20908, "count": 2 }, + { "startOffset": 18107, "endOffset": 18226, "count": 0 }, + { "startOffset": 18393, "endOffset": 18472, "count": 0 }, + { "startOffset": 18682, "endOffset": 18746, "count": 0 }, + { "startOffset": 18747, "endOffset": 18784, "count": 0 }, + { "startOffset": 18785, "endOffset": 18815, "count": 0 }, + { "startOffset": 18816, "endOffset": 18853, "count": 0 }, + { "startOffset": 18854, "endOffset": 18892, "count": 0 }, + { "startOffset": 18894, "endOffset": 19273, "count": 0 }, + { "startOffset": 19442, "endOffset": 19882, "count": 6 }, + { "startOffset": 19582, "endOffset": 19593, "count": 2 }, + { "startOffset": 19594, "endOffset": 19612, "count": 0 }, + { "startOffset": 19642, "endOffset": 19651, "count": 0 }, + { "startOffset": 19703, "endOffset": 19860, "count": 0 }, + { "startOffset": 19924, "endOffset": 19969, "count": 0 }, + { "startOffset": 19970, "endOffset": 20034, "count": 0 }, + { "startOffset": 20036, "endOffset": 20141, "count": 0 }, + { "startOffset": 20309, "endOffset": 20830, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "secondPhasePreProcess", + "ranges": [ + { "startOffset": 21250, "endOffset": 21749, "count": 2 }, + { "startOffset": 21340, "endOffset": 21693, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 21726, "endOffset": 21741, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "partsMatch", + "ranges": [{ "startOffset": 21754, "endOffset": 23331, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseNegate", + "ranges": [ + { "startOffset": 23336, "endOffset": 23760, "count": 2 }, + { "startOffset": 23398, "endOffset": 23566, "count": 0 }, + { "startOffset": 23573, "endOffset": 23759, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "matchOne", + "ranges": [{ "startOffset": 24003, "endOffset": 26058, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#matchGlobstar", + "ranges": [{ "startOffset": 26063, "endOffset": 28811, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#matchGlobStarBodySections", + "ranges": [{ "startOffset": 28816, "endOffset": 30066, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#matchOne", + "ranges": [{ "startOffset": 30071, "endOffset": 31334, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "braceExpand", + "ranges": [{ "startOffset": 31339, "endOffset": 31429, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "parse", + "ranges": [ + { "startOffset": 31434, "endOffset": 33161, "count": 10 }, + { "startOffset": 31620, "endOffset": 31644, "count": 2 }, + { "startOffset": 31644, "endOffset": 31685, "count": 8 }, + { "startOffset": 31685, "endOffset": 31695, "count": 0 }, + { "startOffset": 31695, "endOffset": 31912, "count": 8 }, + { "startOffset": 31912, "endOffset": 31984, "count": 0 }, + { "startOffset": 31984, "endOffset": 32872, "count": 8 }, + { "startOffset": 32037, "endOffset": 32321, "count": 2 }, + { "startOffset": 32128, "endOffset": 32153, "count": 0 }, + { "startOffset": 32213, "endOffset": 32303, "count": 0 }, + { "startOffset": 32321, "endOffset": 32872, "count": 6 }, + { "startOffset": 32370, "endOffset": 32635, "count": 0 }, + { "startOffset": 32689, "endOffset": 32775, "count": 0 }, + { "startOffset": 32825, "endOffset": 32872, "count": 0 }, + { "startOffset": 32872, "endOffset": 32973, "count": 8 }, + { "startOffset": 32973, "endOffset": 32998, "count": 2 }, + { "startOffset": 33000, "endOffset": 33136, "count": 2 }, + { "startOffset": 33136, "endOffset": 33160, "count": 8 } + ], + "isBlockCoverage": true + }, + { + "functionName": "makeRe", + "ranges": [{ "startOffset": 33166, "endOffset": 36523, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "slashSplit", + "ranges": [ + { "startOffset": 36528, "endOffset": 37097, "count": 2 }, + { "startOffset": 36822, "endOffset": 36866, "count": 0 }, + { "startOffset": 36899, "endOffset": 36923, "count": 0 }, + { "startOffset": 36925, "endOffset": 37031, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "match", + "ranges": [{ "startOffset": 37102, "endOffset": 39013, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "defaults", + "ranges": [{ "startOffset": 39025, "endOffset": 39104, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 39259, "endOffset": 39295, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 39408, "endOffset": 39450, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 39569, "endOffset": 39615, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "491", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/glob/node_modules/brace-expansion/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 5196, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "numeric", + "ranges": [{ "startOffset": 298, "endOffset": 406, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "escapeBraces", + "ranges": [{ "startOffset": 408, "endOffset": 645, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "unescapeBraces", + "ranges": [{ "startOffset": 647, "endOffset": 876, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseCommaParts", + "ranges": [{ "startOffset": 1040, "endOffset": 1506, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "expandTop", + "ranges": [{ "startOffset": 1508, "endOffset": 2185, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "embrace", + "ranges": [{ "startOffset": 2187, "endOffset": 2238, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isPadded", + "ranges": [{ "startOffset": 2239, "endOffset": 2292, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lte", + "ranges": [{ "startOffset": 2294, "endOffset": 2333, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "gte", + "ranges": [{ "startOffset": 2334, "endOffset": 2373, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "expand", + "ranges": [{ "startOffset": 2375, "endOffset": 5195, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "492", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/glob/node_modules/balanced-match/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1219, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "balanced", + "ranges": [{ "startOffset": 41, "endOffset": 368, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "maybeMatch", + "ranges": [{ "startOffset": 370, "endOffset": 455, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "range", + "ranges": [{ "startOffset": 481, "endOffset": 1218, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "493", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/glob/node_modules/minimatch/dist/commonjs/assert-valid-pattern.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 492, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "assertValidPattern", + "ranges": [ + { "startOffset": 179, "endOffset": 393, "count": 14 }, + { "startOffset": 231, "endOffset": 286, "count": 0 }, + { "startOffset": 332, "endOffset": 391, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "494", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/glob/node_modules/minimatch/dist/commonjs/ast.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 27788, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "isExtglobType", + "ranges": [{ "startOffset": 324, "endOffset": 343, "count": 82 }], + "isBlockCoverage": true + }, + { + "functionName": "isExtglobAST", + "ranges": [{ "startOffset": 366, "endOffset": 394, "count": 16 }], + "isBlockCoverage": true + }, + { + "functionName": "regExpEscape", + "ranges": [{ "startOffset": 1811, "endOffset": 1863, "count": 64 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2278, "endOffset": 2563, "count": 8 }], + "isBlockCoverage": true + }, + { + "functionName": "AST", + "ranges": [ + { "startOffset": 2569, "endOffset": 3138, "count": 8 }, + { "startOffset": 2710, "endOffset": 2732, "count": 0 }, + { "startOffset": 2798, "endOffset": 2818, "count": 0 }, + { "startOffset": 2881, "endOffset": 2902, "count": 0 }, + { "startOffset": 2950, "endOffset": 2968, "count": 0 }, + { "startOffset": 2995, "endOffset": 3021, "count": 0 }, + { "startOffset": 3035, "endOffset": 3057, "count": 0 }, + { "startOffset": 3099, "endOffset": 3127, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get hasMagic", + "ranges": [{ "startOffset": 3143, "endOffset": 3613, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toString", + "ranges": [ + { "startOffset": 3650, "endOffset": 4007, "count": 16 }, + { "startOffset": 3717, "endOffset": 3739, "count": 0 }, + { "startOffset": 3855, "endOffset": 4001, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3819, "endOffset": 3833, "count": 16 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3958, "endOffset": 3972, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#fillNegs", + "ranges": [ + { "startOffset": 4012, "endOffset": 5201, "count": 8 }, + { "startOffset": 4101, "endOffset": 4145, "count": 0 }, + { "startOffset": 4188, "endOffset": 4200, "count": 0 }, + { "startOffset": 4391, "endOffset": 5174, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "push", + "ranges": [ + { "startOffset": 5206, "endOffset": 5577, "count": 8 }, + { "startOffset": 5298, "endOffset": 5307, "count": 0 }, + { "startOffset": 5380, "endOffset": 5423, "count": 0 }, + { "startOffset": 5425, "endOffset": 5495, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "toJSON", + "ranges": [{ "startOffset": 5582, "endOffset": 6052, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isStart", + "ranges": [ + { "startOffset": 6057, "endOffset": 6654, "count": 16 }, + { "startOffset": 6126, "endOffset": 6220, "count": 0 }, + { "startOffset": 6236, "endOffset": 6653, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "isEnd", + "ranges": [ + { "startOffset": 6659, "endOffset": 7146, "count": 16 }, + { "startOffset": 6726, "endOffset": 6757, "count": 0 }, + { "startOffset": 6779, "endOffset": 6824, "count": 0 }, + { "startOffset": 6840, "endOffset": 7061, "count": 0 }, + { "startOffset": 7062, "endOffset": 7065, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "copyIn", + "ranges": [{ "startOffset": 7151, "endOffset": 7292, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "clone", + "ranges": [{ "startOffset": 7297, "endOffset": 7455, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#parseAST", + "ranges": [ + { "startOffset": 7467, "endOffset": 11981, "count": 8 }, + { "startOffset": 7867, "endOffset": 9384, "count": 66 }, + { "startOffset": 8075, "endOffset": 8196, "count": 0 }, + { "startOffset": 8226, "endOffset": 8644, "count": 0 }, + { "startOffset": 8681, "endOffset": 8870, "count": 0 }, + { "startOffset": 8956, "endOffset": 9000, "count": 2 }, + { "startOffset": 9001, "endOffset": 9044, "count": 0 }, + { "startOffset": 9077, "endOffset": 9344, "count": 0 }, + { "startOffset": 9443, "endOffset": 11980, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "#canAdoptWithSpace", + "ranges": [{ "startOffset": 11986, "endOffset": 12079, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#canAdopt", + "ranges": [{ "startOffset": 12084, "endOffset": 12522, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#canAdoptType", + "ranges": [{ "startOffset": 12527, "endOffset": 12623, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#adoptWithSpace", + "ranges": [{ "startOffset": 12628, "endOffset": 12845, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#adopt", + "ranges": [{ "startOffset": 12850, "endOffset": 13122, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#canUsurpType", + "ranges": [{ "startOffset": 13127, "endOffset": 13224, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#canUsurp", + "ranges": [{ "startOffset": 13229, "endOffset": 13683, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#usurp", + "ranges": [{ "startOffset": 13688, "endOffset": 14186, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#flatten", + "ranges": [ + { "startOffset": 14191, "endOffset": 15360, "count": 8 }, + { "startOffset": 14345, "endOffset": 14358, "count": 0 }, + { "startOffset": 14382, "endOffset": 15318, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "fromGlob", + "ranges": [{ "startOffset": 15372, "endOffset": 15536, "count": 8 }], + "isBlockCoverage": true + }, + { + "functionName": "toMMPattern", + "ranges": [ + { "startOffset": 15636, "endOffset": 16607, "count": 8 }, + { "startOffset": 15768, "endOffset": 15800, "count": 0 }, + { "startOffset": 16164, "endOffset": 16193, "count": 6 }, + { "startOffset": 16194, "endOffset": 16342, "count": 6 }, + { "startOffset": 16281, "endOffset": 16341, "count": 0 }, + { "startOffset": 16367, "endOffset": 16403, "count": 6 }, + { "startOffset": 16403, "endOffset": 16453, "count": 2 }, + { "startOffset": 16454, "endOffset": 16458, "count": 0 }, + { "startOffset": 16469, "endOffset": 16474, "count": 0 }, + { "startOffset": 16475, "endOffset": 16479, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get options", + "ranges": [{ "startOffset": 16612, "endOffset": 16663, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toRegExpSource", + "ranges": [ + { "startOffset": 20106, "endOffset": 25298, "count": 8 }, + { "startOffset": 21715, "endOffset": 21740, "count": 0 }, + { "startOffset": 21871, "endOffset": 21896, "count": 0 }, + { "startOffset": 22032, "endOffset": 22057, "count": 0 }, + { "startOffset": 22343, "endOffset": 22361, "count": 0 }, + { "startOffset": 22374, "endOffset": 22386, "count": 2 }, + { "startOffset": 22387, "endOffset": 22391, "count": 6 }, + { "startOffset": 22649, "endOffset": 22655, "count": 0 }, + { "startOffset": 22665, "endOffset": 22715, "count": 0 }, + { "startOffset": 22961, "endOffset": 23218, "count": 0 }, + { "startOffset": 23292, "endOffset": 23305, "count": 0 }, + { "startOffset": 23306, "endOffset": 23313, "count": 0 }, + { "startOffset": 23387, "endOffset": 23402, "count": 0 }, + { "startOffset": 23403, "endOffset": 23411, "count": 0 }, + { "startOffset": 23412, "endOffset": 23432, "count": 0 }, + { "startOffset": 23434, "endOffset": 23907, "count": 0 }, + { "startOffset": 23908, "endOffset": 23914, "count": 0 }, + { "startOffset": 23915, "endOffset": 23929, "count": 0 }, + { "startOffset": 23942, "endOffset": 23946, "count": 0 }, + { "startOffset": 23959, "endOffset": 23986, "count": 0 }, + { "startOffset": 24025, "endOffset": 24301, "count": 0 }, + { "startOffset": 24303, "endOffset": 25297, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 20442, "endOffset": 20787, "count": 8 }, + { "startOffset": 20604, "endOffset": 20632, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "#partsToRegExp", + "ranges": [{ "startOffset": 25303, "endOffset": 25948, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#parseGlob", + "ranges": [ + { "startOffset": 25960, "endOffset": 27725, "count": 8 }, + { "startOffset": 26226, "endOffset": 27644, "count": 66 }, + { "startOffset": 26292, "endOffset": 26458, "count": 0 }, + { "startOffset": 26487, "endOffset": 26703, "count": 0 }, + { "startOffset": 26731, "endOffset": 27137, "count": 0 }, + { "startOffset": 27165, "endOffset": 27403, "count": 2 }, + { "startOffset": 27215, "endOffset": 27224, "count": 0 }, + { "startOffset": 27309, "endOffset": 27322, "count": 0 }, + { "startOffset": 27403, "endOffset": 27496, "count": 64 }, + { "startOffset": 27496, "endOffset": 27599, "count": 0 }, + { "startOffset": 27599, "endOffset": 27644, "count": 64 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "495", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/glob/node_modules/minimatch/dist/commonjs/brace-expressions.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 5763, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "braceEscape", + "ranges": [{ "startOffset": 1000, "endOffset": 1037, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "regexpEscape", + "ranges": [{ "startOffset": 1098, "endOffset": 1150, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "rangesToString", + "ranges": [{ "startOffset": 1236, "endOffset": 1263, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseClass", + "ranges": [{ "startOffset": 1621, "endOffset": 5683, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "496", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/glob/node_modules/minimatch/dist/commonjs/unescape.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 973, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "unescape", + "ranges": [ + { "startOffset": 694, "endOffset": 906, "count": 16 }, + { "startOffset": 783, "endOffset": 818, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "497", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/glob/node_modules/minimatch/dist/commonjs/escape.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 968, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "escape", + "ranges": [{ "startOffset": 553, "endOffset": 907, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "498", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/glob/dist/commonjs/glob.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 8546, "count": 1 }, + { "startOffset": 552, "endOffset": 561, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 643, "endOffset": 1151, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "Glob", + "ranges": [ + { "startOffset": 1581, "endOffset": 5913, "count": 2 }, + { "startOffset": 1671, "endOffset": 1716, "count": 0 }, + { "startOffset": 2038, "endOffset": 2076, "count": 0 }, + { "startOffset": 2153, "endOffset": 2228, "count": 0 }, + { "startOffset": 2257, "endOffset": 2262, "count": 0 }, + { "startOffset": 2729, "endOffset": 2744, "count": 0 }, + { "startOffset": 2856, "endOffset": 2886, "count": 0 }, + { "startOffset": 2888, "endOffset": 2974, "count": 0 }, + { "startOffset": 3137, "endOffset": 3209, "count": 0 }, + { "startOffset": 3353, "endOffset": 3562, "count": 0 }, + { "startOffset": 3736, "endOffset": 3984, "count": 0 }, + { "startOffset": 4053, "endOffset": 4084, "count": 0 }, + { "startOffset": 4130, "endOffset": 4162, "count": 0 }, + { "startOffset": 4199, "endOffset": 4230, "count": 0 }, + { "startOffset": 4776, "endOffset": 4804, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3286, "endOffset": 3312, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3510, "endOffset": 3550, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5366, "endOffset": 5404, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5456, "endOffset": 5579, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 5629, "endOffset": 5905, "count": 2 }, + { "startOffset": 5749, "endOffset": 5791, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "walk", + "ranges": [ + { "startOffset": 5918, "endOffset": 6667, "count": 2 }, + { "startOffset": 6392, "endOffset": 6453, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "walkSync", + "ranges": [{ "startOffset": 6672, "endOffset": 7139, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stream", + "ranges": [{ "startOffset": 7144, "endOffset": 7547, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "streamSync", + "ranges": [{ "startOffset": 7552, "endOffset": 7963, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "iterateSync", + "ranges": [{ "startOffset": 8083, "endOffset": 8157, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8162, "endOffset": 8224, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "iterate", + "ranges": [{ "startOffset": 8351, "endOffset": 8422, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8427, "endOffset": 8490, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "499", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/glob/node_modules/path-scurry/dist/commonjs/index.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 66122, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 }, + { "startOffset": 65687, "endOffset": 65698, "count": 0 }, + { "startOffset": 65989, "endOffset": 66006, "count": 0 }, + { "startOffset": 66070, "endOffset": 66087, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 88, "endOffset": 405, "count": 104 }, + { "startOffset": 232, "endOffset": 247, "count": 6 }, + { "startOffset": 248, "endOffset": 284, "count": 98 }, + { "startOffset": 264, "endOffset": 284, "count": 1 }, + { "startOffset": 287, "endOffset": 363, "count": 103 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 327, "endOffset": 354, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 807, "endOffset": 818, "count": 0 }, + { "startOffset": 880, "endOffset": 981, "count": 104 } + ], + "isBlockCoverage": true + }, + { + "functionName": "fsFromOption", + "ranges": [ + { "startOffset": 2223, "endOffset": 2478, "count": 4 }, + { "startOffset": 2273, "endOffset": 2297, "count": 0 }, + { "startOffset": 2318, "endOffset": 2478, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "uncToDrive", + "ranges": [{ "startOffset": 2588, "endOffset": 2663, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "entToType", + "ranges": [ + { "startOffset": 3789, "endOffset": 4096, "count": 7 }, + { "startOffset": 3807, "endOffset": 3814, "count": 5 }, + { "startOffset": 3819, "endOffset": 4096, "count": 2 }, + { "startOffset": 3853, "endOffset": 4096, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "normalize", + "ranges": [ + { "startOffset": 4182, "endOffset": 4337, "count": 19 }, + { "startOffset": 4247, "endOffset": 4256, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "normalizeNocase", + "ranges": [ + { "startOffset": 4403, "endOffset": 4577, "count": 55 }, + { "startOffset": 4474, "endOffset": 4483, "count": 36 }, + { "startOffset": 4483, "endOffset": 4576, "count": 19 } + ], + "isBlockCoverage": true + }, + { + "functionName": "ResolveCache", + "ranges": [{ "startOffset": 4720, "endOffset": 4770, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "ChildrenCache", + "ranges": [{ "startOffset": 5698, "endOffset": 5868, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "sizeCalculation", + "ranges": [{ "startOffset": 5832, "endOffset": 5849, "count": 26 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6947, "endOffset": 33181, "count": 31 }], + "isBlockCoverage": true + }, + { + "functionName": "get dev", + "ranges": [{ "startOffset": 7660, "endOffset": 7703, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get mode", + "ranges": [{ "startOffset": 7719, "endOffset": 7764, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get nlink", + "ranges": [{ "startOffset": 7781, "endOffset": 7828, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get uid", + "ranges": [{ "startOffset": 7843, "endOffset": 7886, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get gid", + "ranges": [{ "startOffset": 7901, "endOffset": 7944, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get rdev", + "ranges": [{ "startOffset": 7960, "endOffset": 8005, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get blksize", + "ranges": [{ "startOffset": 8024, "endOffset": 8075, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get ino", + "ranges": [{ "startOffset": 8090, "endOffset": 8133, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get size", + "ranges": [{ "startOffset": 8149, "endOffset": 8194, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get blocks", + "ranges": [{ "startOffset": 8212, "endOffset": 8261, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get atimeMs", + "ranges": [{ "startOffset": 8280, "endOffset": 8331, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get mtimeMs", + "ranges": [{ "startOffset": 8350, "endOffset": 8401, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get ctimeMs", + "ranges": [{ "startOffset": 8420, "endOffset": 8471, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get birthtimeMs", + "ranges": [{ "startOffset": 8494, "endOffset": 8553, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get atime", + "ranges": [{ "startOffset": 8570, "endOffset": 8617, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get mtime", + "ranges": [{ "startOffset": 8634, "endOffset": 8681, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get ctime", + "ranges": [{ "startOffset": 8698, "endOffset": 8745, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get birthtime", + "ranges": [{ "startOffset": 8766, "endOffset": 8821, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get parentPath", + "ranges": [{ "startOffset": 9243, "endOffset": 9316, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get path", + "ranges": [{ "startOffset": 9493, "endOffset": 9543, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "PathBase", + "ranges": [ + { "startOffset": 9736, "endOffset": 10394, "count": 31 }, + { "startOffset": 9892, "endOffset": 9909, "count": 0 }, + { "startOffset": 10032, "endOffset": 10039, "count": 2 }, + { "startOffset": 10266, "endOffset": 10317, "count": 29 }, + { "startOffset": 10317, "endOffset": 10388, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "depth", + "ranges": [{ "startOffset": 10547, "endOffset": 10753, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "childrenCache", + "ranges": [{ "startOffset": 10791, "endOffset": 10845, "count": 29 }], + "isBlockCoverage": true + }, + { + "functionName": "resolve", + "ranges": [ + { "startOffset": 10948, "endOffset": 11340, "count": 6 }, + { "startOffset": 10983, "endOffset": 11019, "count": 0 }, + { "startOffset": 11207, "endOffset": 11267, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "#resolveParts", + "ranges": [{ "startOffset": 11345, "endOffset": 11496, "count": 6 }], + "isBlockCoverage": true + }, + { + "functionName": "children", + "ranges": [ + { "startOffset": 11795, "endOffset": 12093, "count": 28 }, + { "startOffset": 11877, "endOffset": 11915, "count": 2 }, + { "startOffset": 11915, "endOffset": 12092, "count": 26 } + ], + "isBlockCoverage": true + }, + { + "functionName": "child", + "ranges": [ + { "startOffset": 12498, "endOffset": 13714, "count": 24 }, + { "startOffset": 12571, "endOffset": 12607, "count": 0 }, + { "startOffset": 12639, "endOffset": 12690, "count": 0 }, + { "startOffset": 12820, "endOffset": 12841, "count": 0 }, + { "startOffset": 12877, "endOffset": 12969, "count": 0 }, + { "startOffset": 13175, "endOffset": 13185, "count": 22 }, + { "startOffset": 13186, "endOffset": 13190, "count": 2 }, + { "startOffset": 13232, "endOffset": 13263, "count": 6 }, + { "startOffset": 13264, "endOffset": 13275, "count": 18 }, + { "startOffset": 13448, "endOffset": 13495, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "relative", + "ranges": [{ "startOffset": 13881, "endOffset": 14271, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "relativePosix", + "ranges": [{ "startOffset": 14539, "endOffset": 15014, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fullpath", + "ranges": [ + { "startOffset": 15093, "endOffset": 15471, "count": 36 }, + { "startOffset": 15148, "endOffset": 15194, "count": 12 }, + { "startOffset": 15194, "endOffset": 15274, "count": 24 }, + { "startOffset": 15274, "endOffset": 15334, "count": 2 }, + { "startOffset": 15334, "endOffset": 15403, "count": 22 }, + { "startOffset": 15403, "endOffset": 15407, "count": 2 }, + { "startOffset": 15408, "endOffset": 15418, "count": 20 } + ], + "isBlockCoverage": true + }, + { + "functionName": "fullpathPosix", + "ranges": [{ "startOffset": 15670, "endOffset": 16350, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isUnknown", + "ranges": [{ "startOffset": 16621, "endOffset": 16688, "count": 6 }], + "isBlockCoverage": true + }, + { + "functionName": "isType", + "ranges": [{ "startOffset": 16693, "endOffset": 16749, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getType", + "ranges": [{ "startOffset": 16754, "endOffset": 17330, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isFile", + "ranges": [{ "startOffset": 17386, "endOffset": 17448, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isDirectory", + "ranges": [{ "startOffset": 17501, "endOffset": 17568, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isCharacterDevice", + "ranges": [{ "startOffset": 17628, "endOffset": 17701, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isBlockDevice", + "ranges": [{ "startOffset": 17757, "endOffset": 17826, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isFIFO", + "ranges": [{ "startOffset": 17879, "endOffset": 17941, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isSocket", + "ranges": [{ "startOffset": 17991, "endOffset": 18056, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isSymbolicLink", + "ranges": [{ "startOffset": 18113, "endOffset": 18184, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "lstatCached", + "ranges": [{ "startOffset": 18436, "endOffset": 18518, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readlinkCached", + "ranges": [{ "startOffset": 18879, "endOffset": 18936, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "realpathCached", + "ranges": [{ "startOffset": 19302, "endOffset": 19357, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readdirCached", + "ranges": [{ "startOffset": 19740, "endOffset": 19861, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "canReadlink", + "ranges": [{ "startOffset": 20158, "endOffset": 20507, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "calledReaddir", + "ranges": [{ "startOffset": 20668, "endOffset": 20739, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "isENOENT", + "ranges": [{ "startOffset": 20988, "endOffset": 21046, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "isNamed", + "ranges": [{ "startOffset": 21515, "endOffset": 21662, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readlink", + "ranges": [{ "startOffset": 21976, "endOffset": 22755, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readlinkSync", + "ranges": [{ "startOffset": 22821, "endOffset": 23583, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#readdirSuccess", + "ranges": [ + { "startOffset": 23588, "endOffset": 23934, "count": 2 }, + { "startOffset": 23830, "endOffset": 23928, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "#markENOENT", + "ranges": [{ "startOffset": 23939, "endOffset": 24146, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#markChildrenENOENT", + "ranges": [{ "startOffset": 24151, "endOffset": 24388, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#markENOREALPATH", + "ranges": [{ "startOffset": 24393, "endOffset": 24483, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#markENOTDIR", + "ranges": [{ "startOffset": 24552, "endOffset": 25215, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#readdirFail", + "ranges": [{ "startOffset": 25220, "endOffset": 25559, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#lstatFail", + "ranges": [{ "startOffset": 25564, "endOffset": 25974, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#readlinkFail", + "ranges": [{ "startOffset": 25979, "endOffset": 26723, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#readdirAddChild", + "ranges": [{ "startOffset": 26728, "endOffset": 26859, "count": 5 }], + "isBlockCoverage": true + }, + { + "functionName": "#readdirAddNewChild", + "ranges": [{ "startOffset": 26864, "endOffset": 27291, "count": 5 }], + "isBlockCoverage": true + }, + { + "functionName": "#readdirMaybePromoteChild", + "ranges": [ + { "startOffset": 27296, "endOffset": 27668, "count": 5 }, + { "startOffset": 27385, "endOffset": 27662, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "#readdirPromoteChild", + "ranges": [{ "startOffset": 27673, "endOffset": 28359, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lstat", + "ranges": [ + { "startOffset": 28996, "endOffset": 29293, "count": 2 }, + { "startOffset": 29209, "endOffset": 29277, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "lstatSync", + "ranges": [{ "startOffset": 29356, "endOffset": 29640, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#applyStat", + "ranges": [ + { "startOffset": 29645, "endOffset": 30636, "count": 2 }, + { "startOffset": 30565, "endOffset": 30582, "count": 0 }, + { "startOffset": 30584, "endOffset": 30630, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "#callOnReaddirCB", + "ranges": [{ "startOffset": 30696, "endOffset": 30903, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 30871, "endOffset": 30895, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "readdirCB", + "ranges": [ + { "startOffset": 31669, "endOffset": 33155, "count": 2 }, + { "startOffset": 31737, "endOffset": 31895, "count": 0 }, + { "startOffset": 31972, "endOffset": 32191, "count": 0 }, + { "startOffset": 32323, "endOffset": 32354, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 31845, "endOffset": 31863, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 32142, "endOffset": 32159, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 32605, "endOffset": 33147, "count": 2 }, + { "startOffset": 32644, "endOffset": 32745, "count": 0 }, + { "startOffset": 32904, "endOffset": 32979, "count": 5 } + ], + "isBlockCoverage": true + }, + { + "functionName": "readdir", + "ranges": [{ "startOffset": 33456, "endOffset": 34698, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readdirSync", + "ranges": [{ "startOffset": 34763, "endOffset": 35564, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "canReaddir", + "ranges": [ + { "startOffset": 35569, "endOffset": 35953, "count": 34 }, + { "startOffset": 35631, "endOffset": 35644, "count": 4 }, + { "startOffset": 35644, "endOffset": 35822, "count": 30 }, + { "startOffset": 35822, "endOffset": 35839, "count": 4 }, + { "startOffset": 35840, "endOffset": 35857, "count": 0 }, + { "startOffset": 35860, "endOffset": 35897, "count": 0 }, + { "startOffset": 35897, "endOffset": 35952, "count": 30 } + ], + "isBlockCoverage": true + }, + { + "functionName": "shouldWalk", + "ranges": [{ "startOffset": 35958, "endOffset": 36163, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "realpath", + "ranges": [{ "startOffset": 36482, "endOffset": 36883, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "realpathSync", + "ranges": [{ "startOffset": 36940, "endOffset": 37328, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 37482, "endOffset": 38138, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 38442, "endOffset": 38537, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "PathWin32", + "ranges": [{ "startOffset": 38731, "endOffset": 38873, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "newChild", + "ranges": [{ "startOffset": 38911, "endOffset": 39066, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getRootString", + "ranges": [{ "startOffset": 39104, "endOffset": 39182, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getRoot", + "ranges": [{ "startOffset": 39220, "endOffset": 39782, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "sameRoot", + "ranges": [{ "startOffset": 39820, "endOffset": 40224, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 40444, "endOffset": 40534, "count": 31 }], + "isBlockCoverage": true + }, + { + "functionName": "PathPosix", + "ranges": [{ "startOffset": 40728, "endOffset": 40870, "count": 31 }], + "isBlockCoverage": true + }, + { + "functionName": "getRootString", + "ranges": [ + { "startOffset": 40908, "endOffset": 40983, "count": 6 }, + { "startOffset": 40966, "endOffset": 40971, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "getRoot", + "ranges": [{ "startOffset": 41021, "endOffset": 41073, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "newChild", + "ranges": [{ "startOffset": 41111, "endOffset": 41266, "count": 29 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 41744, "endOffset": 42285, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "PathScurryBase", + "ranges": [ + { "startOffset": 42470, "endOffset": 44270, "count": 2 }, + { "startOffset": 42683, "endOffset": 42748, "count": 0 }, + { "startOffset": 43351, "endOffset": 43363, "count": 0 }, + { "startOffset": 43365, "endOffset": 43401, "count": 0 }, + { "startOffset": 43466, "endOffset": 43564, "count": 0 }, + { "startOffset": 43916, "endOffset": 44239, "count": 18 }, + { "startOffset": 44160, "endOffset": 44164, "count": 16 }, + { "startOffset": 44165, "endOffset": 44174, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "depth", + "ranges": [{ "startOffset": 44351, "endOffset": 44503, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "childrenCache", + "ranges": [{ "startOffset": 44678, "endOffset": 44732, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "resolve", + "ranges": [{ "startOffset": 45047, "endOffset": 45748, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolvePosix", + "ranges": [{ "startOffset": 46210, "endOffset": 46931, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "relative", + "ranges": [{ "startOffset": 47032, "endOffset": 47195, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "relativePosix", + "ranges": [{ "startOffset": 47352, "endOffset": 47525, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "basename", + "ranges": [{ "startOffset": 47612, "endOffset": 47769, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "dirname", + "ranges": [{ "startOffset": 47855, "endOffset": 48035, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readdir", + "ranges": [{ "startOffset": 48040, "endOffset": 48572, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readdirSync", + "ranges": [{ "startOffset": 48577, "endOffset": 49151, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lstat", + "ranges": [{ "startOffset": 49804, "endOffset": 49967, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lstatSync", + "ranges": [{ "startOffset": 50036, "endOffset": 50201, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readlink", + "ranges": [{ "startOffset": 50206, "endOffset": 50631, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readlinkSync", + "ranges": [{ "startOffset": 50636, "endOffset": 51057, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "realpath", + "ranges": [{ "startOffset": 51062, "endOffset": 51487, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "realpathSync", + "ranges": [{ "startOffset": 51492, "endOffset": 51913, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "walk", + "ranges": [{ "startOffset": 51918, "endOffset": 54055, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "walkSync", + "ranges": [{ "startOffset": 54060, "endOffset": 55248, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 55596, "endOffset": 55659, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "iterate", + "ranges": [{ "startOffset": 55664, "endOffset": 56234, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 56378, "endOffset": 56440, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "iterateSync", + "ranges": [{ "startOffset": 56445, "endOffset": 57569, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stream", + "ranges": [{ "startOffset": 57574, "endOffset": 60521, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "streamSync", + "ranges": [{ "startOffset": 60526, "endOffset": 62491, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "chdir", + "ranges": [{ "startOffset": 62496, "endOffset": 62672, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 63006, "endOffset": 63016, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "PathScurryWin32", + "ranges": [{ "startOffset": 63022, "endOffset": 63305, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseRootPath", + "ranges": [{ "startOffset": 63343, "endOffset": 63647, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "newRoot", + "ranges": [{ "startOffset": 63685, "endOffset": 63822, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isAbsolute", + "ranges": [{ "startOffset": 63910, "endOffset": 64018, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 64393, "endOffset": 64402, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "PathScurryPosix", + "ranges": [{ "startOffset": 64408, "endOffset": 64595, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "parseRootPath", + "ranges": [{ "startOffset": 64633, "endOffset": 64680, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "newRoot", + "ranges": [{ "startOffset": 64718, "endOffset": 64855, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "isAbsolute", + "ranges": [{ "startOffset": 64943, "endOffset": 64998, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "PathScurryDarwin", + "ranges": [{ "startOffset": 65309, "endOffset": 65441, "count": 2 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "500", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/lru-cache/dist/commonjs/index.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 55020, "count": 1 }, + { "startOffset": 263, "endOffset": 269, "count": 0 }, + { "startOffset": 387, "endOffset": 391, "count": 0 }, + { "startOffset": 740, "endOffset": 2309, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "emitWarning", + "ranges": [{ "startOffset": 436, "endOffset": 615, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 796, "endOffset": 867, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "addEventListener", + "ranges": [{ "startOffset": 877, "endOffset": 948, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "AbortController", + "ranges": [{ "startOffset": 1014, "endOffset": 1069, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1078, "endOffset": 1095, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "abort", + "ranges": [{ "startOffset": 1105, "endOffset": 1485, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "warnACPolyfill", + "ranges": [{ "startOffset": 1603, "endOffset": 2306, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "shouldWarn", + "ranges": [{ "startOffset": 2350, "endOffset": 2377, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isPosInt", + "ranges": [ + { "startOffset": 2425, "endOffset": 2480, "count": 76 }, + { "startOffset": 2434, "endOffset": 2456, "count": 48 }, + { "startOffset": 2457, "endOffset": 2465, "count": 48 }, + { "startOffset": 2466, "endOffset": 2480, "count": 48 } + ], + "isBlockCoverage": true + }, + { + "functionName": "getUintArray", + "ranges": [ + { "startOffset": 2995, "endOffset": 3312, "count": 10 }, + { "startOffset": 3023, "endOffset": 3029, "count": 2 }, + { "startOffset": 3034, "endOffset": 3312, "count": 8 }, + { "startOffset": 3087, "endOffset": 3312, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "ZeroArray", + "ranges": [{ "startOffset": 3371, "endOffset": 3439, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3460, "endOffset": 3476, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3509, "endOffset": 3537, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "create", + "ranges": [ + { "startOffset": 3550, "endOffset": 3791, "count": 6 }, + { "startOffset": 3641, "endOffset": 3651, "count": 2 }, + { "startOffset": 3651, "endOffset": 3790, "count": 4 } + ], + "isBlockCoverage": true + }, + { + "functionName": "Stack", + "ranges": [ + { "startOffset": 3796, "endOffset": 4073, "count": 4 }, + { "startOffset": 3888, "endOffset": 3975, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "push", + "ranges": [{ "startOffset": 4078, "endOffset": 4131, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pop", + "ranges": [{ "startOffset": 4136, "endOffset": 4190, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4902, "endOffset": 23037, "count": 6 }], + "isBlockCoverage": true + }, + { + "functionName": "unsafeExposeInternals", + "ranges": [{ "startOffset": 6887, "endOffset": 7797, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get max", + "ranges": [{ "startOffset": 7905, "endOffset": 7948, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get maxSize", + "ranges": [{ "startOffset": 8025, "endOffset": 8076, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get calculatedSize", + "ranges": [{ "startOffset": 8162, "endOffset": 8227, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get size", + "ranges": [{ "startOffset": 8307, "endOffset": 8352, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get fetchMethod", + "ranges": [{ "startOffset": 8433, "endOffset": 8492, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get memoMethod", + "ranges": [{ "startOffset": 8497, "endOffset": 8554, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get dispose", + "ranges": [{ "startOffset": 8631, "endOffset": 8682, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get disposeAfter", + "ranges": [{ "startOffset": 8764, "endOffset": 8825, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "LRUCache", + "ranges": [ + { "startOffset": 8830, "endOffset": 13471, "count": 6 }, + { "startOffset": 9236, "endOffset": 9253, "count": 4 }, + { "startOffset": 9255, "endOffset": 9343, "count": 0 }, + { "startOffset": 9374, "endOffset": 9393, "count": 4 }, + { "startOffset": 9394, "endOffset": 9401, "count": 2 }, + { "startOffset": 9427, "endOffset": 9496, "count": 0 }, + { "startOffset": 9696, "endOffset": 10036, "count": 2 }, + { "startOffset": 9729, "endOffset": 9750, "count": 0 }, + { "startOffset": 9752, "endOffset": 9874, "count": 0 }, + { "startOffset": 9935, "endOffset": 10026, "count": 0 }, + { "startOffset": 10074, "endOffset": 10121, "count": 0 }, + { "startOffset": 10123, "endOffset": 10211, "count": 0 }, + { "startOffset": 10289, "endOffset": 10337, "count": 0 }, + { "startOffset": 10339, "endOffset": 10430, "count": 0 }, + { "startOffset": 10935, "endOffset": 10983, "count": 0 }, + { "startOffset": 11032, "endOffset": 11123, "count": 0 }, + { "startOffset": 11772, "endOffset": 12193, "count": 2 }, + { "startOffset": 11859, "endOffset": 11970, "count": 0 }, + { "startOffset": 12031, "endOffset": 12139, "count": 0 }, + { "startOffset": 12451, "endOffset": 12473, "count": 0 }, + { "startOffset": 12522, "endOffset": 12525, "count": 0 }, + { "startOffset": 12622, "endOffset": 12813, "count": 0 }, + { "startOffset": 12894, "endOffset": 12911, "count": 2 }, + { "startOffset": 12912, "endOffset": 12934, "count": 2 }, + { "startOffset": 12936, "endOffset": 13032, "count": 0 }, + { "startOffset": 13078, "endOffset": 13095, "count": 2 }, + { "startOffset": 13097, "endOffset": 13465, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "getRemainingTTL", + "ranges": [{ "startOffset": 13654, "endOffset": 13735, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#initializeTTLTracking", + "ranges": [{ "startOffset": 13740, "endOffset": 16416, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#updateItemAge", + "ranges": [{ "startOffset": 16494, "endOffset": 16503, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#statusTTL", + "ranges": [{ "startOffset": 16522, "endOffset": 16531, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#setItemTTL", + "ranges": [{ "startOffset": 16551, "endOffset": 16560, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#isStale", + "ranges": [{ "startOffset": 16602, "endOffset": 16613, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "#initializeSizeTracking", + "ranges": [{ "startOffset": 16619, "endOffset": 18485, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "#removeItemSize", + "ranges": [{ "startOffset": 16789, "endOffset": 16889, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#requireSize", + "ranges": [ + { "startOffset": 16919, "endOffset": 17958, "count": 26 }, + { "startOffset": 17121, "endOffset": 17162, "count": 0 }, + { "startOffset": 17300, "endOffset": 17406, "count": 0 }, + { "startOffset": 17498, "endOffset": 17626, "count": 0 }, + { "startOffset": 17644, "endOffset": 17909, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "#addItemSize", + "ranges": [ + { "startOffset": 17988, "endOffset": 18478, "count": 26 }, + { "startOffset": 18198, "endOffset": 18256, "count": 0 }, + { "startOffset": 18345, "endOffset": 18468, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "#removeItemSize", + "ranges": [{ "startOffset": 18508, "endOffset": 18517, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#addItemSize", + "ranges": [{ "startOffset": 18538, "endOffset": 18558, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#requireSize", + "ranges": [{ "startOffset": 18579, "endOffset": 18789, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#indexes", + "ranges": [{ "startOffset": 18795, "endOffset": 19305, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#rindexes", + "ranges": [{ "startOffset": 19310, "endOffset": 19821, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#isValidIndex", + "ranges": [{ "startOffset": 19826, "endOffset": 19956, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "entries", + "ranges": [{ "startOffset": 20098, "endOffset": 20405, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "rentries", + "ranges": [{ "startOffset": 20611, "endOffset": 20920, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "keys", + "ranges": [{ "startOffset": 21063, "endOffset": 21307, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "rkeys", + "ranges": [{ "startOffset": 21511, "endOffset": 21757, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "values", + "ranges": [{ "startOffset": 21902, "endOffset": 22163, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "rvalues", + "ranges": [{ "startOffset": 22371, "endOffset": 22634, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 22753, "endOffset": 22811, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "find", + "ranges": [{ "startOffset": 23211, "endOffset": 23645, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "forEach", + "ranges": [{ "startOffset": 24093, "endOffset": 24456, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "rforEach", + "ranges": [{ "startOffset": 24631, "endOffset": 24996, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "purgeStale", + "ranges": [{ "startOffset": 25112, "endOffset": 25399, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "info", + "ranges": [{ "startOffset": 26009, "endOffset": 26778, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "dump", + "ranges": [{ "startOffset": 27302, "endOffset": 28252, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "load", + "ranges": [{ "startOffset": 28628, "endOffset": 29273, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [ + { "startOffset": 30555, "endOffset": 34488, "count": 26 }, + { "startOffset": 30613, "endOffset": 30677, "count": 0 }, + { "startOffset": 31132, "endOffset": 31400, "count": 0 }, + { "startOffset": 31438, "endOffset": 31449, "count": 2 }, + { "startOffset": 31450, "endOffset": 31471, "count": 24 }, + { "startOffset": 31586, "endOffset": 31598, "count": 2 }, + { "startOffset": 31615, "endOffset": 31808, "count": 24 }, + { "startOffset": 31661, "endOffset": 31679, "count": 0 }, + { "startOffset": 31751, "endOffset": 31771, "count": 0 }, + { "startOffset": 32165, "endOffset": 32184, "count": 0 }, + { "startOffset": 32227, "endOffset": 33912, "count": 0 }, + { "startOffset": 33935, "endOffset": 33949, "count": 0 }, + { "startOffset": 33951, "endOffset": 34005, "count": 0 }, + { "startOffset": 34030, "endOffset": 34212, "count": 0 }, + { "startOffset": 34266, "endOffset": 34283, "count": 0 }, + { "startOffset": 34285, "endOffset": 34461, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "pop", + "ranges": [{ "startOffset": 34613, "endOffset": 35370, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#evict", + "ranges": [{ "startOffset": 35375, "endOffset": 36443, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "has", + "ranges": [{ "startOffset": 37186, "endOffset": 38123, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "peek", + "ranges": [{ "startOffset": 38352, "endOffset": 38797, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#backgroundFetch", + "ranges": [{ "startOffset": 38802, "endOffset": 43948, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#isBackgroundFetch", + "ranges": [ + { "startOffset": 43953, "endOffset": 44227, "count": 28 }, + { "startOffset": 44037, "endOffset": 44114, "count": 0 }, + { "startOffset": 44115, "endOffset": 44170, "count": 0 }, + { "startOffset": 44171, "endOffset": 44219, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "fetch", + "ranges": [{ "startOffset": 44232, "endOffset": 47562, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "forceFetch", + "ranges": [{ "startOffset": 47567, "endOffset": 47772, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "memo", + "ranges": [{ "startOffset": 47777, "endOffset": 48282, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [ + { "startOffset": 48468, "endOffset": 50615, "count": 28 }, + { "startOffset": 48724, "endOffset": 50539, "count": 2 }, + { "startOffset": 48875, "endOffset": 48906, "count": 0 }, + { "startOffset": 48945, "endOffset": 49763, "count": 0 }, + { "startOffset": 49831, "endOffset": 49850, "count": 0 }, + { "startOffset": 50266, "endOffset": 50340, "count": 0 }, + { "startOffset": 50418, "endOffset": 50485, "count": 0 }, + { "startOffset": 50539, "endOffset": 50609, "count": 26 }, + { "startOffset": 50565, "endOffset": 50609, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "#connect", + "ranges": [{ "startOffset": 50620, "endOffset": 50696, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#moveToTail", + "ranges": [ + { "startOffset": 50701, "endOffset": 51363, "count": 2 }, + { "startOffset": 51064, "endOffset": 51357, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "delete", + "ranges": [{ "startOffset": 51491, "endOffset": 51550, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#delete", + "ranges": [{ "startOffset": 51555, "endOffset": 53574, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "clear", + "ranges": [{ "startOffset": 53654, "endOffset": 53707, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#clear", + "ranges": [{ "startOffset": 53712, "endOffset": 54955, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "501", + "url": "node:fs/promises", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 73, "count": 1 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "502", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/minipass/dist/commonjs/index.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 34050, "count": 1 }, + { "startOffset": 374, "endOffset": 427, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 70, "endOffset": 151, "count": 1 }, + { "startOffset": 122, "endOffset": 127, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "isStream", + "ranges": [{ "startOffset": 745, "endOffset": 937, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isReadable", + "ranges": [{ "startOffset": 1140, "endOffset": 1396, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isWritable", + "ranges": [{ "startOffset": 1603, "endOffset": 1761, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "defer", + "ranges": [{ "startOffset": 3038, "endOffset": 3072, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "nodefer", + "ranges": [{ "startOffset": 3090, "endOffset": 3102, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isEndish", + "ranges": [{ "startOffset": 3121, "endOffset": 3182, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isArrayBufferLike", + "ranges": [{ "startOffset": 3210, "endOffset": 3389, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isArrayBufferView", + "ranges": [{ "startOffset": 3417, "endOffset": 3468, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3574, "endOffset": 3610, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "Pipe", + "ranges": [{ "startOffset": 3616, "endOffset": 3817, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "unpipe", + "ranges": [{ "startOffset": 3822, "endOffset": 3895, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "proxyErrors", + "ranges": [{ "startOffset": 3961, "endOffset": 3981, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "end", + "ranges": [{ "startOffset": 4011, "endOffset": 4103, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "unpipe", + "ranges": [{ "startOffset": 4262, "endOffset": 4362, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "PipeProxyErrors", + "ranges": [{ "startOffset": 4367, "endOffset": 4542, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isObjectModeOptions", + "ranges": [{ "startOffset": 4573, "endOffset": 4594, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isEncodingOptions", + "ranges": [{ "startOffset": 4622, "endOffset": 4685, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5096, "endOffset": 5647, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "Minipass", + "ranges": [{ "startOffset": 5926, "endOffset": 7440, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get bufferLength", + "ranges": [{ "startOffset": 7822, "endOffset": 7883, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get encoding", + "ranges": [{ "startOffset": 7960, "endOffset": 8013, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set encoding", + "ranges": [{ "startOffset": 8084, "endOffset": 8181, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setEncoding", + "ranges": [{ "startOffset": 8270, "endOffset": 8366, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get objectMode", + "ranges": [{ "startOffset": 8431, "endOffset": 8488, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set objectMode", + "ranges": [{ "startOffset": 8559, "endOffset": 8659, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8719, "endOffset": 8770, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9033, "endOffset": 9099, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9162, "endOffset": 9303, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get aborted", + "ranges": [{ "startOffset": 9368, "endOffset": 9419, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set aborted", + "ranges": [{ "startOffset": 9554, "endOffset": 9572, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "write", + "ranges": [{ "startOffset": 9577, "endOffset": 12967, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "read", + "ranges": [{ "startOffset": 13462, "endOffset": 14290, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 14295, "endOffset": 15006, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "end", + "ranges": [{ "startOffset": 15011, "endOffset": 15782, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 15839, "endOffset": 16269, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resume", + "ranges": [{ "startOffset": 16715, "endOffset": 16762, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pause", + "ranges": [{ "startOffset": 16807, "endOffset": 16915, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get destroyed", + "ranges": [{ "startOffset": 16990, "endOffset": 17045, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get flowing", + "ranges": [{ "startOffset": 17185, "endOffset": 17236, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get paused", + "ranges": [{ "startOffset": 17314, "endOffset": 17363, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 17368, "endOffset": 17557, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 17562, "endOffset": 17760, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 17765, "endOffset": 17986, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 17991, "endOffset": 18082, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pipe", + "ranges": [{ "startOffset": 18219, "endOffset": 19200, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "unpipe", + "ranges": [{ "startOffset": 19552, "endOffset": 19980, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addListener", + "ranges": [{ "startOffset": 20038, "endOffset": 20107, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "on", + "ranges": [{ "startOffset": 20858, "endOffset": 21663, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "removeListener", + "ranges": [{ "startOffset": 21722, "endOffset": 21795, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "off", + "ranges": [{ "startOffset": 22147, "endOffset": 22726, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "removeAllListeners", + "ranges": [{ "startOffset": 23068, "endOffset": 23376, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get emittedEnd", + "ranges": [{ "startOffset": 23445, "endOffset": 23503, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 23508, "endOffset": 23955, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "emit", + "ranges": [{ "startOffset": 25140, "endOffset": 26878, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 26883, "endOffset": 27156, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 27161, "endOffset": 27413, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 27418, "endOffset": 27919, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "collect", + "ranges": [{ "startOffset": 28039, "endOffset": 28523, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "concat", + "ranges": [{ "startOffset": 28701, "endOffset": 28976, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "promise", + "ranges": [{ "startOffset": 29062, "endOffset": 29317, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 29466, "endOffset": 31519, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 31707, "endOffset": 32666, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "destroy", + "ranges": [{ "startOffset": 33080, "endOffset": 33764, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get isStream", + "ranges": [{ "startOffset": 33930, "endOffset": 33985, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "503", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/glob/dist/commonjs/pattern.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 7300, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "isPatternList", + "ranges": [{ "startOffset": 241, "endOffset": 263, "count": 10 }], + "isBlockCoverage": true + }, + { + "functionName": "isGlobList", + "ranges": [{ "startOffset": 284, "endOffset": 306, "count": 10 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 415, "endOffset": 580, "count": 10 }], + "isBlockCoverage": true + }, + { + "functionName": "Pattern", + "ranges": [ + { "startOffset": 586, "endOffset": 2959, "count": 10 }, + { "startOffset": 681, "endOffset": 747, "count": 0 }, + { "startOffset": 783, "endOffset": 846, "count": 0 }, + { "startOffset": 899, "endOffset": 992, "count": 0 }, + { "startOffset": 1082, "endOffset": 1148, "count": 0 }, + { "startOffset": 1396, "endOffset": 2953, "count": 2 }, + { "startOffset": 1740, "endOffset": 2369, "count": 0 }, + { "startOffset": 2428, "endOffset": 2943, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "pattern", + "ranges": [{ "startOffset": 3034, "endOffset": 3098, "count": 22 }], + "isBlockCoverage": true + }, + { + "functionName": "isString", + "ranges": [{ "startOffset": 3164, "endOffset": 3249, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isGlobstar", + "ranges": [{ "startOffset": 3315, "endOffset": 3407, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isRegExp", + "ranges": [{ "startOffset": 3470, "endOffset": 3553, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "globString", + "ranges": [ + { "startOffset": 3638, "endOffset": 4000, "count": 4 }, + { "startOffset": 3755, "endOffset": 3925, "count": 2 }, + { "startOffset": 3795, "endOffset": 3874, "count": 0 }, + { "startOffset": 3946, "endOffset": 3991, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "hasMore", + "ranges": [{ "startOffset": 4080, "endOffset": 4143, "count": 14 }], + "isBlockCoverage": true + }, + { + "functionName": "rest", + "ranges": [ + { "startOffset": 4239, "endOffset": 4657, "count": 20 }, + { "startOffset": 4298, "endOffset": 4358, "count": 10 }, + { "startOffset": 4358, "endOffset": 4385, "count": 2 }, + { "startOffset": 4385, "endOffset": 4656, "count": 8 } + ], + "isBlockCoverage": true + }, + { + "functionName": "isUNC", + "ranges": [ + { "startOffset": 4741, "endOffset": 5208, "count": 4 }, + { "startOffset": 4830, "endOffset": 4855, "count": 2 }, + { "startOffset": 4868, "endOffset": 5201, "count": 2 }, + { "startOffset": 4928, "endOffset": 4968, "count": 0 }, + { "startOffset": 4969, "endOffset": 5004, "count": 0 }, + { "startOffset": 5005, "endOffset": 5040, "count": 0 }, + { "startOffset": 5041, "endOffset": 5089, "count": 0 }, + { "startOffset": 5090, "endOffset": 5120, "count": 0 }, + { "startOffset": 5121, "endOffset": 5169, "count": 0 }, + { "startOffset": 5170, "endOffset": 5200, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "isDrive", + "ranges": [ + { "startOffset": 5545, "endOffset": 5923, "count": 4 }, + { "startOffset": 5638, "endOffset": 5665, "count": 2 }, + { "startOffset": 5678, "endOffset": 5916, "count": 2 }, + { "startOffset": 5740, "endOffset": 5780, "count": 0 }, + { "startOffset": 5781, "endOffset": 5819, "count": 0 }, + { "startOffset": 5820, "endOffset": 5868, "count": 0 }, + { "startOffset": 5869, "endOffset": 5915, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "isAbsolute", + "ranges": [ + { "startOffset": 6156, "endOffset": 6449, "count": 13 }, + { "startOffset": 6255, "endOffset": 6285, "count": 11 }, + { "startOffset": 6298, "endOffset": 6442, "count": 2 }, + { "startOffset": 6350, "endOffset": 6366, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "root", + "ranges": [ + { "startOffset": 6524, "endOffset": 6693, "count": 2 }, + { "startOffset": 6632, "endOffset": 6652, "count": 0 }, + { "startOffset": 6654, "endOffset": 6669, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "checkFollowGlobstar", + "ranges": [{ "startOffset": 6811, "endOffset": 6948, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "markFollowGlobstar", + "ranges": [{ "startOffset": 7044, "endOffset": 7235, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "504", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/glob/dist/commonjs/walker.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 12869, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "makeIgnore", + "ranges": [{ "startOffset": 408, "endOffset": 577, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 670, "endOffset": 855, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "GlobUtil", + "ranges": [ + { "startOffset": 861, "endOffset": 1903, "count": 2 }, + { "startOffset": 1044, "endOffset": 1050, "count": 0 }, + { "startOffset": 1183, "endOffset": 1496, "count": 0 }, + { "startOffset": 1663, "endOffset": 1674, "count": 0 }, + { "startOffset": 1730, "endOffset": 1897, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1821, "endOffset": 1885, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#ignored", + "ranges": [ + { "startOffset": 1908, "endOffset": 2001, "count": 12 }, + { "startOffset": 1977, "endOffset": 1994, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "#childrenIgnored", + "ranges": [ + { "startOffset": 2006, "endOffset": 2092, "count": 2 }, + { "startOffset": 2060, "endOffset": 2085, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "pause", + "ranges": [{ "startOffset": 2127, "endOffset": 2170, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resume", + "ranges": [{ "startOffset": 2175, "endOffset": 2453, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "onResume", + "ranges": [{ "startOffset": 2458, "endOffset": 2713, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "matchCheck", + "ranges": [ + { "startOffset": 2831, "endOffset": 3605, "count": 4 }, + { "startOffset": 2878, "endOffset": 2896, "count": 0 }, + { "startOffset": 2910, "endOffset": 2927, "count": 0 }, + { "startOffset": 2977, "endOffset": 3127, "count": 0 }, + { "startOffset": 3213, "endOffset": 3231, "count": 0 }, + { "startOffset": 3265, "endOffset": 3283, "count": 0 }, + { "startOffset": 3284, "endOffset": 3306, "count": 0 }, + { "startOffset": 3308, "endOffset": 3553, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "matchCheckTest", + "ranges": [ + { "startOffset": 3610, "endOffset": 4069, "count": 4 }, + { "startOffset": 3698, "endOffset": 3727, "count": 0 }, + { "startOffset": 3752, "endOffset": 3769, "count": 0 }, + { "startOffset": 3804, "endOffset": 3823, "count": 0 }, + { "startOffset": 3858, "endOffset": 3894, "count": 0 }, + { "startOffset": 3895, "endOffset": 3933, "count": 0 }, + { "startOffset": 3934, "endOffset": 3987, "count": 0 }, + { "startOffset": 4051, "endOffset": 4062, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "matchCheckSync", + "ranges": [{ "startOffset": 4074, "endOffset": 4770, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "matchFinish", + "ranges": [ + { "startOffset": 4775, "endOffset": 5843, "count": 4 }, + { "startOffset": 4844, "endOffset": 4851, "count": 0 }, + { "startOffset": 4960, "endOffset": 4980, "count": 0 }, + { "startOffset": 4982, "endOffset": 5079, "count": 0 }, + { "startOffset": 5133, "endOffset": 5143, "count": 0 }, + { "startOffset": 5228, "endOffset": 5246, "count": 0 }, + { "startOffset": 5247, "endOffset": 5258, "count": 0 }, + { "startOffset": 5339, "endOffset": 5381, "count": 0 }, + { "startOffset": 5446, "endOffset": 5465, "count": 0 }, + { "startOffset": 5531, "endOffset": 5837, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "match", + "ranges": [{ "startOffset": 5848, "endOffset": 5996, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "matchSync", + "ranges": [{ "startOffset": 6001, "endOffset": 6145, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "walkCB", + "ranges": [ + { "startOffset": 6150, "endOffset": 6382, "count": 2 }, + { "startOffset": 6234, "endOffset": 6243, "count": 0 }, + { "startOffset": 6257, "endOffset": 6262, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "walkCB2", + "ranges": [ + { "startOffset": 6387, "endOffset": 7801, "count": 2 }, + { "startOffset": 6485, "endOffset": 6497, "count": 0 }, + { "startOffset": 6521, "endOffset": 6530, "count": 0 }, + { "startOffset": 6544, "endOffset": 6549, "count": 0 }, + { "startOffset": 6575, "endOffset": 6686, "count": 0 }, + { "startOffset": 7141, "endOffset": 7296, "count": 0 }, + { "startOffset": 7394, "endOffset": 7423, "count": 0 }, + { "startOffset": 7425, "endOffset": 7466, "count": 0 }, + { "startOffset": 7593, "endOffset": 7642, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6603, "endOffset": 6654, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "next", + "ranges": [ + { "startOffset": 6997, "endOffset": 7067, "count": 4 }, + { "startOffset": 7052, "endOffset": 7057, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 7272, "endOffset": 7284, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 7690, "endOffset": 7747, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "walkCB3", + "ranges": [ + { "startOffset": 7806, "endOffset": 8448, "count": 2 }, + { "startOffset": 8098, "endOffset": 8253, "count": 4 }, + { "startOffset": 8150, "endOffset": 8159, "count": 0 }, + { "startOffset": 8325, "endOffset": 8426, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "next", + "ranges": [ + { "startOffset": 7954, "endOffset": 8024, "count": 6 }, + { "startOffset": 8009, "endOffset": 8014, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8229, "endOffset": 8241, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "walkCBSync", + "ranges": [{ "startOffset": 8453, "endOffset": 8693, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "walkCB2Sync", + "ranges": [{ "startOffset": 8698, "endOffset": 9908, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "walkCB3Sync", + "ranges": [{ "startOffset": 9913, "endOffset": 10527, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 10599, "endOffset": 10618, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "GlobWalker", + "ranges": [{ "startOffset": 10624, "endOffset": 10702, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "matchEmit", + "ranges": [{ "startOffset": 10707, "endOffset": 10756, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "walk", + "ranges": [ + { "startOffset": 10761, "endOffset": 11281, "count": 2 }, + { "startOffset": 10799, "endOffset": 10808, "count": 0 }, + { "startOffset": 10822, "endOffset": 10847, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 10958, "endOffset": 11244, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 11024, "endOffset": 11232, "count": 2 }, + { "startOffset": 11063, "endOffset": 11072, "count": 0 }, + { "startOffset": 11074, "endOffset": 11138, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "walkSync", + "ranges": [{ "startOffset": 11286, "endOffset": 11706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 11782, "endOffset": 11789, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "GlobStream", + "ranges": [{ "startOffset": 11795, "endOffset": 12108, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "matchEmit", + "ranges": [{ "startOffset": 12113, "endOffset": 12225, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stream", + "ranges": [{ "startOffset": 12230, "endOffset": 12586, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "streamSync", + "ranges": [{ "startOffset": 12591, "endOffset": 12799, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "505", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/glob/dist/commonjs/ignore.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 4267, "count": 1 }, + { "startOffset": 533, "endOffset": 542, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 613, "endOffset": 705, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "Ignore", + "ranges": [{ "startOffset": 711, "endOffset": 1287, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "add", + "ranges": [{ "startOffset": 1292, "endOffset": 3319, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ignored", + "ranges": [{ "startOffset": 3324, "endOffset": 3807, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "childrenIgnored", + "ranges": [{ "startOffset": 3812, "endOffset": 4205, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "506", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/glob/dist/commonjs/processor.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 10760, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 384, "endOffset": 389, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "HasWalkedCache", + "ranges": [{ "startOffset": 395, "endOffset": 461, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "copy", + "ranges": [{ "startOffset": 466, "endOffset": 536, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "hasWalked", + "ranges": [ + { "startOffset": 541, "endOffset": 652, "count": 2 }, + { "startOffset": 618, "endOffset": 623, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "storeWalked", + "ranges": [ + { "startOffset": 657, "endOffset": 936, "count": 4 }, + { "startOffset": 813, "endOffset": 846, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1219, "endOffset": 1236, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "add", + "ranges": [ + { "startOffset": 1242, "endOffset": 1455, "count": 4 }, + { "startOffset": 1301, "endOffset": 1304, "count": 0 }, + { "startOffset": 1319, "endOffset": 1322, "count": 0 }, + { "startOffset": 1434, "endOffset": 1447, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "entries", + "ranges": [{ "startOffset": 1490, "endOffset": 1645, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1547, "endOffset": 1637, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1805, "endOffset": 1822, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "add", + "ranges": [ + { "startOffset": 1828, "endOffset": 2183, "count": 2 }, + { "startOffset": 1885, "endOffset": 1916, "count": 0 }, + { "startOffset": 1980, "endOffset": 2117, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2009, "endOffset": 2053, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [ + { "startOffset": 2188, "endOffset": 2427, "count": 2 }, + { "startOffset": 2296, "endOffset": 2371, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "entries", + "ranges": [{ "startOffset": 2432, "endOffset": 2510, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2475, "endOffset": 2502, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "keys", + "ranges": [{ "startOffset": 2515, "endOffset": 2596, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2569, "endOffset": 2588, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2819, "endOffset": 2942, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "Processor", + "ranges": [ + { "startOffset": 2948, "endOffset": 3188, "count": 4 }, + { "startOffset": 3135, "endOffset": 3158, "count": 2 }, + { "startOffset": 3159, "endOffset": 3181, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "processPatterns", + "ranges": [ + { "startOffset": 3193, "endOffset": 7119, "count": 2 }, + { "startOffset": 3644, "endOffset": 3675, "count": 0 }, + { "startOffset": 3746, "endOffset": 4155, "count": 0 }, + { "startOffset": 4202, "endOffset": 4211, "count": 0 }, + { "startOffset": 4349, "endOffset": 4391, "count": 6 }, + { "startOffset": 4393, "endOffset": 4535, "count": 6 }, + { "startOffset": 4716, "endOffset": 4725, "count": 0 }, + { "startOffset": 5021, "endOffset": 5306, "count": 0 }, + { "startOffset": 5747, "endOffset": 5781, "count": 0 }, + { "startOffset": 5782, "endOffset": 5834, "count": 0 }, + { "startOffset": 6051, "endOffset": 6060, "count": 0 }, + { "startOffset": 6063, "endOffset": 6294, "count": 0 }, + { "startOffset": 6355, "endOffset": 6945, "count": 0 }, + { "startOffset": 6977, "endOffset": 7082, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3306, "endOffset": 3322, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "subwalkTargets", + "ranges": [{ "startOffset": 7124, "endOffset": 7185, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "child", + "ranges": [{ "startOffset": 7190, "endOffset": 7267, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "filterEntries", + "ranges": [ + { "startOffset": 7463, "endOffset": 8300, "count": 2 }, + { "startOffset": 7685, "endOffset": 8270, "count": 5 }, + { "startOffset": 8015, "endOffset": 8246, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "testGlobstar", + "ranges": [ + { "startOffset": 8305, "endOffset": 10179, "count": 5 }, + { "startOffset": 8397, "endOffset": 9422, "count": 4 }, + { "startOffset": 8435, "endOffset": 8504, "count": 0 }, + { "startOffset": 8537, "endOffset": 9412, "count": 0 }, + { "startOffset": 9605, "endOffset": 9690, "count": 0 }, + { "startOffset": 9691, "endOffset": 9719, "count": 0 }, + { "startOffset": 9720, "endOffset": 9749, "count": 0 }, + { "startOffset": 9751, "endOffset": 9829, "count": 0 }, + { "startOffset": 9864, "endOffset": 10041, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "testRegExp", + "ranges": [ + { "startOffset": 10184, "endOffset": 10419, "count": 5 }, + { "startOffset": 10260, "endOffset": 10267, "count": 1 }, + { "startOffset": 10267, "endOffset": 10348, "count": 4 }, + { "startOffset": 10348, "endOffset": 10413, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "testString", + "ranges": [{ "startOffset": 10424, "endOffset": 10689, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "507", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/glob/dist/commonjs/has-magic.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1058, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "hasMagic", + "ranges": [{ "startOffset": 748, "endOffset": 990, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "508", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/paths/types.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 110, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "509", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/api/gherkin.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1643, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "getPicklesAndErrors", + "ranges": [{ "startOffset": 252, "endOffset": 1240, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 567, "endOffset": 755, "count": 5 }, + { "startOffset": 655, "endOffset": 717, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 818, "endOffset": 1168, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 930, "endOffset": 961, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "gherkinFromPaths", + "ranges": [{ "startOffset": 1241, "endOffset": 1607, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1326, "endOffset": 1603, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "510", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/gherkin-streams/dist/src/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 404, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 70, "endOffset": 151, "count": 1 }, + { "startOffset": 128, "endOffset": 148, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "511", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/gherkin-streams/dist/src/GherkinStreams.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2759, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 70, "endOffset": 151, "count": 4 }, + { "startOffset": 122, "endOffset": 127, "count": 3 }, + { "startOffset": 128, "endOffset": 148, "count": 1 } + ], + "isBlockCoverage": true + }, + { + "functionName": "fromPaths", + "ranges": [{ "startOffset": 538, "endOffset": 1844, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "pipeSequentially", + "ranges": [ + { "startOffset": 811, "endOffset": 1784, "count": 2 }, + { "startOffset": 913, "endOffset": 1778, "count": 1 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1041, "endOffset": 1098, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1377, "endOffset": 1426, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1540, "endOffset": 1589, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1663, "endOffset": 1712, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fromSources", + "ranges": [{ "startOffset": 1845, "endOffset": 2661, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "512", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/gherkin-streams/dist/src/makeGherkinOptions.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 495, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "gherkinOptions", + "ranges": [{ "startOffset": 308, "endOffset": 414, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "513", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/gherkin-streams/dist/src/ParserMessageStream.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 895, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "ParserMessageStream", + "ranges": [{ "startOffset": 313, "endOffset": 444, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "_transform", + "ranges": [ + { "startOffset": 449, "endOffset": 806, "count": 1 }, + { "startOffset": 719, "endOffset": 770, "count": 5 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "514", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/gherkin-streams/dist/src/SourceMessageStream.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1021, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "SourceMessageStream", + "ranges": [{ "startOffset": 326, "endOffset": 535, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "_transform", + "ranges": [{ "startOffset": 540, "endOffset": 664, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "_flush", + "ranges": [ + { "startOffset": 669, "endOffset": 932, "count": 1 }, + { "startOffset": 868, "endOffset": 878, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "515", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/gherkin-utils/dist/src/index.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 2497, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 88, "endOffset": 405, "count": 1 }, + { "startOffset": 232, "endOffset": 247, "count": 0 }, + { "startOffset": 264, "endOffset": 284, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 327, "endOffset": 354, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__exportStar", + "ranges": [ + { "startOffset": 759, "endOffset": 910, "count": 2 }, + { "startOffset": 803, "endOffset": 908, "count": 1 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 963, "endOffset": 1571, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "ownKeys", + "ranges": [{ "startOffset": 995, "endOffset": 1259, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 1272, "endOffset": 1568, "count": 1 }, + { "startOffset": 1335, "endOffset": 1567, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 1632, "endOffset": 1713, "count": 2 }, + { "startOffset": 1690, "endOffset": 1710, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2219, "endOffset": 2283, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "516", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/gherkin-utils/dist/src/GherkinDocumentHandlers.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 128, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "517", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/gherkin-utils/dist/src/walkGherkinDocument.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 5310, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "walkGherkinDocument", + "ranges": [{ "startOffset": 435, "endOffset": 4354, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "makeDefaultHandlers", + "ranges": [{ "startOffset": 4355, "endOffset": 5262, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "518", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/gherkin-utils/dist/src/GherkinDocumentWalker.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 8981, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "acceptScenario", + "ranges": [{ "startOffset": 157, "endOffset": 167, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "acceptStep", + "ranges": [{ "startOffset": 185, "endOffset": 195, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "acceptBackground", + "ranges": [{ "startOffset": 219, "endOffset": 229, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "acceptRule", + "ranges": [{ "startOffset": 247, "endOffset": 257, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "acceptFeature", + "ranges": [{ "startOffset": 278, "endOffset": 288, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "acceptScenario", + "ranges": [{ "startOffset": 342, "endOffset": 353, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "acceptStep", + "ranges": [{ "startOffset": 371, "endOffset": 382, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "acceptBackground", + "ranges": [{ "startOffset": 406, "endOffset": 417, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "acceptRule", + "ranges": [{ "startOffset": 435, "endOffset": 446, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "acceptFeature", + "ranges": [{ "startOffset": 467, "endOffset": 478, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "handleStep", + "ranges": [{ "startOffset": 525, "endOffset": 535, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "handleScenario", + "ranges": [{ "startOffset": 557, "endOffset": 567, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "handleBackground", + "ranges": [{ "startOffset": 591, "endOffset": 601, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "handleRule", + "ranges": [{ "startOffset": 619, "endOffset": 629, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "handleFeature", + "ranges": [{ "startOffset": 650, "endOffset": 660, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "GherkinDocumentWalker", + "ranges": [{ "startOffset": 699, "endOffset": 904, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "walkGherkinDocument", + "ranges": [{ "startOffset": 909, "endOffset": 1289, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "walkFeature", + "ranges": [{ "startOffset": 1294, "endOffset": 2369, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "copyFeature", + "ranges": [{ "startOffset": 2374, "endOffset": 2752, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "copyTags", + "ranges": [{ "startOffset": 2757, "endOffset": 2916, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "filterFeatureChildren", + "ranges": [{ "startOffset": 2921, "endOffset": 3956, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "walkFeatureChildren", + "ranges": [{ "startOffset": 3961, "endOffset": 4813, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "walkRule", + "ranges": [{ "startOffset": 4818, "endOffset": 5417, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "copyRule", + "ranges": [{ "startOffset": 5422, "endOffset": 5767, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "filterRuleChildren", + "ranges": [{ "startOffset": 5772, "endOffset": 6469, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "walkRuleChildren", + "ranges": [{ "startOffset": 6474, "endOffset": 6966, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "walkBackground", + "ranges": [{ "startOffset": 6971, "endOffset": 7274, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "copyBackground", + "ranges": [{ "startOffset": 7279, "endOffset": 7612, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "walkScenario", + "ranges": [{ "startOffset": 7617, "endOffset": 7902, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "copyScenario", + "ranges": [{ "startOffset": 7907, "endOffset": 8313, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "walkAllSteps", + "ranges": [{ "startOffset": 8318, "endOffset": 8402, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "walkStep", + "ranges": [{ "startOffset": 8407, "endOffset": 8586, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "copyStep", + "ranges": [{ "startOffset": 8591, "endOffset": 8888, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "519", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/gherkin-utils/dist/src/pretty.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 8012, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "pretty", + "ranges": [{ "startOffset": 200, "endOffset": 2919, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "prettyLanguageHeader", + "ranges": [{ "startOffset": 2920, "endOffset": 3028, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "semiColumnName", + "ranges": [{ "startOffset": 3029, "endOffset": 3127, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "prettyKeywordContainer", + "ranges": [{ "startOffset": 3128, "endOffset": 3771, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "prettyDescription", + "ranges": [{ "startOffset": 3772, "endOffset": 3995, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "prettyTags", + "ranges": [{ "startOffset": 3996, "endOffset": 4324, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "keywordPrefix", + "ranges": [{ "startOffset": 4325, "endOffset": 4505, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stepPrefix", + "ranges": [{ "startOffset": 4506, "endOffset": 4669, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "spaces", + "ranges": [{ "startOffset": 4670, "endOffset": 4740, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "makeDocStringDelimiter", + "ranges": [{ "startOffset": 4741, "endOffset": 5670, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "prettyTableRows", + "ranges": [{ "startOffset": 5671, "endOffset": 6657, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "prettyTableRow", + "ranges": [{ "startOffset": 6658, "endOffset": 7179, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getStringWidth", + "ranges": [{ "startOffset": 7180, "endOffset": 7344, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isCJKorFullWidth", + "ranges": [{ "startOffset": 7345, "endOffset": 7486, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "escapeCell", + "ranges": [{ "startOffset": 7487, "endOffset": 7917, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isNumeric", + "ranges": [{ "startOffset": 7918, "endOffset": 7977, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "520", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/gherkin-utils/dist/src/Query.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 6536, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Query", + "ranges": [{ "startOffset": 146, "endOffset": 810, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "getLocation", + "ranges": [{ "startOffset": 914, "endOffset": 1000, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "getSources", + "ranges": [{ "startOffset": 1005, "endOffset": 1054, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getGherkinDocuments", + "ranges": [{ "startOffset": 1059, "endOffset": 1126, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "getPickles", + "ranges": [{ "startOffset": 1131, "endOffset": 1180, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "getSource", + "ranges": [{ "startOffset": 1185, "endOffset": 1249, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getFeature", + "ranges": [{ "startOffset": 1254, "endOffset": 1344, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getBackground", + "ranges": [{ "startOffset": 1349, "endOffset": 1445, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getRule", + "ranges": [{ "startOffset": 1450, "endOffset": 1534, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getScenario", + "ranges": [{ "startOffset": 1539, "endOffset": 1631, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getExamples", + "ranges": [{ "startOffset": 1636, "endOffset": 1728, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getStep", + "ranges": [{ "startOffset": 1733, "endOffset": 1817, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getPickleIds", + "ranges": [{ "startOffset": 1992, "endOffset": 2360, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getPickleStepIds", + "ranges": [{ "startOffset": 2365, "endOffset": 2467, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "update", + "ranges": [ + { "startOffset": 2472, "endOffset": 3079, "count": 5 }, + { "startOffset": 2518, "endOffset": 2646, "count": 1 }, + { "startOffset": 2684, "endOffset": 2930, "count": 1 }, + { "startOffset": 2959, "endOffset": 3052, "count": 3 } + ], + "isBlockCoverage": true + }, + { + "functionName": "updateGherkinFeature", + "ranges": [ + { "startOffset": 3084, "endOffset": 3697, "count": 1 }, + { "startOffset": 3305, "endOffset": 3691, "count": 3 }, + { "startOffset": 3348, "endOffset": 3439, "count": 0 }, + { "startOffset": 3602, "endOffset": 3681, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "updateGherkinBackground", + "ranges": [{ "startOffset": 3702, "endOffset": 3917, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "updateGherkinRule", + "ranges": [{ "startOffset": 3922, "endOffset": 4316, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "updateGherkinScenario", + "ranges": [ + { "startOffset": 4321, "endOffset": 4713, "count": 3 }, + { "startOffset": 4532, "endOffset": 4590, "count": 9 }, + { "startOffset": 4641, "endOffset": 4707, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "updateGherkinExamples", + "ranges": [{ "startOffset": 4718, "endOffset": 4964, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "updateGherkinStep", + "ranges": [{ "startOffset": 4969, "endOffset": 5174, "count": 9 }], + "isBlockCoverage": true + }, + { + "functionName": "updatePickle", + "ranges": [{ "startOffset": 5179, "endOffset": 5754, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "updatePickleSteps", + "ranges": [ + { "startOffset": 5759, "endOffset": 6206, "count": 3 }, + { "startOffset": 5875, "endOffset": 6200, "count": 9 } + ], + "isBlockCoverage": true + }, + { + "functionName": "setAstNode", + "ranges": [{ "startOffset": 6234, "endOffset": 6390, "count": 13 }], + "isBlockCoverage": true + }, + { + "functionName": "getAstNode", + "ranges": [{ "startOffset": 6391, "endOffset": 6502, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "521", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@teppeis/multimaps/dist/cjs/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 501, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 260, "endOffset": 316, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 444, "endOffset": 496, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "522", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@teppeis/multimaps/dist/cjs/arraymultimap.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 971, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "ArrayMultimap", + "ranges": [{ "startOffset": 214, "endOffset": 289, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 294, "endOffset": 360, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 428, "endOffset": 463, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "clone", + "ranges": [{ "startOffset": 468, "endOffset": 528, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "add", + "ranges": [{ "startOffset": 533, "endOffset": 616, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "size", + "ranges": [{ "startOffset": 621, "endOffset": 679, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "delete", + "ranges": [{ "startOffset": 684, "endOffset": 890, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "has", + "ranges": [{ "startOffset": 895, "endOffset": 968, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "523", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@teppeis/multimaps/dist/cjs/multimap.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3267, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Multimap", + "ranges": [ + { "startOffset": 125, "endOffset": 410, "count": 1 }, + { "startOffset": 269, "endOffset": 383, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get size", + "ranges": [{ "startOffset": 415, "endOffset": 460, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 465, "endOffset": 671, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "put", + "ranges": [ + { "startOffset": 676, "endOffset": 980, "count": 3 }, + { "startOffset": 859, "endOffset": 896, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "putAll", + "ranges": [{ "startOffset": 985, "endOffset": 1547, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "has", + "ranges": [{ "startOffset": 1552, "endOffset": 1602, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hasEntry", + "ranges": [{ "startOffset": 1607, "endOffset": 1691, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "delete", + "ranges": [{ "startOffset": 1696, "endOffset": 1809, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "deleteEntry", + "ranges": [{ "startOffset": 1814, "endOffset": 2052, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "clear", + "ranges": [{ "startOffset": 2057, "endOffset": 2122, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "keys", + "ranges": [{ "startOffset": 2127, "endOffset": 2173, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "entries", + "ranges": [{ "startOffset": 2178, "endOffset": 2529, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "values", + "ranges": [{ "startOffset": 2534, "endOffset": 2801, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "forEach", + "ranges": [{ "startOffset": 2806, "endOffset": 2988, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2993, "endOffset": 3051, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "asMap", + "ranges": [{ "startOffset": 3056, "endOffset": 3235, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "524", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@teppeis/multimaps/dist/cjs/setmultimap.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 883, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "SetMultimap", + "ranges": [{ "startOffset": 210, "endOffset": 283, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 288, "endOffset": 352, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 414, "endOffset": 456, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "clone", + "ranges": [{ "startOffset": 461, "endOffset": 522, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "add", + "ranges": [{ "startOffset": 527, "endOffset": 667, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "size", + "ranges": [{ "startOffset": 672, "endOffset": 728, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "delete", + "ranges": [{ "startOffset": 733, "endOffset": 807, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "has", + "ranges": [{ "startOffset": 812, "endOffset": 880, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "525", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/api/plugins.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1464, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 70, "endOffset": 151, "count": 2 }, + { "startOffset": 128, "endOffset": 148, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "initializeForLoadSources", + "ranges": [{ "startOffset": 552, "endOffset": 851, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "initializeForLoadSupport", + "ranges": [{ "startOffset": 852, "endOffset": 1010, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "initializeForRunCucumber", + "ranges": [{ "startOffset": 1011, "endOffset": 1428, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "526", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/plugin/index.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 885, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 88, "endOffset": 405, "count": 1 }, + { "startOffset": 232, "endOffset": 247, "count": 0 }, + { "startOffset": 264, "endOffset": 284, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 327, "endOffset": 354, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__exportStar", + "ranges": [ + { "startOffset": 541, "endOffset": 692, "count": 2 }, + { "startOffset": 585, "endOffset": 690, "count": 1 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "527", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/plugin/types.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 110, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "528", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/plugin/plugin_manager.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2142, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 135, "endOffset": 300, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "PluginManager", + "ranges": [{ "startOffset": 306, "endOffset": 378, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "register", + "ranges": [{ "startOffset": 383, "endOffset": 466, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "initFormatter", + "ranges": [{ "startOffset": 471, "endOffset": 967, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "initCoordinator", + "ranges": [ + { "startOffset": 972, "endOffset": 1511, "count": 2 }, + { "startOffset": 1449, "endOffset": 1505, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "emit", + "ranges": [{ "startOffset": 1516, "endOffset": 1609, "count": 65 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1574, "endOffset": 1601, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "transform", + "ranges": [{ "startOffset": 1614, "endOffset": 1938, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "cleanup", + "ranges": [ + { "startOffset": 1943, "endOffset": 2058, "count": 1 }, + { "startOffset": 2010, "endOffset": 2052, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "529", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/publish/index.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 937, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__exportStar", + "ranges": [ + { "startOffset": 541, "endOffset": 692, "count": 1 }, + { "startOffset": 585, "endOffset": 690, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "530", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/publish/publish_plugin.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3763, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 70, "endOffset": 151, "count": 2 }, + { "startOffset": 122, "endOffset": 127, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "coordinator", + "ranges": [ + { "startOffset": 726, "endOffset": 3201, "count": 1 }, + { "startOffset": 839, "endOffset": 3200, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1203, "endOffset": 1610, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2046, "endOffset": 2107, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2125, "endOffset": 3194, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "sanitisePublishOutput", + "ranges": [{ "startOffset": 3500, "endOffset": 3720, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "531", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/has-ansi/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 148, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "module.exports", + "ranges": [{ "startOffset": 118, "endOffset": 146, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "532", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/has-ansi/node_modules/ansi-regex/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 400, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "module.exports", + "ranges": [ + { "startOffset": 32, "endOffset": 398, "count": 1 }, + { "startOffset": 389, "endOffset": 394, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "533", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/publish/types.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 110, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "534", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/filter/index.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 933, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__exportStar", + "ranges": [ + { "startOffset": 541, "endOffset": 692, "count": 1 }, + { "startOffset": 585, "endOffset": 690, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "535", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/filter/filter_plugin.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1333, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 70, "endOffset": 151, "count": 1 }, + { "startOffset": 128, "endOffset": 148, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "coordinator", + "ranges": [{ "startOffset": 424, "endOffset": 1287, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 542, "endOffset": 629, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 661, "endOffset": 1036, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 984, "endOffset": 1024, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1067, "endOffset": 1279, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "536", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/pickle_filter.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 4274, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 70, "endOffset": 151, "count": 2 }, + { "startOffset": 122, "endOffset": 127, "count": 1 }, + { "startOffset": 128, "endOffset": 148, "count": 1 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 667, "endOffset": 708, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "PickleFilter", + "ranges": [{ "startOffset": 714, "endOffset": 962, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "matches", + "ranges": [{ "startOffset": 967, "endOffset": 1207, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1271, "endOffset": 1295, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "PickleLineFilter", + "ranges": [{ "startOffset": 1301, "endOffset": 1474, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "getFeatureUriToLinesMapping", + "ranges": [{ "startOffset": 1479, "endOffset": 2596, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 1590, "endOffset": 2564, "count": 1 }, + { "startOffset": 1831, "endOffset": 1916, "count": 0 }, + { "startOffset": 2143, "endOffset": 2540, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2428, "endOffset": 2520, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "matchesAnyLine", + "ranges": [ + { "startOffset": 2601, "endOffset": 3257, "count": 3 }, + { "startOffset": 2837, "endOffset": 3230, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3027, "endOffset": 3082, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3144, "endOffset": 3169, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3334, "endOffset": 3339, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "PickleNameFilter", + "ranges": [{ "startOffset": 3345, "endOffset": 3404, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "matchesAnyName", + "ranges": [ + { "startOffset": 3409, "endOffset": 3580, "count": 3 }, + { "startOffset": 3507, "endOffset": 3579, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3539, "endOffset": 3572, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3656, "endOffset": 3673, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "PickleTagFilter", + "ranges": [ + { "startOffset": 3733, "endOffset": 3950, "count": 3 }, + { "startOffset": 3824, "endOffset": 3847, "count": 1 }, + { "startOffset": 3849, "endOffset": 3944, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "matchesAllTagExpressions", + "ranges": [ + { "startOffset": 3955, "endOffset": 4187, "count": 9 }, + { "startOffset": 4101, "endOffset": 4186, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4165, "endOffset": 4178, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "537", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/tag-expressions/dist/cjs/src/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 7065, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "parse", + "ranges": [{ "startOffset": 562, "endOffset": 2917, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "tokenize", + "ranges": [{ "startOffset": 2918, "endOffset": 3959, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isUnary", + "ranges": [{ "startOffset": 3960, "endOffset": 4015, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isBinary", + "ranges": [{ "startOffset": 4016, "endOffset": 4090, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isOp", + "ranges": [{ "startOffset": 4091, "endOffset": 4154, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "peek", + "ranges": [{ "startOffset": 4155, "endOffset": 4215, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pop", + "ranges": [{ "startOffset": 4216, "endOffset": 4339, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pushExpr", + "ranges": [{ "startOffset": 4340, "endOffset": 4766, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4796, "endOffset": 5233, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Literal", + "ranges": [{ "startOffset": 4814, "endOffset": 4873, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Literal.evaluate", + "ranges": [{ "startOffset": 4907, "endOffset": 4988, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Literal.toString", + "ranges": [{ "startOffset": 5023, "endOffset": 5210, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5262, "endOffset": 5694, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Or", + "ranges": [{ "startOffset": 5280, "endOffset": 5390, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Or.evaluate", + "ranges": [{ "startOffset": 5419, "endOffset": 5535, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Or.toString", + "ranges": [{ "startOffset": 5565, "endOffset": 5676, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5724, "endOffset": 6161, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "And", + "ranges": [{ "startOffset": 5742, "endOffset": 5853, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "And.evaluate", + "ranges": [{ "startOffset": 5883, "endOffset": 5999, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "And.toString", + "ranges": [{ "startOffset": 6030, "endOffset": 6142, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6191, "endOffset": 6715, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Not", + "ranges": [{ "startOffset": 6209, "endOffset": 6261, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Not.evaluate", + "ranges": [{ "startOffset": 6291, "endOffset": 6366, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Not.toString", + "ranges": [{ "startOffset": 6397, "endOffset": 6696, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6746, "endOffset": 7027, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "True", + "ranges": [{ "startOffset": 6764, "endOffset": 6787, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "True.evaluate", + "ranges": [{ "startOffset": 6884, "endOffset": 6933, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "True.toString", + "ranges": [{ "startOffset": 6965, "endOffset": 7007, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "538", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/cli/helpers.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 7421, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 760, "endOffset": 1368, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "ownKeys", + "ranges": [{ "startOffset": 792, "endOffset": 1056, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 1069, "endOffset": 1365, "count": 1 }, + { "startOffset": 1132, "endOffset": 1364, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 1429, "endOffset": 1510, "count": 3 }, + { "startOffset": 1481, "endOffset": 1486, "count": 1 }, + { "startOffset": 1487, "endOffset": 1507, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "orderPickles", + "ranges": [ + { "startOffset": 2130, "endOffset": 2815, "count": 1 }, + { "startOffset": 2295, "endOffset": 2701, "count": 0 }, + { "startOffset": 2710, "endOffset": 2807, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "splitOrder", + "ranges": [ + { "startOffset": 2816, "endOffset": 2941, "count": 1 }, + { "startOffset": 2910, "endOffset": 2940, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "emitMetaMessage", + "ranges": [{ "startOffset": 2942, "endOffset": 3584, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "makeSourceReference", + "ranges": [{ "startOffset": 3613, "endOffset": 3701, "count": 17 }], + "isBlockCoverage": true + }, + { + "functionName": "emitParameterTypes", + "ranges": [ + { "startOffset": 3703, "endOffset": 4527, "count": 1 }, + { "startOffset": 3876, "endOffset": 4525, "count": 11 }, + { "startOffset": 3946, "endOffset": 4525, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "emitUndefinedParameterTypes", + "ranges": [ + { "startOffset": 4528, "endOffset": 4826, "count": 1 }, + { "startOffset": 4690, "endOffset": 4824, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "emitStepDefinitions", + "ranges": [{ "startOffset": 4827, "endOffset": 5559, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 4943, "endOffset": 5555, "count": 13 }, + { "startOffset": 5325, "endOffset": 5380, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "emitTestCaseHooks", + "ranges": [{ "startOffset": 5560, "endOffset": 6315, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5917, "endOffset": 6311, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5960, "endOffset": 6303, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "emitTestRunHooks", + "ranges": [{ "startOffset": 6316, "endOffset": 6974, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6668, "endOffset": 6970, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6711, "endOffset": 6962, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "emitSupportCodeMessages", + "ranges": [{ "startOffset": 6975, "endOffset": 7385, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "539", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/knuth-shuffle-seeded/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2142, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "shuffle", + "ranges": [{ "startOffset": 1491, "endOffset": 2141, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "540", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/seed-random/index.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5573, "count": 1 }, + { "startOffset": 286, "endOffset": 294, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "module.exports", + "ranges": [{ "startOffset": 648, "endOffset": 2476, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "module.exports.resetGlobal", + "ranges": [{ "startOffset": 2510, "endOffset": 2554, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ARC4", + "ranges": [{ "startOffset": 2947, "endOffset": 3928, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "flatten", + "ranges": [{ "startOffset": 4011, "endOffset": 4300, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mixkey", + "ranges": [ + { "startOffset": 4468, "endOffset": 4706, "count": 1 }, + { "startOffset": 4575, "endOffset": 4678, "count": 18 } + ], + "isBlockCoverage": true + }, + { + "functionName": "autoseed", + "ranges": [{ "startOffset": 4840, "endOffset": 5116, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "tostring", + "ranges": [{ "startOffset": 5190, "endOffset": 5258, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "541", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/ci-environment/dist/cjs/src/index.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 1112, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__exportStar", + "ranges": [ + { "startOffset": 541, "endOffset": 692, "count": 1 }, + { "startOffset": 585, "endOffset": 690, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 750, "endOffset": 831, "count": 1 }, + { "startOffset": 808, "endOffset": 828, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "542", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/ci-environment/dist/cjs/src/detectCiEnvironment.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 4617, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__assign", + "ranges": [{ "startOffset": 56, "endOffset": 395, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__values", + "ranges": [ + { "startOffset": 439, "endOffset": 856, "count": 1 }, + { "startOffset": 564, "endOffset": 606, "count": 0 }, + { "startOffset": 608, "endOffset": 816, "count": 0 }, + { "startOffset": 817, "endOffset": 852, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "next", + "ranges": [{ "startOffset": 631, "endOffset": 755, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 914, "endOffset": 995, "count": 1 }, + { "startOffset": 972, "endOffset": 992, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "detectCiEnvironment", + "ranges": [ + { "startOffset": 1283, "endOffset": 2014, "count": 1 }, + { "startOffset": 1546, "endOffset": 1745, "count": 15 }, + { "startOffset": 1687, "endOffset": 1735, "count": 0 }, + { "startOffset": 1756, "endOffset": 1797, "count": 0 }, + { "startOffset": 1889, "endOffset": 1922, "count": 0 }, + { "startOffset": 1924, "endOffset": 1950, "count": 0 }, + { "startOffset": 1988, "endOffset": 2004, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "removeUserInfoFromUrl", + "ranges": [{ "startOffset": 2054, "endOffset": 2317, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "detectGit", + "ranges": [{ "startOffset": 2373, "endOffset": 3160, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "detectRevision", + "ranges": [{ "startOffset": 3161, "endOffset": 3992, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "detect", + "ranges": [ + { "startOffset": 3993, "endOffset": 4569, "count": 15 }, + { "startOffset": 4312, "endOffset": 4564, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "543", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/ci-environment/dist/cjs/src/CiEnvironments.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 5318, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "544", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/ci-environment/dist/cjs/src/evaluateVariableExpression.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3563, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__values", + "ranges": [{ "startOffset": 56, "endOffset": 473, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__read", + "ranges": [{ "startOffset": 513, "endOffset": 963, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "evaluateVariableExpression", + "ranges": [ + { "startOffset": 1028, "endOffset": 2740, "count": 15 }, + { "startOffset": 1117, "endOffset": 1150, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 1271, "endOffset": 2637, "count": 15 }, + { "startOffset": 1404, "endOffset": 1465, "count": 75 }, + { "startOffset": 1677, "endOffset": 2324, "count": 0 }, + { "startOffset": 2351, "endOffset": 2636, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "getValue", + "ranges": [ + { "startOffset": 2787, "endOffset": 3508, "count": 15 }, + { "startOffset": 2871, "endOffset": 3480, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "545", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/ci-environment/dist/cjs/src/types.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 110, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "546", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/filter/types.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 110, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "547", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/api/load_support.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1598, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "loadSupport", + "ranges": [{ "startOffset": 498, "endOffset": 1557, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "548", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/api/support.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1575, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 70, "endOffset": 151, "count": 2 }, + { "startOffset": 128, "endOffset": 148, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "getSupportCodeLibrary", + "ranges": [ + { "startOffset": 523, "endOffset": 1539, "count": 1 }, + { "startOffset": 1133, "endOffset": 1295, "count": 0 }, + { "startOffset": 1332, "endOffset": 1475, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 817, "endOffset": 943, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 967, "endOffset": 1093, "count": 3 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "549", + "url": "node:module", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1121, "count": 1 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "550", + "url": "node:internal/modules/esm/loader", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 39155, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1930, "endOffset": 1955, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "newResolveCache", + "ranges": [{ "startOffset": 2347, "endOffset": 2477, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "newLoadCache", + "ranges": [{ "startOffset": 2631, "endOffset": 2752, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "lazyLoadTranslators", + "ranges": [{ "startOffset": 2772, "endOffset": 2893, "count": 23 }], + "isBlockCoverage": true + }, + { + "functionName": "getTranslators", + "ranges": [{ "startOffset": 3055, "endOffset": 3128, "count": 23 }], + "isBlockCoverage": true + }, + { + "functionName": "getRaceMessage", + "ranges": [{ "startOffset": 3546, "endOffset": 4172, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5379, "endOffset": 6901, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "ModuleLoader", + "ranges": [{ "startOffset": 6906, "endOffset": 6990, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "#setAsyncLoaderHooks", + "ranges": [ + { "startOffset": 7601, "endOffset": 7990, "count": 1 }, + { "startOffset": 7715, "endOffset": 7884, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "createModuleWrap", + "ranges": [{ "startOffset": 8255, "endOffset": 8378, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "executeModuleJob", + "ranges": [{ "startOffset": 8614, "endOffset": 9219, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "eval", + "ranges": [{ "startOffset": 9464, "endOffset": 9695, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "importSyncForRequire", + "ranges": [ + { "startOffset": 10267, "endOffset": 14777, "count": 1 }, + { "startOffset": 10433, "endOffset": 10484, "count": 0 }, + { "startOffset": 11438, "endOffset": 14035, "count": 0 }, + { "startOffset": 14336, "endOffset": 14370, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "#checkCachedJobForRequireESM", + "ranges": [ + { "startOffset": 15122, "endOffset": 16108, "count": 67 }, + { "startOffset": 15322, "endOffset": 15413, "count": 0 }, + { "startOffset": 15565, "endOffset": 15831, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "loadAndTranslateForImportInRequiredESM", + "ranges": [ + { "startOffset": 16581, "endOffset": 17752, "count": 21 }, + { "startOffset": 16895, "endOffset": 16938, "count": 20 }, + { "startOffset": 16940, "endOffset": 16963, "count": 1 }, + { "startOffset": 16964, "endOffset": 16980, "count": 20 }, + { "startOffset": 17298, "endOffset": 17730, "count": 1 }, + { "startOffset": 17427, "endOffset": 17724, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "#translate", + "ranges": [ + { "startOffset": 18230, "endOffset": 18874, "count": 22 }, + { "startOffset": 18457, "endOffset": 18527, "count": 0 }, + { "startOffset": 18748, "endOffset": 18777, "count": 21 }, + { "startOffset": 18778, "endOffset": 18810, "count": 21 }, + { "startOffset": 18812, "endOffset": 18851, "count": 1 } + ], + "isBlockCoverage": true + }, + { + "functionName": "loadAndTranslateForRequireInImportedCJS", + "ranges": [{ "startOffset": 19308, "endOffset": 20339, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "loadAndTranslate", + "ranges": [ + { "startOffset": 20790, "endOffset": 21244, "count": 1 }, + { "startOffset": 21137, "endOffset": 21204, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "afterLoad", + "ranges": [{ "startOffset": 20914, "endOffset": 21102, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "#getOrCreateModuleJobAfterResolve", + "ranges": [ + { "startOffset": 21981, "endOffset": 24182, "count": 89 }, + { "startOffset": 22155, "endOffset": 22170, "count": 0 }, + { "startOffset": 22172, "endOffset": 22310, "count": 0 }, + { "startOffset": 22581, "endOffset": 22798, "count": 67 }, + { "startOffset": 22798, "endOffset": 22946, "count": 22 }, + { "startOffset": 22946, "endOffset": 23054, "count": 0 }, + { "startOffset": 23054, "endOffset": 23309, "count": 22 }, + { "startOffset": 23102, "endOffset": 23218, "count": 21 }, + { "startOffset": 23218, "endOffset": 23309, "count": 1 }, + { "startOffset": 23309, "endOffset": 23356, "count": 22 }, + { "startOffset": 23356, "endOffset": 23396, "count": 1 }, + { "startOffset": 23397, "endOffset": 23440, "count": 1 }, + { "startOffset": 23442, "endOffset": 23776, "count": 22 }, + { "startOffset": 23776, "endOffset": 23791, "count": 21 }, + { "startOffset": 23792, "endOffset": 23803, "count": 1 }, + { "startOffset": 23883, "endOffset": 23917, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "getOrCreateModuleJob", + "ranges": [ + { "startOffset": 24629, "endOffset": 25333, "count": 89 }, + { "startOffset": 24794, "endOffset": 24961, "count": 88 }, + { "startOffset": 24961, "endOffset": 25030, "count": 1 }, + { "startOffset": 25220, "endOffset": 25290, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "afterResolve", + "ranges": [{ "startOffset": 25057, "endOffset": 25184, "count": 89 }], + "isBlockCoverage": true + }, + { + "functionName": "import", + "ranges": [{ "startOffset": 25884, "endOffset": 26717, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "onImport.tracePromise.__proto__", + "ranges": [ + { "startOffset": 26020, "endOffset": 26640, "count": 1 }, + { "startOffset": 26239, "endOffset": 26393, "count": 0 }, + { "startOffset": 26428, "endOffset": 26538, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "module", + "ranges": [{ "startOffset": 26348, "endOffset": 26356, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "register", + "ranges": [{ "startOffset": 26797, "endOffset": 27483, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#resolve", + "ranges": [ + { "startOffset": 27903, "endOffset": 28331, "count": 1 }, + { "startOffset": 27975, "endOffset": 28277, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "#cachedDefaultResolve", + "ranges": [ + { "startOffset": 28673, "endOffset": 29207, "count": 89 }, + { "startOffset": 28957, "endOffset": 28991, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "#resolveAndMaybeBlockOnLoaderThread", + "ranges": [ + { "startOffset": 29660, "endOffset": 29938, "count": 89 }, + { "startOffset": 29748, "endOffset": 29761, "count": 0 }, + { "startOffset": 29763, "endOffset": 29875, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "resolveSync", + "ranges": [ + { "startOffset": 30495, "endOffset": 31192, "count": 89 }, + { "startOffset": 30623, "endOffset": 30638, "count": 0 }, + { "startOffset": 30674, "endOffset": 30961, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "load", + "ranges": [ + { "startOffset": 31559, "endOffset": 31824, "count": 1 }, + { "startOffset": 31621, "endOffset": 31779, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "#loadAndMaybeBlockOnLoaderThread", + "ranges": [ + { "startOffset": 32182, "endOffset": 32464, "count": 22 }, + { "startOffset": 32261, "endOffset": 32271, "count": 0 }, + { "startOffset": 32273, "endOffset": 32340, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "#loadSync", + "ranges": [ + { "startOffset": 32924, "endOffset": 33506, "count": 22 }, + { "startOffset": 32980, "endOffset": 33438, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "validateLoadResult", + "ranges": [ + { "startOffset": 33510, "endOffset": 33661, "count": 22 }, + { "startOffset": 33568, "endOffset": 33657, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "importMetaInitialize", + "ranges": [ + { "startOffset": 33665, "endOffset": 34004, "count": 1 }, + { "startOffset": 33735, "endOffset": 33821, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "waitForAsyncLoaderHookInitialization", + "ranges": [{ "startOffset": 34133, "endOffset": 34240, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createModuleLoader", + "ranges": [ + { "startOffset": 34809, "endOffset": 36574, "count": 1 }, + { "startOffset": 35235, "endOffset": 36522, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "readableURIEncode", + "ranges": [{ "startOffset": 35310, "endOffset": 35805, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 36125, "endOffset": 36213, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getOrInitializeCascadedLoader", + "ranges": [{ "startOffset": 37217, "endOffset": 37361, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "isCascadedLoaderInitialized", + "ranges": [{ "startOffset": 37363, "endOffset": 37444, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "register", + "ranges": [{ "startOffset": 38688, "endOffset": 39033, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "551", + "url": "node:internal/modules/esm/assert", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3838, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1301, "endOffset": 1342, "count": 5 }], + "isBlockCoverage": true + }, + { + "functionName": "validateAttributes", + "ranges": [ + { "startOffset": 1716, "endOffset": 3103, "count": 22 }, + { "startOffset": 1912, "endOffset": 2044, "count": 0 }, + { "startOffset": 2116, "endOffset": 2261, "count": 0 }, + { "startOffset": 2529, "endOffset": 2589, "count": 0 }, + { "startOffset": 2595, "endOffset": 2704, "count": 0 }, + { "startOffset": 2710, "endOffset": 3097, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "handleInvalidType", + "ranges": [{ "startOffset": 3337, "endOffset": 3765, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "552", + "url": "node:internal/source_map/source_map", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 12150, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "StringCharIterator", + "ranges": [{ "startOffset": 4032, "endOffset": 4108, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "next", + "ranges": [{ "startOffset": 4147, "endOffset": 4225, "count": 2854 }], + "isBlockCoverage": true + }, + { + "functionName": "peek", + "ranges": [{ "startOffset": 4264, "endOffset": 4340, "count": 1617 }], + "isBlockCoverage": true + }, + { + "functionName": "hasNext", + "ranges": [{ "startOffset": 4380, "endOffset": 4444, "count": 6 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4615, "endOffset": 6191, "count": 3 }], + "isBlockCoverage": false + }, + { + "functionName": "SourceMap", + "ranges": [ + { "startOffset": 4765, "endOffset": 5264, "count": 3 }, + { "startOffset": 4847, "endOffset": 5076, "count": 1 }, + { "startOffset": 5039, "endOffset": 5070, "count": 64 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get payload", + "ranges": [{ "startOffset": 5330, "endOffset": 5393, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5397, "endOffset": 5447, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get lineLengths", + "ranges": [{ "startOffset": 5538, "endOffset": 5671, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#parseMappingPayload", + "ranges": [ + { "startOffset": 5698, "endOffset": 5919, "count": 3 }, + { "startOffset": 5738, "endOffset": 5796, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "#parseSections", + "ranges": [{ "startOffset": 6004, "endOffset": 6191, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "findEntry", + "ranges": [ + { "startOffset": 6439, "endOffset": 7303, "count": 119 }, + { "startOffset": 6557, "endOffset": 6875, "count": 657 }, + { "startOffset": 6705, "endOffset": 6774, "count": 521 }, + { "startOffset": 6745, "endOffset": 6773, "count": 351 }, + { "startOffset": 6776, "endOffset": 6807, "count": 304 }, + { "startOffset": 6807, "endOffset": 6869, "count": 353 }, + { "startOffset": 6932, "endOffset": 6940, "count": 34 }, + { "startOffset": 6941, "endOffset": 7031, "count": 34 }, + { "startOffset": 6967, "endOffset": 7030, "count": 0 }, + { "startOffset": 7033, "endOffset": 7057, "count": 34 }, + { "startOffset": 7057, "endOffset": 7099, "count": 85 }, + { "startOffset": 7075, "endOffset": 7099, "count": 0 }, + { "startOffset": 7099, "endOffset": 7302, "count": 85 } + ], + "isBlockCoverage": true + }, + { + "functionName": "findOrigin", + "ranges": [{ "startOffset": 7572, "endOffset": 8247, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#parseMap", + "ranges": [ + { "startOffset": 8278, "endOffset": 10093, "count": 3 }, + { "startOffset": 8934, "endOffset": 10089, "count": 538 }, + { "startOffset": 8989, "endOffset": 9015, "count": 532 }, + { "startOffset": 9015, "endOffset": 9250, "count": 6 }, + { "startOffset": 9079, "endOffset": 9182, "count": 3 }, + { "startOffset": 9236, "endOffset": 9242, "count": 3 }, + { "startOffset": 9250, "endOffset": 9355, "count": 535 }, + { "startOffset": 9355, "endOffset": 9454, "count": 0 }, + { "startOffset": 9454, "endOffset": 9546, "count": 535 }, + { "startOffset": 9546, "endOffset": 9638, "count": 0 }, + { "startOffset": 9638, "endOffset": 9823, "count": 535 }, + { "startOffset": 9823, "endOffset": 9923, "count": 16 }, + { "startOffset": 9923, "endOffset": 10089, "count": 535 } + ], + "isBlockCoverage": true + }, + { + "functionName": "isSeparator", + "ranges": [ + { "startOffset": 10151, "endOffset": 10220, "count": 1070 }, + { "startOffset": 10202, "endOffset": 10217, "count": 551 } + ], + "isBlockCoverage": true + }, + { + "functionName": "decodeVLQ", + "ranges": [ + { "startOffset": 10311, "endOffset": 11244, "count": 2156 }, + { "startOffset": 10431, "endOffset": 10563, "count": 2319 }, + { "startOffset": 10806, "endOffset": 10830, "count": 2059 }, + { "startOffset": 10830, "endOffset": 11243, "count": 97 } + ], + "isBlockCoverage": true + }, + { + "functionName": "cloneSourceMapV3", + "ranges": [ + { "startOffset": 11312, "endOffset": 11624, "count": 3 }, + { "startOffset": 11444, "endOffset": 11604, "count": 21 }, + { "startOffset": 11537, "endOffset": 11600, "count": 12 } + ], + "isBlockCoverage": true + }, + { + "functionName": "compareSourceMapEntry", + "ranges": [ + { "startOffset": 11821, "endOffset": 12100, "count": 532 }, + { "startOffset": 12015, "endOffset": 12058, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "553", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/support_code_library_builder/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 13736, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 70, "endOffset": 151, "count": 7 }, + { "startOffset": 122, "endOffset": 127, "count": 6 }, + { "startOffset": 128, "endOffset": 148, "count": 1 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1285, "endOffset": 1741, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "SupportCodeLibraryBuilder", + "ranges": [{ "startOffset": 1747, "endOffset": 4223, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1832, "endOffset": 1877, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1925, "endOffset": 1969, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2019, "endOffset": 2064, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2111, "endOffset": 2157, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2206, "endOffset": 2251, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2302, "endOffset": 2348, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2472, "endOffset": 2504, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2551, "endOffset": 2583, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "setDefaultTimeout", + "ranges": [{ "startOffset": 2617, "endOffset": 2702, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "setDefinitionFunctionWrapper", + "ranges": [{ "startOffset": 2746, "endOffset": 2822, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setWorldConstructor", + "ranges": [{ "startOffset": 2857, "endOffset": 2913, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "setParallelCanAssign", + "ranges": [{ "startOffset": 2949, "endOffset": 3017, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3061, "endOffset": 3093, "count": 10 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3138, "endOffset": 3170, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "checkInstall", + "ranges": [ + { "startOffset": 3213, "endOffset": 3887, "count": 19 }, + { "startOffset": 3270, "endOffset": 3877, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3945, "endOffset": 4204, "count": 15 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3990, "endOffset": 4189, "count": 19 }], + "isBlockCoverage": true + }, + { + "functionName": "defineParameterType", + "ranges": [{ "startOffset": 4228, "endOffset": 4530, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "defineStep", + "ranges": [{ "startOffset": 4535, "endOffset": 5277, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4587, "endOffset": 5270, "count": 13 }], + "isBlockCoverage": true + }, + { + "functionName": "defineTestCaseHook", + "ranges": [{ "startOffset": 5282, "endOffset": 6074, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 5333, "endOffset": 6067, "count": 2 }, + { "startOffset": 5399, "endOffset": 5459, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "defineTestStepHook", + "ranges": [{ "startOffset": 6079, "endOffset": 6871, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6130, "endOffset": 6864, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "defineTestRunHook", + "ranges": [{ "startOffset": 6876, "endOffset": 7555, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6926, "endOffset": 7548, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "wrapCode", + "ranges": [ + { "startOffset": 7560, "endOffset": 8007, "count": 17 }, + { "startOffset": 7678, "endOffset": 7980, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "buildTestCaseHookDefinitions", + "ranges": [{ "startOffset": 8012, "endOffset": 8583, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 8093, "endOffset": 8575, "count": 2 }, + { "startOffset": 8407, "endOffset": 8428, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "buildTestStepHookDefinitions", + "ranges": [{ "startOffset": 8588, "endOffset": 9101, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8655, "endOffset": 9093, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "buildTestRunHookDefinitions", + "ranges": [{ "startOffset": 9106, "endOffset": 9617, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9172, "endOffset": 9609, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "buildStepDefinitions", + "ranges": [{ "startOffset": 9622, "endOffset": 11242, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 9782, "endOffset": 11173, "count": 13 }, + { "startOffset": 10091, "endOffset": 10491, "count": 0 }, + { "startOffset": 10505, "endOffset": 10650, "count": 0 }, + { "startOffset": 10954, "endOffset": 10975, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "finalize", + "ranges": [ + { "startOffset": 11247, "endOffset": 12648, "count": 1 }, + { "startOffset": 11383, "endOffset": 11402, "count": 0 }, + { "startOffset": 11610, "endOffset": 11642, "count": 0 }, + { "startOffset": 12009, "endOffset": 12042, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "reset", + "ranges": [{ "startOffset": 12653, "endOffset": 13586, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "parallelCanAssign", + "ranges": [{ "startOffset": 13501, "endOffset": 13511, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "554", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/util-arity/arity.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 656, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "module.exports", + "ranges": [{ "startOffset": 189, "endOffset": 654, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "555", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber-expressions/dist/cjs/src/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2288, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 70, "endOffset": 151, "count": 9 }, + { "startOffset": 128, "endOffset": 148, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 743, "endOffset": 780, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 853, "endOffset": 894, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 964, "endOffset": 1002, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1076, "endOffset": 1118, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "556", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber-expressions/dist/cjs/src/Argument.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1714, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 70, "endOffset": 151, "count": 1 }, + { "startOffset": 128, "endOffset": 148, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 339, "endOffset": 1645, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Argument", + "ranges": [{ "startOffset": 357, "endOffset": 548, "count": 27 }], + "isBlockCoverage": true + }, + { + "functionName": "Argument.build", + "ranges": [ + { "startOffset": 570, "endOffset": 1151, "count": 27 }, + { "startOffset": 701, "endOffset": 1027, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 842, "endOffset": 874, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 977, "endOffset": 1008, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1062, "endOffset": 1143, "count": 27 }], + "isBlockCoverage": true + }, + { + "functionName": "Argument.getValue", + "ranges": [ + { "startOffset": 1365, "endOffset": 1523, "count": 9 }, + { "startOffset": 1443, "endOffset": 1449, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "Argument.getParameterType", + "ranges": [{ "startOffset": 1567, "endOffset": 1621, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "557", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber-expressions/dist/cjs/src/CucumberExpressionError.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1214, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 59, "endOffset": 772, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "extendStatics", + "ranges": [ + { "startOffset": 97, "endOffset": 408, "count": 1 }, + { "startOffset": 161, "endOffset": 252, "count": 0 }, + { "startOffset": 253, "endOffset": 365, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "extendStatics", + "ranges": [{ "startOffset": 215, "endOffset": 251, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "extendStatics", + "ranges": [{ "startOffset": 268, "endOffset": 365, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__extends", + "ranges": [ + { "startOffset": 421, "endOffset": 769, "count": 1 }, + { "startOffset": 475, "endOffset": 488, "count": 0 }, + { "startOffset": 502, "endOffset": 592, "count": 0 }, + { "startOffset": 703, "endOffset": 721, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__", + "ranges": [{ "startOffset": 630, "endOffset": 669, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 885, "endOffset": 1110, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "CucumberExpressionError", + "ranges": [{ "startOffset": 957, "endOffset": 1072, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "558", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber-expressions/dist/cjs/src/Ast.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 4481, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "symbolOf", + "ranges": [{ "startOffset": 388, "endOffset": 855, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "purposeOf", + "ranges": [{ "startOffset": 885, "endOffset": 1246, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1304, "endOffset": 1894, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Node", + "ranges": [ + { "startOffset": 1322, "endOffset": 1647, "count": 204 }, + { "startOffset": 1536, "endOffset": 1558, "count": 169 }, + { "startOffset": 1560, "endOffset": 1641, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "Node.text", + "ranges": [ + { "startOffset": 1674, "endOffset": 1874, "count": 145 }, + { "startOffset": 1711, "endOffset": 1735, "count": 22 }, + { "startOffset": 1737, "endOffset": 1835, "count": 22 }, + { "startOffset": 1835, "endOffset": 1862, "count": 123 }, + { "startOffset": 1862, "endOffset": 1867, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1773, "endOffset": 1814, "count": 22 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1935, "endOffset": 2232, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2310, "endOffset": 3913, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Token", + "ranges": [{ "startOffset": 2328, "endOffset": 2478, "count": 193 }], + "isBlockCoverage": true + }, + { + "functionName": "Token.isEscapeCharacter", + "ranges": [{ "startOffset": 2509, "endOffset": 2582, "count": 404 }], + "isBlockCoverage": true + }, + { + "functionName": "Token.canEscape", + "ranges": [{ "startOffset": 2606, "endOffset": 3212, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Token.typeOf", + "ranges": [ + { "startOffset": 3233, "endOffset": 3892, "count": 404 }, + { "startOffset": 3286, "endOffset": 3379, "count": 55 }, + { "startOffset": 3379, "endOffset": 3421, "count": 349 }, + { "startOffset": 3421, "endOffset": 3493, "count": 0 }, + { "startOffset": 3506, "endOffset": 3584, "count": 22 }, + { "startOffset": 3597, "endOffset": 3671, "count": 22 }, + { "startOffset": 3684, "endOffset": 3760, "count": 0 }, + { "startOffset": 3773, "endOffset": 3845, "count": 0 }, + { "startOffset": 3855, "endOffset": 3891, "count": 305 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3957, "endOffset": 4396, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "559", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber-expressions/dist/cjs/src/CucumberExpression.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 7426, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__values", + "ranges": [{ "startOffset": 56, "endOffset": 473, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 531, "endOffset": 612, "count": 3 }, + { "startOffset": 589, "endOffset": 609, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "ESCAPE_PATTERN", + "ranges": [{ "startOffset": 1001, "endOffset": 1048, "count": 101 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1090, "endOffset": 7337, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "CucumberExpression", + "ranges": [{ "startOffset": 1185, "endOffset": 1615, "count": 13 }], + "isBlockCoverage": true + }, + { + "functionName": "CucumberExpression.rewriteToRegex", + "ranges": [ + { "startOffset": 1666, "endOffset": 2473, "count": 136 }, + { "startOffset": 1725, "endOffset": 1821, "count": 101 }, + { "startOffset": 1834, "endOffset": 1917, "count": 0 }, + { "startOffset": 1930, "endOffset": 2019, "count": 0 }, + { "startOffset": 2032, "endOffset": 2121, "count": 0 }, + { "startOffset": 2134, "endOffset": 2219, "count": 22 }, + { "startOffset": 2232, "endOffset": 2319, "count": 13 }, + { "startOffset": 2332, "endOffset": 2457, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "CucumberExpression.escapeRegex", + "ranges": [{ "startOffset": 2512, "endOffset": 2602, "count": 101 }], + "isBlockCoverage": true + }, + { + "functionName": "CucumberExpression.rewriteOptional", + "ranges": [{ "startOffset": 2655, "endOffset": 3338, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "CucumberExpression.rewriteAlternation", + "ranges": [{ "startOffset": 3394, "endOffset": 4529, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "CucumberExpression.rewriteAlternative", + "ranges": [{ "startOffset": 4585, "endOffset": 4746, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "CucumberExpression.rewriteParameter", + "ranges": [ + { "startOffset": 4800, "endOffset": 5320, "count": 22 }, + { "startOffset": 4957, "endOffset": 5062, "count": 0 }, + { "startOffset": 5196, "endOffset": 5255, "count": 21 }, + { "startOffset": 5255, "endOffset": 5319, "count": 1 } + ], + "isBlockCoverage": true + }, + { + "functionName": "CucumberExpression.rewriteExpression", + "ranges": [ + { "startOffset": 5375, "endOffset": 5572, "count": 13 }, + { "startOffset": 5451, "endOffset": 5456, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5462, "endOffset": 5516, "count": 123 }], + "isBlockCoverage": true + }, + { + "functionName": "CucumberExpression.assertNotEmpty", + "ranges": [{ "startOffset": 5624, "endOffset": 5904, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "CucumberExpression.assertNoParameters", + "ranges": [{ "startOffset": 5960, "endOffset": 6275, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "CucumberExpression.assertNoOptionals", + "ranges": [{ "startOffset": 6330, "endOffset": 6644, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "CucumberExpression.match", + "ranges": [ + { "startOffset": 6687, "endOffset": 6888, "count": 135 }, + { "startOffset": 6774, "endOffset": 6810, "count": 108 }, + { "startOffset": 6810, "endOffset": 6887, "count": 27 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 6971, "endOffset": 7037, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 7182, "endOffset": 7241, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "560", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber-expressions/dist/cjs/src/CucumberExpressionParser.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 10330, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__read", + "ranges": [ + { "startOffset": 52, "endOffset": 502, "count": 191 }, + { "startOffset": 146, "endOffset": 155, "count": 0 }, + { "startOffset": 233, "endOffset": 243, "count": 0 }, + { "startOffset": 245, "endOffset": 268, "count": 382 }, + { "startOffset": 298, "endOffset": 337, "count": 0 }, + { "startOffset": 395, "endOffset": 415, "count": 0 }, + { "startOffset": 417, "endOffset": 427, "count": 0 }, + { "startOffset": 463, "endOffset": 477, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__spreadArray", + "ranges": [ + { "startOffset": 556, "endOffset": 883, "count": 191 }, + { "startOffset": 624, "endOffset": 819, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 941, "endOffset": 1022, "count": 1 }, + { "startOffset": 999, "endOffset": 1019, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "parseText", + "ranges": [ + { "startOffset": 1311, "endOffset": 2223, "count": 147 }, + { "startOffset": 1428, "endOffset": 1463, "count": 55 }, + { "startOffset": 1779, "endOffset": 1908, "count": 0 }, + { "startOffset": 1917, "endOffset": 1953, "count": 0 }, + { "startOffset": 1962, "endOffset": 1996, "count": 0 }, + { "startOffset": 2005, "endOffset": 2043, "count": 0 }, + { "startOffset": 2052, "endOffset": 2091, "count": 0 }, + { "startOffset": 2100, "endOffset": 2215, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "parseName", + "ranges": [ + { "startOffset": 2265, "endOffset": 3176, "count": 22 }, + { "startOffset": 2382, "endOffset": 2417, "count": 0 }, + { "startOffset": 2642, "endOffset": 2680, "count": 0 }, + { "startOffset": 2689, "endOffset": 2725, "count": 0 }, + { "startOffset": 2734, "endOffset": 2773, "count": 0 }, + { "startOffset": 2782, "endOffset": 2819, "count": 0 }, + { "startOffset": 2828, "endOffset": 2956, "count": 0 }, + { "startOffset": 2965, "endOffset": 3001, "count": 0 }, + { "startOffset": 3010, "endOffset": 3044, "count": 0 }, + { "startOffset": 3053, "endOffset": 3168, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "parseAlternativeSeparator", + "ranges": [ + { "startOffset": 3754, "endOffset": 4125, "count": 46 }, + { "startOffset": 3937, "endOffset": 4124, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "parseAlternation", + "ranges": [ + { "startOffset": 4495, "endOffset": 5540, "count": 123 }, + { "startOffset": 4738, "endOffset": 4786, "count": 39 }, + { "startOffset": 4786, "endOffset": 5200, "count": 84 }, + { "startOffset": 5200, "endOffset": 5539, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5073, "endOffset": 5149, "count": 46 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5867, "endOffset": 6269, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "CucumberExpressionParser", + "ranges": [{ "startOffset": 5885, "endOffset": 5928, "count": 13 }], + "isBlockCoverage": true + }, + { + "functionName": "CucumberExpressionParser.parse", + "ranges": [{ "startOffset": 5976, "endOffset": 6229, "count": 13 }], + "isBlockCoverage": true + }, + { + "functionName": "parseBetween", + "ranges": [{ "startOffset": 6318, "endOffset": 7280, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 6390, "endOffset": 7277, "count": 351 }, + { "startOffset": 6484, "endOffset": 6540, "count": 316 }, + { "startOffset": 6540, "endOffset": 6859, "count": 35 }, + { "startOffset": 6859, "endOffset": 6979, "count": 0 }, + { "startOffset": 6979, "endOffset": 7276, "count": 35 } + ], + "isBlockCoverage": true + }, + { + "functionName": "parseToken", + "ranges": [ + { "startOffset": 7281, "endOffset": 7669, "count": 191 }, + { "startOffset": 7386, "endOffset": 7555, "count": 676 }, + { "startOffset": 7511, "endOffset": 7549, "count": 191 }, + { "startOffset": 7555, "endOffset": 7668, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "parseTokensUntil", + "ranges": [ + { "startOffset": 7670, "endOffset": 8397, "count": 119 }, + { "startOffset": 7849, "endOffset": 8341, "count": 310 }, + { "startOffset": 7905, "endOffset": 7935, "count": 119 }, + { "startOffset": 7935, "endOffset": 8041, "count": 191 }, + { "startOffset": 8041, "endOffset": 8224, "count": 0 }, + { "startOffset": 8224, "endOffset": 8341, "count": 191 } + ], + "isBlockCoverage": true + }, + { + "functionName": "lookingAtAny", + "ranges": [{ "startOffset": 8398, "endOffset": 8542, "count": 433 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8473, "endOffset": 8538, "count": 886 }], + "isBlockCoverage": true + }, + { + "functionName": "lookingAt", + "ranges": [ + { "startOffset": 8543, "endOffset": 8883, "count": 1318 }, + { "startOffset": 8599, "endOffset": 8753, "count": 0 }, + { "startOffset": 8783, "endOffset": 8844, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "splitAlternatives", + "ranges": [{ "startOffset": 8884, "endOffset": 9402, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createAlternativeNodes", + "ranges": [{ "startOffset": 9403, "endOffset": 10277, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "561", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber-expressions/dist/cjs/src/CucumberExpressionTokenizer.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3258, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 204, "endOffset": 3151, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "CucumberExpressionTokenizer", + "ranges": [{ "startOffset": 222, "endOffset": 268, "count": 13 }], + "isBlockCoverage": true + }, + { + "functionName": "CucumberExpressionTokenizer.tokenize", + "ranges": [ + { "startOffset": 322, "endOffset": 3108, "count": 13 }, + { "startOffset": 1845, "endOffset": 1943, "count": 0 }, + { "startOffset": 2873, "endOffset": 2966, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "convertBufferToToken", + "ranges": [ + { "startOffset": 609, "endOffset": 1109, "count": 180 }, + { "startOffset": 740, "endOffset": 824, "count": 68 } + ], + "isBlockCoverage": true + }, + { + "functionName": "tokenTypeOf", + "ranges": [ + { "startOffset": 1118, "endOffset": 1504, "count": 404 }, + { "startOffset": 1267, "endOffset": 1503, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "shouldCreateNewToken", + "ranges": [ + { "startOffset": 1513, "endOffset": 1808, "count": 404 }, + { "startOffset": 1637, "endOffset": 1681, "count": 167 }, + { "startOffset": 1681, "endOffset": 1797, "count": 237 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 1971, "endOffset": 2705, "count": 404 }, + { "startOffset": 2071, "endOffset": 2173, "count": 0 }, + { "startOffset": 2354, "endOffset": 2568, "count": 167 }, + { "startOffset": 2568, "endOffset": 2695, "count": 237 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "562", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber-expressions/dist/cjs/src/Errors.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 8960, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 59, "endOffset": 772, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "extendStatics", + "ranges": [ + { "startOffset": 97, "endOffset": 408, "count": 1 }, + { "startOffset": 161, "endOffset": 252, "count": 0 }, + { "startOffset": 253, "endOffset": 365, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "extendStatics", + "ranges": [{ "startOffset": 215, "endOffset": 251, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "extendStatics", + "ranges": [{ "startOffset": 268, "endOffset": 365, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__extends", + "ranges": [ + { "startOffset": 421, "endOffset": 769, "count": 2 }, + { "startOffset": 475, "endOffset": 488, "count": 0 }, + { "startOffset": 502, "endOffset": 592, "count": 0 }, + { "startOffset": 703, "endOffset": 721, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__", + "ranges": [{ "startOffset": 630, "endOffset": 669, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 833, "endOffset": 914, "count": 1 }, + { "startOffset": 891, "endOffset": 911, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "createAlternativeMayNotExclusivelyContainOptionals", + "ranges": [{ "startOffset": 1665, "endOffset": 1988, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createAlternativeMayNotBeEmpty", + "ranges": [{ "startOffset": 2102, "endOffset": 2384, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createOptionalMayNotBeEmpty", + "ranges": [{ "startOffset": 2458, "endOffset": 2740, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createParameterIsNotAllowedInOptional", + "ranges": [{ "startOffset": 2808, "endOffset": 3116, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createOptionalIsNotAllowedInOptional", + "ranges": [{ "startOffset": 3204, "endOffset": 3590, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createTheEndOfLIneCanNotBeEscaped", + "ranges": [{ "startOffset": 3676, "endOffset": 3961, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createMissingEndToken", + "ranges": [{ "startOffset": 4041, "endOffset": 4608, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createAlternationNotAllowedInOptional", + "ranges": [{ "startOffset": 4664, "endOffset": 5067, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createCantEscaped", + "ranges": [{ "startOffset": 5155, "endOffset": 5450, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createInvalidParameterTypeNameInNode", + "ranges": [{ "startOffset": 5498, "endOffset": 5788, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "message", + "ranges": [{ "startOffset": 5874, "endOffset": 6119, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pointAt", + "ranges": [{ "startOffset": 6120, "endOffset": 6292, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pointAtLocated", + "ranges": [{ "startOffset": 6293, "endOffset": 6569, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6619, "endOffset": 7878, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "AmbiguousParameterTypeError", + "ranges": [{ "startOffset": 6695, "endOffset": 6814, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "AmbiguousParameterTypeError.forRegExp", + "ranges": [{ "startOffset": 6859, "endOffset": 7469, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "AmbiguousParameterTypeError._parameterTypeNames", + "ranges": [{ "startOffset": 7525, "endOffset": 7657, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "AmbiguousParameterTypeError._expressions", + "ranges": [{ "startOffset": 7706, "endOffset": 7835, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8035, "endOffset": 8383, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "UndefinedParameterTypeError", + "ranges": [{ "startOffset": 8111, "endOffset": 8341, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createUndefinedParameterType", + "ranges": [{ "startOffset": 8491, "endOffset": 8856, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "563", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber-expressions/dist/cjs/src/TreeRegexp.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3204, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 70, "endOffset": 151, "count": 2 }, + { "startOffset": 122, "endOffset": 127, "count": 1 }, + { "startOffset": 128, "endOffset": 148, "count": 1 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 398, "endOffset": 3131, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "TreeRegexp", + "ranges": [ + { "startOffset": 416, "endOffset": 678, "count": 13 }, + { "startOffset": 484, "endOffset": 529, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "TreeRegexp.createGroupBuilder", + "ranges": [ + { "startOffset": 715, "endOffset": 2312, "count": 13 }, + { "startOffset": 969, "endOffset": 2184, "count": 1347 }, + { "startOffset": 1028, "endOffset": 1040, "count": 84 }, + { "startOffset": 1042, "endOffset": 1091, "count": 84 }, + { "startOffset": 1091, "endOffset": 2126, "count": 1263 }, + { "startOffset": 1123, "endOffset": 1135, "count": 84 }, + { "startOffset": 1137, "endOffset": 1187, "count": 84 }, + { "startOffset": 1187, "endOffset": 2126, "count": 1179 }, + { "startOffset": 1219, "endOffset": 1231, "count": 108 }, + { "startOffset": 1232, "endOffset": 1245, "count": 108 }, + { "startOffset": 1247, "endOffset": 1592, "count": 108 }, + { "startOffset": 1465, "endOffset": 1536, "count": 2 }, + { "startOffset": 1592, "endOffset": 2126, "count": 1071 }, + { "startOffset": 1624, "endOffset": 1636, "count": 108 }, + { "startOffset": 1637, "endOffset": 1650, "count": 108 }, + { "startOffset": 1652, "endOffset": 2126, "count": 108 }, + { "startOffset": 1737, "endOffset": 1768, "count": 0 }, + { "startOffset": 1859, "endOffset": 2007, "count": 106 }, + { "startOffset": 1922, "endOffset": 1926, "count": 0 }, + { "startOffset": 2007, "endOffset": 2112, "count": 2 }, + { "startOffset": 2161, "endOffset": 2173, "count": 254 }, + { "startOffset": 2252, "endOffset": 2283, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "TreeRegexp.isNonCapturing", + "ranges": [ + { "startOffset": 2346, "endOffset": 2762, "count": 108 }, + { "startOffset": 2458, "endOffset": 2514, "count": 106 }, + { "startOffset": 2514, "endOffset": 2649, "count": 2 }, + { "startOffset": 2649, "endOffset": 2755, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "TreeRegexp.match", + "ranges": [ + { "startOffset": 2797, "endOffset": 3105, "count": 135 }, + { "startOffset": 2905, "endOffset": 2941, "count": 108 }, + { "startOffset": 2941, "endOffset": 3104, "count": 27 } + ], + "isBlockCoverage": true + }, + { + "functionName": "nextGroupIndex", + "ranges": [{ "startOffset": 2999, "endOffset": 3035, "count": 162 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "564", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/regexp-match-indices/index.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 1145, "count": 1 }, + { "startOffset": 1070, "endOffset": 1084, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "exec", + "ranges": [{ "startOffset": 826, "endOffset": 903, "count": 135 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1043, "endOffset": 1063, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "565", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/regexp-match-indices/implementation.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 10949, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "exec", + "ranges": [ + { "startOffset": 939, "endOffset": 1088, "count": 135 }, + { "startOffset": 1017, "endOffset": 1050, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "execLazy", + "ranges": [ + { "startOffset": 1090, "endOffset": 2255, "count": 135 }, + { "startOffset": 1251, "endOffset": 1263, "count": 108 }, + { "startOffset": 1263, "endOffset": 2254, "count": 27 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [ + { "startOffset": 1586, "endOffset": 2132, "count": 27 }, + { "startOffset": 1935, "endOffset": 1957, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 2143, "endOffset": 2223, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "execSpecCompliant", + "ranges": [{ "startOffset": 2257, "endOffset": 3141, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getMeasurementRegExp", + "ranges": [ + { "startOffset": 3143, "endOffset": 3591, "count": 27 }, + { "startOffset": 3264, "endOffset": 3438, "count": 4 } + ], + "isBlockCoverage": true + }, + { + "functionName": "makeIndicesArray", + "ranges": [ + { "startOffset": 3593, "endOffset": 4834, "count": 27 }, + { "startOffset": 3864, "endOffset": 3885, "count": 0 }, + { "startOffset": 4004, "endOffset": 4750, "count": 135 }, + { "startOffset": 4097, "endOffset": 4527, "count": 54 }, + { "startOffset": 4266, "endOffset": 4362, "count": 105 }, + { "startOffset": 4624, "endOffset": 4660, "count": 0 }, + { "startOffset": 4662, "endOffset": 4743, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "makeDataProperty", + "ranges": [ + { "startOffset": 4836, "endOffset": 5337, "count": 216 }, + { "startOffset": 4978, "endOffset": 5005, "count": 27 }, + { "startOffset": 5006, "endOffset": 5035, "count": 189 }, + { "startOffset": 5104, "endOffset": 5129, "count": 27 }, + { "startOffset": 5130, "endOffset": 5136, "count": 189 }, + { "startOffset": 5178, "endOffset": 5205, "count": 27 }, + { "startOffset": 5206, "endOffset": 5212, "count": 189 } + ], + "isBlockCoverage": true + }, + { + "functionName": "init", + "ranges": [{ "startOffset": 5687, "endOffset": 6067, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "RegExp", + "ranges": [ + { "startOffset": 6074, "endOffset": 6492, "count": 4 }, + { "startOffset": 6195, "endOffset": 6462, "count": 3 }, + { "startOffset": 6357, "endOffset": 6451, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "pre", + "ranges": [ + { "startOffset": 6527, "endOffset": 6697, "count": 102 }, + { "startOffset": 6667, "endOffset": 6689, "count": 25 } + ], + "isBlockCoverage": true + }, + { + "functionName": "post", + "ranges": [ + { "startOffset": 6704, "endOffset": 6927, "count": 102 }, + { "startOffset": 6754, "endOffset": 6825, "count": 63 }, + { "startOffset": 6894, "endOffset": 6919, "count": 67 } + ], + "isBlockCoverage": true + }, + { + "functionName": "Backreference", + "ranges": [{ "startOffset": 7112, "endOffset": 7161, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Alternative", + "ranges": [ + { "startOffset": 7190, "endOffset": 8939, "count": 33 }, + { "startOffset": 7269, "endOffset": 8909, "count": 23 }, + { "startOffset": 7629, "endOffset": 8827, "count": 96 }, + { "startOffset": 7749, "endOffset": 8770, "count": 25 }, + { "startOffset": 8052, "endOffset": 8104, "count": 3 }, + { "startOffset": 8105, "endOffset": 8227, "count": 22 }, + { "startOffset": 8184, "endOffset": 8227, "count": 0 }, + { "startOffset": 8770, "endOffset": 8827, "count": 71 } + ], + "isBlockCoverage": true + }, + { + "functionName": "Group", + "ranges": [ + { "startOffset": 8946, "endOffset": 9097, "count": 25 }, + { "startOffset": 9008, "endOffset": 9015, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "Group", + "ranges": [ + { "startOffset": 9134, "endOffset": 9907, "count": 50 }, + { "startOffset": 9191, "endOffset": 9227, "count": 0 }, + { "startOffset": 9276, "endOffset": 9283, "count": 0 }, + { "startOffset": 9501, "endOffset": 9850, "count": 25 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9683, "endOffset": 9704, "count": 65 }], + "isBlockCoverage": true + }, + { + "functionName": "Backreference", + "ranges": [{ "startOffset": 9952, "endOffset": 10438, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getMeasurementGroups", + "ranges": [ + { "startOffset": 10444, "endOffset": 10694, "count": 25 }, + { "startOffset": 10561, "endOffset": 10660, "count": 55 }, + { "startOffset": 10598, "endOffset": 10653, "count": 65 } + ], + "isBlockCoverage": true + }, + { + "functionName": "transformMeasurementGroups", + "ranges": [{ "startOffset": 10696, "endOffset": 10881, "count": 4 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "566", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/regexp-match-indices/config.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 689, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "567", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/regexp-match-indices/native.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 696, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "568", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/regexp-tree/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 172, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "569", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/regexp-tree/dist/regexp-tree.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 4415, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "parse", + "ranges": [{ "startOffset": 1208, "endOffset": 1292, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "traverse", + "ranges": [{ "startOffset": 1787, "endOffset": 1889, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "transform", + "ranges": [{ "startOffset": 2352, "endOffset": 2445, "count": 35 }], + "isBlockCoverage": true + }, + { + "functionName": "generate", + "ranges": [{ "startOffset": 2645, "endOffset": 2709, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toRegExp", + "ranges": [{ "startOffset": 2819, "endOffset": 2959, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "optimize", + "ranges": [{ "startOffset": 3165, "endOffset": 3418, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "compatTranspile", + "ranges": [{ "startOffset": 3641, "endOffset": 3748, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "exec", + "ranges": [{ "startOffset": 3924, "endOffset": 4382, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "570", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/regexp-tree/dist/compat-transpiler/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1471, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "transform", + "ranges": [{ "startOffset": 452, "endOffset": 1468, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "571", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/regexp-tree/dist/compat-transpiler/transforms/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 388, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "572", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/regexp-tree/dist/compat-transpiler/transforms/compat-dotall-s-transform.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1354, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "shouldRun", + "ranges": [{ "startOffset": 395, "endOffset": 688, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Char", + "ranges": [{ "startOffset": 698, "endOffset": 1351, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "573", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/regexp-tree/dist/compat-transpiler/transforms/compat-named-capturing-groups-transform.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1088, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "init", + "ranges": [{ "startOffset": 444, "endOffset": 492, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getExtra", + "ranges": [{ "startOffset": 578, "endOffset": 632, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Group", + "ranges": [{ "startOffset": 643, "endOffset": 861, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Backreference", + "ranges": [{ "startOffset": 880, "endOffset": 1085, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "574", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/regexp-tree/dist/compat-transpiler/transforms/compat-x-flag-transform.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 478, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "RegExp", + "ranges": [{ "startOffset": 331, "endOffset": 475, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "575", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/regexp-tree/dist/transform/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3550, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 144, "endOffset": 686, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "defineProperties", + "ranges": [ + { "startOffset": 158, "endOffset": 474, "count": 1 }, + { "startOffset": 240, "endOffset": 472, "count": 7 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 482, "endOffset": 683, "count": 1 }, + { "startOffset": 618, "endOffset": 661, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "_classCallCheck", + "ranges": [ + { "startOffset": 691, "endOffset": 844, "count": 39 }, + { "startOffset": 781, "endOffset": 842, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1014, "endOffset": 2501, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "TransformResult", + "ranges": [ + { "startOffset": 1196, "endOffset": 1488, "count": 39 }, + { "startOffset": 1265, "endOffset": 1294, "count": 4 }, + { "startOffset": 1295, "endOffset": 1309, "count": 4 }, + { "startOffset": 1310, "endOffset": 1316, "count": 35 } + ], + "isBlockCoverage": true + }, + { + "functionName": "getAST", + "ranges": [{ "startOffset": 1555, "endOffset": 1604, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "setExtra", + "ranges": [{ "startOffset": 1644, "endOffset": 1703, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getExtra", + "ranges": [{ "startOffset": 1743, "endOffset": 1796, "count": 27 }], + "isBlockCoverage": true + }, + { + "functionName": "toRegExp", + "ranges": [ + { "startOffset": 1836, "endOffset": 1995, "count": 27 }, + { "startOffset": 1883, "endOffset": 1962, "count": 4 } + ], + "isBlockCoverage": true + }, + { + "functionName": "getSource", + "ranges": [{ "startOffset": 2036, "endOffset": 2185, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "getFlags", + "ranges": [{ "startOffset": 2225, "endOffset": 2282, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toString", + "ranges": [{ "startOffset": 2322, "endOffset": 2465, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transform", + "ranges": [ + { "startOffset": 3214, "endOffset": 3547, "count": 35 }, + { "startOffset": 3310, "endOffset": 3345, "count": 0 }, + { "startOffset": 3383, "endOffset": 3466, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "576", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/regexp-tree/dist/generator/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 4032, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "gen", + "ranges": [ + { "startOffset": 184, "endOffset": 255, "count": 312 }, + { "startOffset": 248, "endOffset": 252, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "RegExp", + "ranges": [{ "startOffset": 309, "endOffset": 388, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Alternative", + "ranges": [ + { "startOffset": 405, "endOffset": 492, "count": 37 }, + { "startOffset": 463, "endOffset": 468, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "Disjunction", + "ranges": [{ "startOffset": 509, "endOffset": 592, "count": 5 }], + "isBlockCoverage": true + }, + { + "functionName": "Group", + "ranges": [ + { "startOffset": 603, "endOffset": 913, "count": 50 }, + { "startOffset": 741, "endOffset": 827, "count": 0 }, + { "startOffset": 871, "endOffset": 912, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "Backreference", + "ranges": [{ "startOffset": 932, "endOffset": 1232, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Assertion", + "ranges": [ + { "startOffset": 1247, "endOffset": 1939, "count": 8 }, + { "startOffset": 1305, "endOffset": 1314, "count": 4 }, + { "startOffset": 1400, "endOffset": 1615, "count": 0 }, + { "startOffset": 1623, "endOffset": 1844, "count": 0 }, + { "startOffset": 1852, "endOffset": 1929, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "CharacterClass", + "ranges": [ + { "startOffset": 1959, "endOffset": 2160, "count": 20 }, + { "startOffset": 2119, "endOffset": 2159, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "ClassRange", + "ranges": [{ "startOffset": 2176, "endOffset": 2255, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Repetition", + "ranges": [{ "startOffset": 2271, "endOffset": 2363, "count": 30 }], + "isBlockCoverage": true + }, + { + "functionName": "Quantifier", + "ranges": [ + { "startOffset": 2379, "endOffset": 3116, "count": 30 }, + { "startOffset": 2470, "endOffset": 2475, "count": 0 }, + { "startOffset": 2509, "endOffset": 2518, "count": 0 }, + { "startOffset": 2525, "endOffset": 2534, "count": 0 }, + { "startOffset": 2604, "endOffset": 2983, "count": 0 }, + { "startOffset": 2990, "endOffset": 3068, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "Char", + "ranges": [ + { "startOffset": 3126, "endOffset": 3575, "count": 132 }, + { "startOffset": 3208, "endOffset": 3341, "count": 122 }, + { "startOffset": 3261, "endOffset": 3307, "count": 30 }, + { "startOffset": 3307, "endOffset": 3341, "count": 92 }, + { "startOffset": 3349, "endOffset": 3360, "count": 0 }, + { "startOffset": 3367, "endOffset": 3382, "count": 0 }, + { "startOffset": 3389, "endOffset": 3400, "count": 0 }, + { "startOffset": 3407, "endOffset": 3422, "count": 0 }, + { "startOffset": 3429, "endOffset": 3444, "count": 0 }, + { "startOffset": 3451, "endOffset": 3485, "count": 10 }, + { "startOffset": 3493, "endOffset": 3565, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "UnicodeProperty", + "ranges": [{ "startOffset": 3596, "endOffset": 3892, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "577", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/regexp-tree/dist/parser/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 741, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "regexpTreeParser.parse", + "ranges": [{ "startOffset": 504, "endOffset": 583, "count": 4 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "578", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/regexp-tree/dist/parser/generated/regexp-tree.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 103314, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 394, "endOffset": 1034, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "sliceIterator", + "ranges": [{ "startOffset": 408, "endOffset": 801, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 809, "endOffset": 1031, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_toConsumableArray", + "ranges": [ + { "startOffset": 1039, "endOffset": 1234, "count": 981 }, + { "startOffset": 1163, "endOffset": 1184, "count": 1357 }, + { "startOffset": 1199, "endOffset": 1232, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "yyloc", + "ranges": [ + { "startOffset": 1478, "endOffset": 1866, "count": 943 }, + { "startOffset": 1565, "endOffset": 1626, "count": 0 }, + { "startOffset": 1628, "endOffset": 1865, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "productions", + "ranges": [{ "startOffset": 1970, "endOffset": 2033, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "productions", + "ranges": [{ "startOffset": 2043, "endOffset": 2239, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "productions", + "ranges": [{ "startOffset": 2249, "endOffset": 2312, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "productions", + "ranges": [{ "startOffset": 2322, "endOffset": 2361, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "productions", + "ranges": [{ "startOffset": 2371, "endOffset": 2434, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "productions", + "ranges": [{ "startOffset": 2444, "endOffset": 2523, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "productions", + "ranges": [{ "startOffset": 2533, "endOffset": 2596, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "productions", + "ranges": [{ "startOffset": 2606, "endOffset": 2669, "count": 29 }], + "isBlockCoverage": true + }, + { + "functionName": "productions", + "ranges": [ + { "startOffset": 2679, "endOffset": 2965, "count": 5 }, + { "startOffset": 2829, "endOffset": 2882, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "productions", + "ranges": [ + { "startOffset": 2975, "endOffset": 3236, "count": 34 }, + { "startOffset": 3052, "endOffset": 3084, "count": 0 }, + { "startOffset": 3109, "endOffset": 3143, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "productions", + "ranges": [{ "startOffset": 3246, "endOffset": 3285, "count": 34 }], + "isBlockCoverage": true + }, + { + "functionName": "productions", + "ranges": [{ "startOffset": 3295, "endOffset": 3380, "count": 145 }], + "isBlockCoverage": true + }, + { + "functionName": "productions", + "ranges": [{ "startOffset": 3390, "endOffset": 3504, "count": 8 }], + "isBlockCoverage": true + }, + { + "functionName": "productions", + "ranges": [ + { "startOffset": 3514, "endOffset": 3708, "count": 137 }, + { "startOffset": 3601, "endOffset": 3706, "count": 30 } + ], + "isBlockCoverage": true + }, + { + "functionName": "productions", + "ranges": [{ "startOffset": 3718, "endOffset": 3792, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "productions", + "ranges": [{ "startOffset": 3802, "endOffset": 3876, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "productions", + "ranges": [{ "startOffset": 3886, "endOffset": 3962, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "productions", + "ranges": [{ "startOffset": 3972, "endOffset": 4048, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "productions", + "ranges": [{ "startOffset": 4058, "endOffset": 4190, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "productions", + "ranges": [{ "startOffset": 4200, "endOffset": 4352, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "productions", + "ranges": [{ "startOffset": 4362, "endOffset": 4495, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "productions", + "ranges": [{ "startOffset": 4505, "endOffset": 4658, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "productions", + "ranges": [{ "startOffset": 4668, "endOffset": 4731, "count": 92 }], + "isBlockCoverage": true + }, + { + "functionName": "productions", + "ranges": [{ "startOffset": 4741, "endOffset": 4804, "count": 20 }], + "isBlockCoverage": true + }, + { + "functionName": "productions", + "ranges": [{ "startOffset": 4814, "endOffset": 4877, "count": 25 }], + "isBlockCoverage": true + }, + { + "functionName": "productions", + "ranges": [{ "startOffset": 4888, "endOffset": 4974, "count": 92 }], + "isBlockCoverage": true + }, + { + "functionName": "productions", + "ranges": [{ "startOffset": 4985, "endOffset": 5098, "count": 30 }], + "isBlockCoverage": true + }, + { + "functionName": "productions", + "ranges": [{ "startOffset": 5109, "endOffset": 5222, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "productions", + "ranges": [{ "startOffset": 5233, "endOffset": 5320, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "productions", + "ranges": [{ "startOffset": 5331, "endOffset": 5418, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "productions", + "ranges": [{ "startOffset": 5429, "endOffset": 5516, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "productions", + "ranges": [{ "startOffset": 5527, "endOffset": 5610, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "productions", + "ranges": [{ "startOffset": 5621, "endOffset": 5704, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "productions", + "ranges": [{ "startOffset": 5715, "endOffset": 5804, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "productions", + "ranges": [{ "startOffset": 5815, "endOffset": 5899, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "productions", + "ranges": [{ "startOffset": 5910, "endOffset": 5994, "count": 10 }], + "isBlockCoverage": true + }, + { + "functionName": "productions", + "ranges": [{ "startOffset": 6005, "endOffset": 6097, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "productions", + "ranges": [{ "startOffset": 6108, "endOffset": 6171, "count": 30 }], + "isBlockCoverage": true + }, + { + "functionName": "productions", + "ranges": [{ "startOffset": 6191, "endOffset": 6254, "count": 30 }], + "isBlockCoverage": true + }, + { + "functionName": "productions", + "ranges": [{ "startOffset": 6265, "endOffset": 6363, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "productions", + "ranges": [{ "startOffset": 6374, "endOffset": 6511, "count": 30 }], + "isBlockCoverage": true + }, + { + "functionName": "productions", + "ranges": [{ "startOffset": 6522, "endOffset": 6659, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "productions", + "ranges": [{ "startOffset": 6670, "endOffset": 6807, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "productions", + "ranges": [{ "startOffset": 6818, "endOffset": 7026, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "productions", + "ranges": [{ "startOffset": 7037, "endOffset": 7206, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "productions", + "ranges": [{ "startOffset": 7217, "endOffset": 7425, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "productions", + "ranges": [{ "startOffset": 7436, "endOffset": 7499, "count": 25 }], + "isBlockCoverage": true + }, + { + "functionName": "productions", + "ranges": [{ "startOffset": 7510, "endOffset": 7573, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "productions", + "ranges": [{ "startOffset": 7584, "endOffset": 8088, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "productions", + "ranges": [{ "startOffset": 8099, "endOffset": 8290, "count": 25 }], + "isBlockCoverage": true + }, + { + "functionName": "productions", + "ranges": [{ "startOffset": 8301, "endOffset": 8465, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "productions", + "ranges": [{ "startOffset": 8476, "endOffset": 8648, "count": 20 }], + "isBlockCoverage": true + }, + { + "functionName": "productions", + "ranges": [{ "startOffset": 8659, "endOffset": 8811, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "productions", + "ranges": [{ "startOffset": 8822, "endOffset": 8861, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "productions", + "ranges": [{ "startOffset": 8872, "endOffset": 8935, "count": 20 }], + "isBlockCoverage": true + }, + { + "functionName": "productions", + "ranges": [{ "startOffset": 8946, "endOffset": 9011, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "productions", + "ranges": [{ "startOffset": 9022, "endOffset": 9109, "count": 20 }], + "isBlockCoverage": true + }, + { + "functionName": "productions", + "ranges": [{ "startOffset": 9120, "endOffset": 9367, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "productions", + "ranges": [{ "startOffset": 9378, "endOffset": 9441, "count": 20 }], + "isBlockCoverage": true + }, + { + "functionName": "productions", + "ranges": [{ "startOffset": 9452, "endOffset": 9539, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "productions", + "ranges": [{ "startOffset": 9550, "endOffset": 9797, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "productions", + "ranges": [{ "startOffset": 9808, "endOffset": 9894, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "productions", + "ranges": [{ "startOffset": 9905, "endOffset": 9968, "count": 40 }], + "isBlockCoverage": true + }, + { + "functionName": "productions", + "ranges": [{ "startOffset": 9979, "endOffset": 10042, "count": 40 }], + "isBlockCoverage": true + }, + { + "functionName": "productions", + "ranges": [{ "startOffset": 10053, "endOffset": 10137, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lexRules", + "ranges": [{ "startOffset": 36573, "endOffset": 36606, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lexRules", + "ranges": [{ "startOffset": 36618, "endOffset": 36653, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lexRules", + "ranges": [{ "startOffset": 36663, "endOffset": 36695, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lexRules", + "ranges": [{ "startOffset": 36706, "endOffset": 36738, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lexRules", + "ranges": [{ "startOffset": 36748, "endOffset": 36780, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lexRules", + "ranges": [{ "startOffset": 36791, "endOffset": 36823, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lexRules", + "ranges": [{ "startOffset": 36834, "endOffset": 36866, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lexRules", + "ranges": [{ "startOffset": 36877, "endOffset": 36909, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lexRules", + "ranges": [{ "startOffset": 36925, "endOffset": 36964, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lexRules", + "ranges": [{ "startOffset": 36981, "endOffset": 37019, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lexRules", + "ranges": [{ "startOffset": 37039, "endOffset": 37079, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lexRules", + "ranges": [{ "startOffset": 56033, "endOffset": 56178, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lexRules", + "ranges": [{ "startOffset": 56190, "endOffset": 56223, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lexRules", + "ranges": [{ "startOffset": 56235, "endOffset": 56268, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lexRules", + "ranges": [{ "startOffset": 56288, "endOffset": 56323, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lexRules", + "ranges": [{ "startOffset": 56342, "endOffset": 56378, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lexRules", + "ranges": [{ "startOffset": 56390, "endOffset": 56426, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lexRules", + "ranges": [{ "startOffset": 56444, "endOffset": 56480, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lexRules", + "ranges": [{ "startOffset": 56547, "endOffset": 56591, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lexRules", + "ranges": [{ "startOffset": 56622, "endOffset": 56656, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lexRules", + "ranges": [{ "startOffset": 56682, "endOffset": 56716, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lexRules", + "ranges": [{ "startOffset": 56747, "endOffset": 56791, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lexRules", + "ranges": [{ "startOffset": 56817, "endOffset": 56853, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lexRules", + "ranges": [{ "startOffset": 56877, "endOffset": 56914, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lexRules", + "ranges": [{ "startOffset": 56927, "endOffset": 56963, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lexRules", + "ranges": [{ "startOffset": 56978, "endOffset": 57014, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lexRules", + "ranges": [{ "startOffset": 57057, "endOffset": 57093, "count": 30 }], + "isBlockCoverage": true + }, + { + "functionName": "lexRules", + "ranges": [{ "startOffset": 57117, "endOffset": 57381, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lexRules", + "ranges": [{ "startOffset": 57392, "endOffset": 57424, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lexRules", + "ranges": [{ "startOffset": 57435, "endOffset": 57467, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lexRules", + "ranges": [{ "startOffset": 57481, "endOffset": 57522, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lexRules", + "ranges": [{ "startOffset": 57536, "endOffset": 57577, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lexRules", + "ranges": [{ "startOffset": 57592, "endOffset": 57633, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lexRules", + "ranges": [{ "startOffset": 57648, "endOffset": 57689, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lexRules", + "ranges": [{ "startOffset": 57703, "endOffset": 57748, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lexRules", + "ranges": [{ "startOffset": 76703, "endOffset": 76842, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lexRules", + "ranges": [{ "startOffset": 76853, "endOffset": 76888, "count": 25 }], + "isBlockCoverage": true + }, + { + "functionName": "lexRules", + "ranges": [{ "startOffset": 76899, "endOffset": 76934, "count": 25 }], + "isBlockCoverage": true + }, + { + "functionName": "lexRules", + "ranges": [{ "startOffset": 76951, "endOffset": 76983, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lexRules", + "ranges": [{ "startOffset": 76996, "endOffset": 77032, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lexRules", + "ranges": [{ "startOffset": 77043, "endOffset": 77096, "count": 20 }], + "isBlockCoverage": true + }, + { + "functionName": "lexRules", + "ranges": [{ "startOffset": 77107, "endOffset": 77138, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "lexRules", + "ranges": [{ "startOffset": 77149, "endOffset": 77180, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "lexRules", + "ranges": [{ "startOffset": 77191, "endOffset": 77223, "count": 30 }], + "isBlockCoverage": true + }, + { + "functionName": "lexRules", + "ranges": [{ "startOffset": 77234, "endOffset": 77268, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lexRules", + "ranges": [{ "startOffset": 77279, "endOffset": 77311, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lexRules", + "ranges": [{ "startOffset": 77322, "endOffset": 77353, "count": 5 }], + "isBlockCoverage": true + }, + { + "functionName": "lexRules", + "ranges": [{ "startOffset": 77364, "endOffset": 77395, "count": 10 }], + "isBlockCoverage": true + }, + { + "functionName": "lexRules", + "ranges": [{ "startOffset": 77406, "endOffset": 77439, "count": 8 }], + "isBlockCoverage": true + }, + { + "functionName": "lexRules", + "ranges": [{ "startOffset": 77461, "endOffset": 77493, "count": 92 }], + "isBlockCoverage": true + }, + { + "functionName": "lexRules", + "ranges": [ + { "startOffset": 77506, "endOffset": 77636, "count": 20 }, + { "startOffset": 77592, "endOffset": 77603, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "lexRules", + "ranges": [{ "startOffset": 77647, "endOffset": 77777, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "initString", + "ranges": [{ "startOffset": 78903, "endOffset": 79394, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "getStates", + "ranges": [{ "startOffset": 79454, "endOffset": 79505, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getCurrentState", + "ranges": [{ "startOffset": 79526, "endOffset": 79608, "count": 297 }], + "isBlockCoverage": true + }, + { + "functionName": "pushState", + "ranges": [{ "startOffset": 79623, "endOffset": 79684, "count": 20 }], + "isBlockCoverage": true + }, + { + "functionName": "begin", + "ranges": [{ "startOffset": 79695, "endOffset": 79749, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "popState", + "ranges": [ + { "startOffset": 79763, "endOffset": 79890, "count": 20 }, + { "startOffset": 79858, "endOffset": 79889, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "getNextToken", + "ranges": [ + { "startOffset": 79908, "endOffset": 81528, "count": 277 }, + { "startOffset": 80012, "endOffset": 80088, "count": 0 }, + { "startOffset": 80121, "endOffset": 80166, "count": 0 }, + { "startOffset": 80347, "endOffset": 81364, "count": 8251 }, + { "startOffset": 80613, "endOffset": 80630, "count": 140 }, + { "startOffset": 80632, "endOffset": 80665, "count": 0 }, + { "startOffset": 80695, "endOffset": 81358, "count": 273 }, + { "startOffset": 80819, "endOffset": 80868, "count": 0 }, + { "startOffset": 81009, "endOffset": 81290, "count": 0 }, + { "startOffset": 81364, "endOffset": 81441, "count": 4 }, + { "startOffset": 81441, "endOffset": 81527, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "throwUnexpectedToken", + "ranges": [{ "startOffset": 81757, "endOffset": 82134, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getCursor", + "ranges": [{ "startOffset": 82149, "endOffset": 82200, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getCurrentLine", + "ranges": [{ "startOffset": 82220, "endOffset": 82281, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getCurrentColumn", + "ranges": [{ "startOffset": 82303, "endOffset": 82368, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_captureLocation", + "ranges": [ + { "startOffset": 82390, "endOffset": 83165, "count": 273 }, + { "startOffset": 82806, "endOffset": 82921, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "_toToken", + "ranges": [ + { "startOffset": 83179, "endOffset": 83650, "count": 273 }, + { "startOffset": 83293, "endOffset": 83297, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "isEOF", + "ranges": [{ "startOffset": 83661, "endOffset": 83732, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "hasMoreTokens", + "ranges": [{ "startOffset": 83751, "endOffset": 83829, "count": 1642 }], + "isBlockCoverage": true + }, + { + "functionName": "_match", + "ranges": [ + { "startOffset": 83841, "endOffset": 84132, "count": 8251 }, + { "startOffset": 83932, "endOffset": 84111, "count": 273 }, + { "startOffset": 84111, "endOffset": 84131, "count": 7978 } + ], + "isBlockCoverage": true + }, + { + "functionName": "onToken", + "ranges": [{ "startOffset": 84265, "endOffset": 84312, "count": 273 }], + "isBlockCoverage": true + }, + { + "functionName": "setOptions", + "ranges": [{ "startOffset": 84824, "endOffset": 84901, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "getOptions", + "ranges": [{ "startOffset": 84961, "endOffset": 85011, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parse", + "ranges": [ + { "startOffset": 85058, "endOffset": 89182, "count": 4 }, + { "startOffset": 85117, "endOffset": 85188, "count": 0 }, + { "startOffset": 85421, "endOffset": 85492, "count": 0 }, + { "startOffset": 85783, "endOffset": 89123, "count": 1365 }, + { "startOffset": 85803, "endOffset": 85908, "count": 0 }, + { "startOffset": 86041, "endOffset": 86118, "count": 0 }, + { "startOffset": 86212, "endOffset": 86796, "count": 273 }, + { "startOffset": 86282, "endOffset": 86569, "count": 0 }, + { "startOffset": 86796, "endOffset": 89117, "count": 1092 }, + { "startOffset": 86855, "endOffset": 88425, "count": 1088 }, + { "startOffset": 87087, "endOffset": 87091, "count": 981 }, + { "startOffset": 87092, "endOffset": 87098, "count": 107 }, + { "startOffset": 87148, "endOffset": 87178, "count": 981 }, + { "startOffset": 87179, "endOffset": 87183, "count": 0 }, + { "startOffset": 87228, "endOffset": 87643, "count": 943 }, + { "startOffset": 87309, "endOffset": 87631, "count": 1357 }, + { "startOffset": 87526, "endOffset": 87601, "count": 0 }, + { "startOffset": 87739, "endOffset": 88234, "count": 981 }, + { "startOffset": 87796, "endOffset": 87802, "count": 0 }, + { "startOffset": 87866, "endOffset": 87872, "count": 0 }, + { "startOffset": 87934, "endOffset": 87974, "count": 0 }, + { "startOffset": 88163, "endOffset": 88222, "count": 0 }, + { "startOffset": 88425, "endOffset": 89117, "count": 4 }, + { "startOffset": 88629, "endOffset": 88758, "count": 0 }, + { "startOffset": 88972, "endOffset": 89117, "count": 0 }, + { "startOffset": 89157, "endOffset": 89176, "count": 12 } + ], + "isBlockCoverage": true + }, + { + "functionName": "setTokenizer", + "ranges": [{ "startOffset": 89200, "endOffset": 89297, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getTokenizer", + "ranges": [{ "startOffset": 89315, "endOffset": 89366, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "onParseBegin", + "ranges": [{ "startOffset": 89384, "endOffset": 89436, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "onParseEnd", + "ranges": [{ "startOffset": 89452, "endOffset": 89482, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "onShift", + "ranges": [{ "startOffset": 89623, "endOffset": 89670, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "yyparse.onParseBegin", + "ranges": [ + { "startOffset": 89872, "endOffset": 90282, "count": 4 }, + { "startOffset": 90083, "endOffset": 90105, "count": 0 }, + { "startOffset": 90107, "endOffset": 90139, "count": 0 }, + { "startOffset": 90176, "endOffset": 90211, "count": 0 }, + { "startOffset": 90241, "endOffset": 90276, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "yyparse.onShift", + "ranges": [ + { "startOffset": 90369, "endOffset": 90580, "count": 273 }, + { "startOffset": 90419, "endOffset": 90458, "count": 248 }, + { "startOffset": 90460, "endOffset": 90562, "count": 25 } + ], + "isBlockCoverage": true + }, + { + "functionName": "getRange", + "ranges": [{ "startOffset": 90633, "endOffset": 90864, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "checkClassRange", + "ranges": [{ "startOffset": 90896, "endOffset": 91183, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "UnicodeProperty", + "ranges": [{ "startOffset": 91379, "endOffset": 92658, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Char", + "ranges": [ + { "startOffset": 92785, "endOffset": 95246, "count": 132 }, + { "startOffset": 92891, "endOffset": 93031, "count": 0 }, + { "startOffset": 93036, "endOffset": 93177, "count": 0 }, + { "startOffset": 93182, "endOffset": 93193, "count": 0 }, + { "startOffset": 93198, "endOffset": 94026, "count": 0 }, + { "startOffset": 94031, "endOffset": 94998, "count": 10 }, + { "startOffset": 94087, "endOffset": 94191, "count": 0 }, + { "startOffset": 94202, "endOffset": 94306, "count": 0 }, + { "startOffset": 94317, "endOffset": 94421, "count": 0 }, + { "startOffset": 94432, "endOffset": 94536, "count": 0 }, + { "startOffset": 94547, "endOffset": 94651, "count": 0 }, + { "startOffset": 94662, "endOffset": 94747, "count": 0 }, + { "startOffset": 94758, "endOffset": 94823, "count": 0 }, + { "startOffset": 94928, "endOffset": 94965, "count": 0 }, + { "startOffset": 95003, "endOffset": 95115, "count": 122 } + ], + "isBlockCoverage": true + }, + { + "functionName": "checkFlags", + "ranges": [ + { "startOffset": 95432, "endOffset": 96276, "count": 4 }, + { "startOffset": 95758, "endOffset": 95942, "count": 0 }, + { "startOffset": 95947, "endOffset": 96020, "count": 0 }, + { "startOffset": 96078, "endOffset": 96097, "count": 0 }, + { "startOffset": 96099, "endOffset": 96136, "count": 0 }, + { "startOffset": 96182, "endOffset": 96221, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "GroupRefOrDecChar", + "ranges": [{ "startOffset": 96388, "endOffset": 96719, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "validateUnicodeGroupName", + "ranges": [{ "startOffset": 97010, "endOffset": 97337, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "decodeUnicodeGroupName", + "ranges": [{ "startOffset": 98727, "endOffset": 99774, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "NamedGroupRefOrChars", + "ranges": [{ "startOffset": 99946, "endOffset": 102178, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Node", + "ranges": [ + { "startOffset": 102228, "endOffset": 102630, "count": 288 }, + { "startOffset": 102290, "endOffset": 102613, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "loc", + "ranges": [ + { "startOffset": 102666, "endOffset": 102959, "count": 4 }, + { "startOffset": 102751, "endOffset": 102958, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "unexpectedToken", + "ranges": [{ "startOffset": 102961, "endOffset": 103140, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "unexpectedEndOfInput", + "ranges": [{ "startOffset": 103142, "endOffset": 103219, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseError", + "ranges": [{ "startOffset": 103221, "endOffset": 103287, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "579", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/regexp-tree/dist/parser/unicode/parser-unicode-properties.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 9366, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "inverseMap", + "ranges": [ + { "startOffset": 6102, "endOffset": 6459, "count": 4 }, + { "startOffset": 6176, "endOffset": 6438, "count": 242 }, + { "startOffset": 6214, "endOffset": 6237, "count": 0 }, + { "startOffset": 6296, "endOffset": 6392, "count": 6 }, + { "startOffset": 6343, "endOffset": 6386, "count": 12 }, + { "startOffset": 6392, "endOffset": 6434, "count": 236 } + ], + "isBlockCoverage": true + }, + { + "functionName": "isValidName", + "ranges": [{ "startOffset": 6461, "endOffset": 6718, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isValidValue", + "ranges": [{ "startOffset": 6720, "endOffset": 6940, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isAlias", + "ranges": [{ "startOffset": 6942, "endOffset": 7085, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isGeneralCategoryName", + "ranges": [{ "startOffset": 7087, "endOffset": 7181, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isScriptCategoryName", + "ranges": [{ "startOffset": 7183, "endOffset": 7317, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isGeneralCategoryValue", + "ranges": [{ "startOffset": 7319, "endOffset": 7493, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isScriptCategoryValue", + "ranges": [{ "startOffset": 7495, "endOffset": 7647, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isBinaryPropertyName", + "ranges": [{ "startOffset": 7649, "endOffset": 7801, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getCanonicalName", + "ranges": [{ "startOffset": 7803, "endOffset": 8083, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getCanonicalValue", + "ranges": [{ "startOffset": 8085, "endOffset": 8502, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "580", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/regexp-tree/dist/traverse/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 9761, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "astTraverse", + "ranges": [ + { "startOffset": 776, "endOffset": 2814, "count": 39 }, + { "startOffset": 887, "endOffset": 891, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "visit", + "ranges": [ + { "startOffset": 992, "endOffset": 2790, "count": 2761 }, + { "startOffset": 1048, "endOffset": 1080, "count": 2731 }, + { "startOffset": 1082, "endOffset": 1103, "count": 2088 }, + { "startOffset": 1103, "endOffset": 1217, "count": 673 }, + { "startOffset": 1217, "endOffset": 2726, "count": 636 }, + { "startOffset": 1376, "endOffset": 1391, "count": 601 }, + { "startOffset": 1393, "endOffset": 1523, "count": 601 }, + { "startOffset": 1420, "endOffset": 1467, "count": 354 }, + { "startOffset": 1467, "endOffset": 1515, "count": 247 }, + { "startOffset": 1555, "endOffset": 2720, "count": 2478 }, + { "startOffset": 1654, "endOffset": 1672, "count": 0 }, + { "startOffset": 1674, "endOffset": 1709, "count": 0 }, + { "startOffset": 2289, "endOffset": 2603, "count": 110 }, + { "startOffset": 2414, "endOffset": 2542, "count": 354 }, + { "startOffset": 2603, "endOffset": 2702, "count": 2368 }, + { "startOffset": 2726, "endOffset": 2786, "count": 673 } + ], + "isBlockCoverage": true + }, + { + "functionName": "traverse", + "ranges": [ + { "startOffset": 4226, "endOffset": 9758, "count": 39 }, + { "startOffset": 4300, "endOffset": 4329, "count": 4 }, + { "startOffset": 4330, "endOffset": 4344, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 4551, "endOffset": 4696, "count": 39 }, + { "startOffset": 4653, "endOffset": 4695, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 4800, "endOffset": 4909, "count": 39 }, + { "startOffset": 4867, "endOffset": 4903, "count": 4 } + ], + "isBlockCoverage": true + }, + { + "functionName": "getPathFor", + "ranges": [{ "startOffset": 4917, "endOffset": 5120, "count": 1346 }], + "isBlockCoverage": true + }, + { + "functionName": "pre", + "ranges": [ + { "startOffset": 5236, "endOffset": 7680, "count": 673 }, + { "startOffset": 5851, "endOffset": 6340, "count": 0 }, + { "startOffset": 6474, "endOffset": 6540, "count": 112 }, + { "startOffset": 6540, "endOffset": 6708, "count": 561 }, + { "startOffset": 6589, "endOffset": 6636, "count": 102 }, + { "startOffset": 6638, "endOffset": 6708, "count": 102 }, + { "startOffset": 6742, "endOffset": 7265, "count": 214 }, + { "startOffset": 7066, "endOffset": 7121, "count": 37 }, + { "startOffset": 7155, "endOffset": 7251, "count": 0 }, + { "startOffset": 7310, "endOffset": 7401, "count": 0 }, + { "startOffset": 7401, "endOffset": 7402, "count": 636 }, + { "startOffset": 7471, "endOffset": 7490, "count": 37 }, + { "startOffset": 7492, "endOffset": 7541, "count": 0 }, + { "startOffset": 7599, "endOffset": 7650, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "post", + "ranges": [ + { "startOffset": 7764, "endOffset": 9580, "count": 673 }, + { "startOffset": 7826, "endOffset": 7855, "count": 0 }, + { "startOffset": 8478, "endOffset": 8526, "count": 102 }, + { "startOffset": 8528, "endOffset": 8600, "count": 102 }, + { "startOffset": 8635, "endOffset": 9158, "count": 102 }, + { "startOffset": 8958, "endOffset": 9013, "count": 0 }, + { "startOffset": 9047, "endOffset": 9144, "count": 0 }, + { "startOffset": 9203, "endOffset": 9296, "count": 0 }, + { "startOffset": 9367, "endOffset": 9387, "count": 0 }, + { "startOffset": 9389, "endOffset": 9439, "count": 0 }, + { "startOffset": 9498, "endOffset": 9550, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "skipProperty", + "ranges": [{ "startOffset": 9678, "endOffset": 9746, "count": 2478 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "581", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/regexp-tree/dist/traverse/node-path.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 11965, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 144, "endOffset": 686, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "defineProperties", + "ranges": [ + { "startOffset": 158, "endOffset": 474, "count": 2 }, + { "startOffset": 240, "endOffset": 472, "count": 19 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 482, "endOffset": 683, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "_classCallCheck", + "ranges": [ + { "startOffset": 691, "endOffset": 844, "count": 724 }, + { "startOffset": 781, "endOffset": 842, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1178, "endOffset": 11546, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "NodePath", + "ranges": [ + { "startOffset": 1465, "endOffset": 1976, "count": 724 }, + { "startOffset": 1578, "endOffset": 1584, "count": 0 }, + { "startOffset": 1671, "endOffset": 1677, "count": 0 }, + { "startOffset": 1761, "endOffset": 1767, "count": 0 }, + { "startOffset": 1893, "endOffset": 1910, "count": 657 }, + { "startOffset": 1911, "endOffset": 1917, "count": 67 } + ], + "isBlockCoverage": true + }, + { + "functionName": "_enforceProp", + "ranges": [{ "startOffset": 2042, "endOffset": 2247, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setChild", + "ranges": [{ "startOffset": 2705, "endOffset": 3479, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "appendChild", + "ranges": [{ "startOffset": 3870, "endOffset": 4204, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "insertChildAt", + "ranges": [{ "startOffset": 4618, "endOffset": 5114, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "remove", + "ranges": [{ "startOffset": 5193, "endOffset": 5996, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_rebuildIndex", + "ranges": [{ "startOffset": 6118, "endOffset": 6395, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isRemoved", + "ranges": [{ "startOffset": 6491, "endOffset": 6552, "count": 316 }], + "isBlockCoverage": true + }, + { + "functionName": "replace", + "ranges": [{ "startOffset": 6653, "endOffset": 7182, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "update", + "ranges": [{ "startOffset": 7268, "endOffset": 7345, "count": 73 }], + "isBlockCoverage": true + }, + { + "functionName": "getParent", + "ranges": [{ "startOffset": 7427, "endOffset": 7485, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getChild", + "ranges": [{ "startOffset": 7569, "endOffset": 7976, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hasEqualSource", + "ranges": [{ "startOffset": 8443, "endOffset": 8576, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "jsonEncode", + "ranges": [{ "startOffset": 8682, "endOffset": 8942, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getPreviousSibling", + "ranges": [{ "startOffset": 9043, "endOffset": 9300, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getNextSibling", + "ranges": [{ "startOffset": 9393, "endOffset": 9646, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getForNode", + "ranges": [ + { "startOffset": 9875, "endOffset": 10707, "count": 2692 }, + { "startOffset": 9947, "endOffset": 9976, "count": 1346 }, + { "startOffset": 9977, "endOffset": 9991, "count": 1346 }, + { "startOffset": 9992, "endOffset": 9998, "count": 1346 }, + { "startOffset": 10038, "endOffset": 10067, "count": 1346 }, + { "startOffset": 10068, "endOffset": 10082, "count": 1268 }, + { "startOffset": 10083, "endOffset": 10089, "count": 1424 }, + { "startOffset": 10130, "endOffset": 10159, "count": 1346 }, + { "startOffset": 10160, "endOffset": 10174, "count": 708 }, + { "startOffset": 10175, "endOffset": 10179, "count": 1984 }, + { "startOffset": 10199, "endOffset": 10229, "count": 78 }, + { "startOffset": 10229, "endOffset": 10271, "count": 2614 }, + { "startOffset": 10271, "endOffset": 10383, "count": 724 }, + { "startOffset": 10358, "endOffset": 10364, "count": 370 }, + { "startOffset": 10365, "endOffset": 10372, "count": 354 }, + { "startOffset": 10383, "endOffset": 10463, "count": 2614 }, + { "startOffset": 10463, "endOffset": 10554, "count": 1268 }, + { "startOffset": 10554, "endOffset": 10581, "count": 2614 }, + { "startOffset": 10581, "endOffset": 10620, "count": 1268 }, + { "startOffset": 10620, "endOffset": 10644, "count": 2614 }, + { "startOffset": 10644, "endOffset": 10681, "count": 708 }, + { "startOffset": 10681, "endOffset": 10706, "count": 2614 } + ], + "isBlockCoverage": true + }, + { + "functionName": "initRegistry", + "ranges": [ + { "startOffset": 10878, "endOffset": 11021, "count": 40 }, + { "startOffset": 10934, "endOffset": 10982, "count": 1 } + ], + "isBlockCoverage": true + }, + { + "functionName": "updateTraversingIndex", + "ranges": [{ "startOffset": 11151, "endOffset": 11285, "count": 354 }], + "isBlockCoverage": true + }, + { + "functionName": "getTraversingIndex", + "ranges": [{ "startOffset": 11394, "endOffset": 11517, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "jsonSkipLoc", + "ranges": [{ "startOffset": 11834, "endOffset": 11937, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "582", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/regexp-tree/dist/optimizer/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2820, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "optimize", + "ranges": [{ "startOffset": 708, "endOffset": 2817, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "583", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/regexp-tree/dist/utils/clone.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 524, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "clone", + "ranges": [{ "startOffset": 271, "endOffset": 523, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "584", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/regexp-tree/dist/optimizer/transforms/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1760, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "585", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/regexp-tree/dist/optimizer/transforms/char-surrogate-pair-to-single-unicode-transform.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 611, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "shouldRun", + "ranges": [{ "startOffset": 282, "endOffset": 347, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Char", + "ranges": [{ "startOffset": 357, "endOffset": 608, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "586", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/regexp-tree/dist/optimizer/transforms/char-code-to-simple-char-transform.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2149, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Char", + "ranges": [{ "startOffset": 469, "endOffset": 1114, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isSimpleRange", + "ranges": [{ "startOffset": 1229, "endOffset": 1703, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isPrintableASCIIChar", + "ranges": [{ "startOffset": 1842, "endOffset": 1935, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "needsEscape", + "ranges": [{ "startOffset": 1937, "endOffset": 2149, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "587", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/regexp-tree/dist/optimizer/transforms/char-case-insensitive-lowercase-transform.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3190, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "init", + "ranges": [{ "startOffset": 356, "endOffset": 463, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "shouldRun", + "ranges": [{ "startOffset": 478, "endOffset": 543, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Char", + "ranges": [{ "startOffset": 553, "endOffset": 1517, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isAZClassRange", + "ranges": [{ "startOffset": 1522, "endOffset": 1758, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "displaySymbolAsValue", + "ranges": [{ "startOffset": 1760, "endOffset": 2648, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getSurrogatePairFromCodePoint", + "ranges": [{ "startOffset": 2943, "endOffset": 3190, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "588", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/regexp-tree/dist/optimizer/transforms/char-class-remove-duplicates-transform.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 702, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "CharacterClass", + "ranges": [{ "startOffset": 240, "endOffset": 699, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "589", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/regexp-tree/dist/optimizer/transforms/quantifiers-merge-transform.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2911, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Repetition", + "ranges": [{ "startOffset": 393, "endOffset": 2351, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isGreedyOpenRange", + "ranges": [{ "startOffset": 2356, "endOffset": 2531, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "extractFromTo", + "ranges": [{ "startOffset": 2533, "endOffset": 2911, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "590", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/regexp-tree/dist/transform/utils.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1918, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "_toConsumableArray", + "ranges": [{ "startOffset": 238, "endOffset": 433, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "disjunctionToList", + "ranges": [{ "startOffset": 435, "endOffset": 834, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "listToDisjunction", + "ranges": [{ "startOffset": 948, "endOffset": 1120, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "increaseQuantifierByOne", + "ranges": [{ "startOffset": 1280, "endOffset": 1764, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "591", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/regexp-tree/dist/optimizer/transforms/quantifier-range-to-symbol-transform.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1147, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Quantifier", + "ranges": [{ "startOffset": 406, "endOffset": 656, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "rewriteOpenZero", + "ranges": [{ "startOffset": 661, "endOffset": 813, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "rewriteOpenOne", + "ranges": [{ "startOffset": 815, "endOffset": 966, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "rewriteExactOne", + "ranges": [{ "startOffset": 968, "endOffset": 1147, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "592", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/regexp-tree/dist/optimizer/transforms/char-class-classranges-to-chars-transform.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 604, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "ClassRange", + "ranges": [{ "startOffset": 292, "endOffset": 601, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "593", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/regexp-tree/dist/optimizer/transforms/char-class-to-meta-transform.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 5474, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "_toConsumableArray", + "ranges": [ + { "startOffset": 236, "endOffset": 431, "count": 2 }, + { "startOffset": 360, "endOffset": 381, "count": 13 }, + { "startOffset": 396, "endOffset": 429, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "init", + "ranges": [{ "startOffset": 500, "endOffset": 616, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "CharacterClass", + "ranges": [{ "startOffset": 636, "endOffset": 933, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "rewriteNumberRanges", + "ranges": [{ "startOffset": 985, "endOffset": 1264, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "rewriteWordRanges", + "ranges": [{ "startOffset": 1434, "endOffset": 3054, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3205, "endOffset": 3252, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3320, "endOffset": 3406, "count": 5 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3347, "endOffset": 3403, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3498, "endOffset": 3595, "count": 8 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3530, "endOffset": 3592, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3600, "endOffset": 3722, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "rewriteWhitespaceRanges", + "ranges": [{ "startOffset": 3727, "endOffset": 4571, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isFullNumberRange", + "ranges": [{ "startOffset": 4573, "endOffset": 4698, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isChar", + "ranges": [{ "startOffset": 4700, "endOffset": 4901, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isMetaChar", + "ranges": [{ "startOffset": 4903, "endOffset": 4977, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isLowerCaseRange", + "ranges": [{ "startOffset": 4979, "endOffset": 5103, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isUpperCaseRange", + "ranges": [{ "startOffset": 5105, "endOffset": 5229, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isUnderscore", + "ranges": [{ "startOffset": 5231, "endOffset": 5341, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isCodePoint", + "ranges": [{ "startOffset": 5343, "endOffset": 5474, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "594", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/regexp-tree/dist/optimizer/transforms/char-class-to-single-char-transform.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2124, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "CharacterClass", + "ranges": [{ "startOffset": 295, "endOffset": 1038, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isAppropriateChar", + "ranges": [{ "startOffset": 1043, "endOffset": 1230, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isMeta", + "ranges": [{ "startOffset": 1232, "endOffset": 1300, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getInverseMeta", + "ranges": [{ "startOffset": 1302, "endOffset": 1415, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hasAppropriateSiblings", + "ranges": [{ "startOffset": 1417, "endOffset": 1962, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "shouldEscape", + "ranges": [{ "startOffset": 2048, "endOffset": 2124, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "595", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/regexp-tree/dist/optimizer/transforms/char-escape-unescape-transform.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3733, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "init", + "ranges": [{ "startOffset": 267, "endOffset": 337, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Char", + "ranges": [{ "startOffset": 347, "endOffset": 527, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "shouldUnescape", + "ranges": [{ "startOffset": 532, "endOffset": 895, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "preservesInCharClass", + "ranges": [{ "startOffset": 923, "endOffset": 1205, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "preservesEscape", + "ranges": [{ "startOffset": 1207, "endOffset": 1550, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "consumeNumbers", + "ranges": [{ "startOffset": 1552, "endOffset": 2016, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isSimpleChar", + "ranges": [{ "startOffset": 2018, "endOffset": 2162, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "preservesOpeningCurlyBraceEscape", + "ranges": [{ "startOffset": 2164, "endOffset": 2948, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "preservesClosingCurlyBraceEscape", + "ranges": [{ "startOffset": 2950, "endOffset": 3733, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "596", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/regexp-tree/dist/optimizer/transforms/char-class-classranges-merge-transform.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 10425, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "init", + "ranges": [{ "startOffset": 315, "endOffset": 414, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "CharacterClass", + "ranges": [{ "startOffset": 434, "endOffset": 1295, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "sortCharClass", + "ranges": [{ "startOffset": 1837, "endOffset": 2457, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getSortValue", + "ranges": [{ "startOffset": 2544, "endOffset": 2933, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isMeta", + "ranges": [{ "startOffset": 3108, "endOffset": 3373, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isControl", + "ranges": [{ "startOffset": 3461, "endOffset": 3565, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fitsInMetas", + "ranges": [{ "startOffset": 3754, "endOffset": 3953, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fitsInMeta", + "ranges": [{ "startOffset": 4109, "endOffset": 5304, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fitsInMetaS", + "ranges": [{ "startOffset": 5393, "endOffset": 6190, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fitsInMetaD", + "ranges": [{ "startOffset": 6279, "endOffset": 6393, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fitsInMetaW", + "ranges": [{ "startOffset": 6513, "endOffset": 6855, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "combinesWithPrecedingClassRange", + "ranges": [{ "startOffset": 6999, "endOffset": 8021, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "combinesWithFollowingClassRange", + "ranges": [{ "startOffset": 8165, "endOffset": 8662, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fitsInClassRange", + "ranges": [{ "startOffset": 8798, "endOffset": 9202, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "charCombinesWithPrecedingChars", + "ranges": [{ "startOffset": 9422, "endOffset": 10138, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isMetaWCharOrCode", + "ranges": [{ "startOffset": 10140, "endOffset": 10425, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "597", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/regexp-tree/dist/optimizer/transforms/disjunction-remove-duplicates-transform.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1024, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Disjunction", + "ranges": [{ "startOffset": 474, "endOffset": 1021, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "598", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/regexp-tree/dist/optimizer/transforms/group-single-chars-to-char-class.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1932, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Disjunction", + "ranges": [{ "startOffset": 334, "endOffset": 830, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "RegExp", + "ranges": [{ "startOffset": 862, "endOffset": 965, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Group", + "ranges": [{ "startOffset": 976, "endOffset": 1167, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "shouldProcess", + "ranges": [{ "startOffset": 1172, "endOffset": 1932, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "599", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/regexp-tree/dist/optimizer/transforms/remove-empty-group-transform.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 599, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Group", + "ranges": [{ "startOffset": 265, "endOffset": 596, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "600", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/regexp-tree/dist/optimizer/transforms/ungroup-transform.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2292, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "_toConsumableArray", + "ranges": [{ "startOffset": 209, "endOffset": 404, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Group", + "ranges": [{ "startOffset": 434, "endOffset": 1738, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hasAppropriateSiblings", + "ranges": [{ "startOffset": 1743, "endOffset": 2292, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "601", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/regexp-tree/dist/optimizer/transforms/combine-repeating-patterns-transform.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 4991, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "_toConsumableArray", + "ranges": [{ "startOffset": 125, "endOffset": 320, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Alternative", + "ranges": [{ "startOffset": 693, "endOffset": 1361, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "combineRepeatingPatternLeft", + "ranges": [{ "startOffset": 1390, "endOffset": 2724, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "combineWithPreviousRepetition", + "ranges": [{ "startOffset": 2757, "endOffset": 3845, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "combineRepetitionWithPrevious", + "ranges": [{ "startOffset": 3878, "endOffset": 4991, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "602", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/regexp-tree/dist/interpreter/finite-automaton/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1150, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "toNFA", + "ranges": [{ "startOffset": 645, "endOffset": 713, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toDFA", + "ranges": [{ "startOffset": 925, "endOffset": 993, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "test", + "ranges": [{ "startOffset": 1065, "endOffset": 1147, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "603", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/regexp-tree/dist/interpreter/finite-automaton/nfa/nfa.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 7868, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 146, "endOffset": 786, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "sliceIterator", + "ranges": [{ "startOffset": 160, "endOffset": 553, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 561, "endOffset": 783, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 810, "endOffset": 1352, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "defineProperties", + "ranges": [ + { "startOffset": 824, "endOffset": 1140, "count": 1 }, + { "startOffset": 906, "endOffset": 1138, "count": 5 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 1148, "endOffset": 1349, "count": 1 }, + { "startOffset": 1284, "endOffset": 1327, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "_toConsumableArray", + "ranges": [{ "startOffset": 1357, "endOffset": 1552, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_classCallCheck", + "ranges": [{ "startOffset": 1554, "endOffset": 1707, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2217, "endOffset": 7842, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "NFA", + "ranges": [{ "startOffset": 2233, "endOffset": 2351, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "matches", + "ranges": [{ "startOffset": 2482, "endOffset": 2552, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getAlphabet", + "ranges": [{ "startOffset": 2654, "endOffset": 3078, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getAcceptingStates", + "ranges": [{ "startOffset": 3186, "endOffset": 3398, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getAcceptingStateNumbers", + "ranges": [{ "startOffset": 3512, "endOffset": 4520, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getTransitionTable", + "ranges": [{ "startOffset": 4632, "endOffset": 7818, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "604", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/regexp-tree/dist/interpreter/finite-automaton/special-symbols.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 326, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "605", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/regexp-tree/dist/interpreter/finite-automaton/dfa/dfa.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 11436, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 144, "endOffset": 686, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "defineProperties", + "ranges": [ + { "startOffset": 158, "endOffset": 474, "count": 1 }, + { "startOffset": 240, "endOffset": 472, "count": 10 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 482, "endOffset": 683, "count": 1 }, + { "startOffset": 618, "endOffset": 661, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "_toConsumableArray", + "ranges": [{ "startOffset": 691, "endOffset": 886, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_classCallCheck", + "ranges": [{ "startOffset": 888, "endOffset": 1041, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1268, "endOffset": 11410, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "DFA", + "ranges": [{ "startOffset": 1284, "endOffset": 1361, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "minimize", + "ranges": [{ "startOffset": 1452, "endOffset": 1683, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getAlphabet", + "ranges": [{ "startOffset": 1782, "endOffset": 1850, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getAcceptingStateNumbers", + "ranges": [{ "startOffset": 1957, "endOffset": 2198, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getOriginaAcceptingStateNumbers", + "ranges": [{ "startOffset": 2321, "endOffset": 2585, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setTransitionTable", + "ranges": [{ "startOffset": 2683, "endOffset": 2762, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setAcceptingStateNumbers", + "ranges": [{ "startOffset": 2866, "endOffset": 2971, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getTransitionTable", + "ranges": [{ "startOffset": 3092, "endOffset": 8688, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_remapStateNumbers", + "ranges": [{ "startOffset": 8862, "endOffset": 10511, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getOriginalTransitionTable", + "ranges": [{ "startOffset": 10680, "endOffset": 10923, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "matches", + "ranges": [{ "startOffset": 11029, "endOffset": 11386, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "606", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/regexp-tree/dist/interpreter/finite-automaton/dfa/dfa-minimizer.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 12415, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 217, "endOffset": 857, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "sliceIterator", + "ranges": [{ "startOffset": 231, "endOffset": 624, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 632, "endOffset": 854, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_toArray", + "ranges": [{ "startOffset": 862, "endOffset": 939, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_toConsumableArray", + "ranges": [{ "startOffset": 941, "endOffset": 1136, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "minimize", + "ranges": [{ "startOffset": 1333, "endOffset": 10471, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "sameRow", + "ranges": [{ "startOffset": 10473, "endOffset": 10895, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "areEquivalent", + "ranges": [{ "startOffset": 11005, "endOffset": 11773, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "goToSameSet", + "ranges": [{ "startOffset": 11828, "endOffset": 12371, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "607", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/regexp-tree/dist/interpreter/finite-automaton/nfa/nfa-from-regexp.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2268, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "_toConsumableArray", + "ranges": [{ "startOffset": 125, "endOffset": 320, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "gen", + "ranges": [{ "startOffset": 631, "endOffset": 824, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "RegExp", + "ranges": [{ "startOffset": 878, "endOffset": 1032, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Alternative", + "ranges": [{ "startOffset": 1049, "endOffset": 1200, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Disjunction", + "ranges": [{ "startOffset": 1217, "endOffset": 1297, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Repetition", + "ranges": [{ "startOffset": 1313, "endOffset": 1666, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Char", + "ranges": [{ "startOffset": 1676, "endOffset": 1843, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Group", + "ranges": [{ "startOffset": 1854, "endOffset": 1913, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "build", + "ranges": [{ "startOffset": 2001, "endOffset": 2265, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "608", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/regexp-tree/dist/interpreter/finite-automaton/nfa/builders.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 5212, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "char", + "ranges": [{ "startOffset": 480, "endOffset": 655, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "e", + "ranges": [{ "startOffset": 881, "endOffset": 921, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "altPair", + "ranges": [{ "startOffset": 1177, "endOffset": 1363, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "alt", + "ranges": [{ "startOffset": 1461, "endOffset": 2310, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "orPair", + "ranges": [{ "startOffset": 2492, "endOffset": 2906, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "or", + "ranges": [{ "startOffset": 3006, "endOffset": 3879, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "repExplicit", + "ranges": [{ "startOffset": 4022, "endOffset": 4424, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "rep", + "ranges": [{ "startOffset": 4523, "endOffset": 4672, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "plusRep", + "ranges": [{ "startOffset": 4758, "endOffset": 4859, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "questionRep", + "ranges": [{ "startOffset": 4953, "endOffset": 5058, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "609", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/regexp-tree/dist/interpreter/finite-automaton/nfa/nfa-state.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 7603, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 144, "endOffset": 686, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "defineProperties", + "ranges": [ + { "startOffset": 158, "endOffset": 474, "count": 1 }, + { "startOffset": 240, "endOffset": 472, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 482, "endOffset": 683, "count": 1 }, + { "startOffset": 618, "endOffset": 661, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "_classCallCheck", + "ranges": [{ "startOffset": 691, "endOffset": 844, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_possibleConstructorReturn", + "ranges": [{ "startOffset": 846, "endOffset": 1086, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_inherits", + "ranges": [ + { "startOffset": 1088, "endOffset": 1582, "count": 1 }, + { "startOffset": 1168, "endOffset": 1190, "count": 0 }, + { "startOffset": 1192, "endOffset": 1296, "count": 0 }, + { "startOffset": 1546, "endOffset": 1579, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1849, "endOffset": 7567, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "NFAState", + "ranges": [{ "startOffset": 1903, "endOffset": 2091, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "matches", + "ranges": [{ "startOffset": 2520, "endOffset": 5944, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getEpsilonClosure", + "ranges": [{ "startOffset": 6105, "endOffset": 7538, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "610", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/regexp-tree/dist/interpreter/finite-automaton/state.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2290, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 289, "endOffset": 831, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "defineProperties", + "ranges": [ + { "startOffset": 303, "endOffset": 619, "count": 1 }, + { "startOffset": 385, "endOffset": 617, "count": 3 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 627, "endOffset": 828, "count": 1 }, + { "startOffset": 763, "endOffset": 806, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "_classCallCheck", + "ranges": [{ "startOffset": 836, "endOffset": 989, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1003, "endOffset": 2262, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "State", + "ranges": [{ "startOffset": 1019, "endOffset": 1464, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getTransitions", + "ranges": [{ "startOffset": 1584, "endOffset": 1649, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addTransition", + "ranges": [{ "startOffset": 1751, "endOffset": 1873, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getTransitionsOnSymbol", + "ranges": [{ "startOffset": 1987, "endOffset": 2236, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "611", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/regexp-tree/dist/compat-transpiler/runtime/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3238, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 418, "endOffset": 960, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "defineProperties", + "ranges": [ + { "startOffset": 432, "endOffset": 748, "count": 1 }, + { "startOffset": 514, "endOffset": 746, "count": 4 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 756, "endOffset": 957, "count": 1 }, + { "startOffset": 892, "endOffset": 935, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "_classCallCheck", + "ranges": [{ "startOffset": 965, "endOffset": 1118, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1137, "endOffset": 3187, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "RegExpTree", + "ranges": [{ "startOffset": 1533, "endOffset": 2068, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "test", + "ranges": [{ "startOffset": 2188, "endOffset": 2253, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "compile", + "ranges": [{ "startOffset": 2361, "endOffset": 2432, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toString", + "ranges": [{ "startOffset": 2542, "endOffset": 2716, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "exec", + "ranges": [{ "startOffset": 2818, "endOffset": 3156, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "612", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/regexp-match-indices/polyfill.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1404, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "getPolyfill", + "ranges": [ + { "startOffset": 1141, "endOffset": 1335, "count": 1 }, + { "startOffset": 1268, "endOffset": 1304, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "613", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/regexp-match-indices/shim.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1056, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "shim", + "ranges": [{ "startOffset": 844, "endOffset": 998, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "614", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber-expressions/dist/cjs/src/GroupBuilder.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1583, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 70, "endOffset": 151, "count": 1 }, + { "startOffset": 128, "endOffset": 148, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 307, "endOffset": 1506, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "GroupBuilder", + "ranges": [{ "startOffset": 325, "endOffset": 420, "count": 121 }], + "isBlockCoverage": true + }, + { + "functionName": "GroupBuilder.add", + "ranges": [{ "startOffset": 454, "endOffset": 532, "count": 106 }], + "isBlockCoverage": true + }, + { + "functionName": "GroupBuilder.build", + "ranges": [ + { "startOffset": 569, "endOffset": 1010, "count": 162 }, + { "startOffset": 865, "endOffset": 875, "count": 81 }, + { "startOffset": 876, "endOffset": 887, "count": 81 }, + { "startOffset": 913, "endOffset": 923, "count": 81 }, + { "startOffset": 924, "endOffset": 935, "count": 81 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 693, "endOffset": 750, "count": 135 }], + "isBlockCoverage": true + }, + { + "functionName": "GroupBuilder.setNonCapturing", + "ranges": [{ "startOffset": 1057, "endOffset": 1108, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1187, "endOffset": 1249, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "GroupBuilder.moveChildrenTo", + "ranges": [{ "startOffset": 1357, "endOffset": 1478, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1418, "endOffset": 1470, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "615", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber-expressions/dist/cjs/src/Group.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 637, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 104, "endOffset": 574, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Group", + "ranges": [{ "startOffset": 122, "endOffset": 287, "count": 162 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [ + { "startOffset": 356, "endOffset": 491, "count": 9 }, + { "startOffset": 417, "endOffset": 425, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 447, "endOffset": 479, "count": 18 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "616", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber-expressions/dist/cjs/src/CucumberExpressionGenerator.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 6967, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__values", + "ranges": [{ "startOffset": 56, "endOffset": 473, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 531, "endOffset": 612, "count": 3 }, + { "startOffset": 589, "endOffset": 609, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1011, "endOffset": 6758, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "CucumberExpressionGenerator", + "ranges": [{ "startOffset": 1029, "endOffset": 1135, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "CucumberExpressionGenerator.generateExpressions", + "ranges": [{ "startOffset": 1200, "endOffset": 5647, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "CucumberExpressionGenerator.createParameterTypeMatchers", + "ranges": [{ "startOffset": 5721, "endOffset": 6466, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "CucumberExpressionGenerator.createParameterTypeMatchers2", + "ranges": [{ "startOffset": 6531, "endOffset": 6715, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "escape", + "ranges": [{ "startOffset": 6810, "endOffset": 6911, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "617", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber-expressions/dist/cjs/src/CombinatorialGeneratedExpressionFactory.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2197, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 70, "endOffset": 151, "count": 1 }, + { "startOffset": 128, "endOffset": 148, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 449, "endOffset": 2066, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "CombinatorialGeneratedExpressionFactory", + "ranges": [{ "startOffset": 467, "endOffset": 746, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "CombinatorialGeneratedExpressionFactory.generateExpressions", + "ranges": [{ "startOffset": 823, "endOffset": 982, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "CombinatorialGeneratedExpressionFactory.generatePermutations", + "ranges": [{ "startOffset": 1061, "endOffset": 2011, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "618", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber-expressions/dist/cjs/src/GeneratedExpression.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3433, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__read", + "ranges": [{ "startOffset": 52, "endOffset": 502, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__spreadArray", + "ranges": [{ "startOffset": 556, "endOffset": 883, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 989, "endOffset": 2469, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "GeneratedExpression", + "ranges": [{ "startOffset": 1007, "endOffset": 1179, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1262, "endOffset": 1447, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1775, "endOffset": 1934, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2204, "endOffset": 2372, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getParameterInfo", + "ranges": [{ "startOffset": 2513, "endOffset": 3150, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "format", + "ranges": [{ "startOffset": 3151, "endOffset": 3385, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "619", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber-expressions/dist/cjs/src/ParameterType.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 4698, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__values", + "ranges": [ + { "startOffset": 56, "endOffset": 473, "count": 16 }, + { "startOffset": 181, "endOffset": 223, "count": 0 }, + { "startOffset": 225, "endOffset": 433, "count": 0 }, + { "startOffset": 434, "endOffset": 469, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "next", + "ranges": [{ "startOffset": 248, "endOffset": 372, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 531, "endOffset": 612, "count": 1 }, + { "startOffset": 589, "endOffset": 609, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "UNESCAPE_PATTERN", + "ranges": [{ "startOffset": 849, "endOffset": 893, "count": 10 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 930, "endOffset": 3351, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "ParameterType", + "ranges": [ + { "startOffset": 1535, "endOffset": 2309, "count": 11 }, + { "startOffset": 1864, "endOffset": 1927, "count": 0 }, + { "startOffset": 1970, "endOffset": 2021, "count": 0 }, + { "startOffset": 2070, "endOffset": 2128, "count": 0 }, + { "startOffset": 2147, "endOffset": 2214, "count": 10 } + ], + "isBlockCoverage": true + }, + { + "functionName": "transform", + "ranges": [{ "startOffset": 1890, "endOffset": 1916, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ParameterType.compare", + "ranges": [ + { "startOffset": 2338, "endOffset": 2631, "count": 35 }, + { "startOffset": 2397, "endOffset": 2425, "count": 0 }, + { "startOffset": 2427, "endOffset": 2461, "count": 0 }, + { "startOffset": 2499, "endOffset": 2527, "count": 10 }, + { "startOffset": 2529, "endOffset": 2562, "count": 10 }, + { "startOffset": 2562, "endOffset": 2588, "count": 25 }, + { "startOffset": 2588, "endOffset": 2593, "count": 0 }, + { "startOffset": 2618, "endOffset": 2623, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "ParameterType.checkParameterTypeName", + "ranges": [ + { "startOffset": 2676, "endOffset": 2957, "count": 10 }, + { "startOffset": 2752, "endOffset": 2951, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "ParameterType.isValidParameterTypeName", + "ranges": [{ "startOffset": 3004, "endOffset": 3180, "count": 10 }], + "isBlockCoverage": true + }, + { + "functionName": "ParameterType.transform", + "ranges": [{ "startOffset": 3222, "endOffset": 3322, "count": 9 }], + "isBlockCoverage": true + }, + { + "functionName": "stringArray", + "ranges": [ + { "startOffset": 3389, "endOffset": 3576, "count": 11 }, + { "startOffset": 3460, "endOffset": 3469, "count": 5 }, + { "startOffset": 3470, "endOffset": 3481, "count": 6 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 3504, "endOffset": 3572, "count": 16 }, + { "startOffset": 3565, "endOffset": 3568, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "regexpSource", + "ranges": [ + { "startOffset": 3577, "endOffset": 4232, "count": 16 }, + { "startOffset": 3769, "endOffset": 3997, "count": 64 }, + { "startOffset": 3848, "endOffset": 3987, "count": 0 }, + { "startOffset": 4008, "endOffset": 4049, "count": 0 }, + { "startOffset": 4109, "endOffset": 4128, "count": 0 }, + { "startOffset": 4130, "endOffset": 4142, "count": 0 }, + { "startOffset": 4180, "endOffset": 4196, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "regexpFlags", + "ranges": [ + { "startOffset": 4317, "endOffset": 4656, "count": 16 }, + { "startOffset": 4407, "endOffset": 4636, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "620", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber-expressions/dist/cjs/src/ParameterTypeMatcher.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3274, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 119, "endOffset": 3181, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "ParameterTypeMatcher", + "ranges": [{ "startOffset": 137, "endOffset": 595, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ParameterTypeMatcher.advanceTo", + "ranges": [{ "startOffset": 643, "endOffset": 1088, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1171, "endOffset": 1263, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1409, "endOffset": 1564, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1713, "endOffset": 1797, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1952, "endOffset": 2069, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2222, "endOffset": 2453, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2599, "endOffset": 2730, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ParameterTypeMatcher.compare", + "ranges": [{ "startOffset": 2829, "endOffset": 3145, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "621", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber-expressions/dist/cjs/src/ExpressionFactory.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 981, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 70, "endOffset": 151, "count": 2 }, + { "startOffset": 128, "endOffset": 148, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 419, "endOffset": 894, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "ExpressionFactory", + "ranges": [{ "startOffset": 437, "endOffset": 554, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ExpressionFactory.createExpression", + "ranges": [{ "startOffset": 606, "endOffset": 861, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "622", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber-expressions/dist/cjs/src/RegularExpression.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1763, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 70, "endOffset": 151, "count": 3 }, + { "startOffset": 128, "endOffset": 148, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 458, "endOffset": 1676, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "RegularExpression", + "ranges": [{ "startOffset": 476, "endOffset": 694, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "RegularExpression.match", + "ranges": [{ "startOffset": 735, "endOffset": 1437, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1519, "endOffset": 1581, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "623", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber-expressions/dist/cjs/src/ParameterTypeRegistry.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 5130, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__values", + "ranges": [ + { "startOffset": 56, "endOffset": 473, "count": 11 }, + { "startOffset": 181, "endOffset": 223, "count": 0 }, + { "startOffset": 225, "endOffset": 433, "count": 0 }, + { "startOffset": 434, "endOffset": 469, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "next", + "ranges": [{ "startOffset": 248, "endOffset": 372, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 531, "endOffset": 612, "count": 4 }, + { "startOffset": 589, "endOffset": 609, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1130, "endOffset": 5035, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "ParameterTypeRegistry", + "ranges": [{ "startOffset": 1148, "endOffset": 1344, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1437, "endOffset": 1514, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "ParameterTypeRegistry.lookupByTypeName", + "ranges": [{ "startOffset": 1633, "endOffset": 1715, "count": 22 }], + "isBlockCoverage": true + }, + { + "functionName": "ParameterTypeRegistry.lookupByRegexp", + "ranges": [{ "startOffset": 1770, "endOffset": 2648, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ParameterTypeRegistry.defineParameterType", + "ranges": [ + { "startOffset": 2708, "endOffset": 4998, "count": 11 }, + { "startOffset": 2870, "endOffset": 3267, "count": 0 }, + { "startOffset": 3476, "endOffset": 4753, "count": 16 }, + { "startOffset": 3605, "endOffset": 3702, "count": 6 }, + { "startOffset": 3988, "endOffset": 4053, "count": 10 }, + { "startOffset": 4054, "endOffset": 4111, "count": 8 }, + { "startOffset": 4113, "endOffset": 4466, "count": 0 }, + { "startOffset": 4772, "endOffset": 4813, "count": 0 }, + { "startOffset": 4885, "endOffset": 4904, "count": 0 }, + { "startOffset": 4906, "endOffset": 4918, "count": 0 }, + { "startOffset": 4964, "endOffset": 4980, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "624", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber-expressions/dist/cjs/src/defineDefaultParameterTypes.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2643, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 70, "endOffset": 151, "count": 1 }, + { "startOffset": 128, "endOffset": 148, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "defineDefaultParameterTypes", + "ranges": [{ "startOffset": 537, "endOffset": 2540, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 682, "endOffset": 743, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 860, "endOffset": 925, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1041, "endOffset": 1067, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 1188, "endOffset": 1276, "count": 9 }, + { "startOffset": 1219, "endOffset": 1224, "count": 0 }, + { "startOffset": 1225, "endOffset": 1230, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1393, "endOffset": 1419, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1538, "endOffset": 1603, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1727, "endOffset": 1780, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1901, "endOffset": 1962, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2084, "endOffset": 2145, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2266, "endOffset": 2327, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2454, "endOffset": 2515, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "625", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/models/test_case_hook_definition.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1142, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 70, "endOffset": 151, "count": 1 }, + { "startOffset": 128, "endOffset": 148, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 396, "endOffset": 440, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "TestCaseHookDefinition", + "ranges": [{ "startOffset": 446, "endOffset": 666, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "appliesToTestCase", + "ranges": [{ "startOffset": 671, "endOffset": 774, "count": 6 }], + "isBlockCoverage": true + }, + { + "functionName": "getInvocationParameters", + "ranges": [{ "startOffset": 779, "endOffset": 1044, "count": 6 }], + "isBlockCoverage": true + }, + { + "functionName": "getInvalidCodeLengthMessage", + "ranges": [{ "startOffset": 889, "endOffset": 944, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "626", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/models/definition.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 964, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 100, "endOffset": 163, "count": 17 }], + "isBlockCoverage": true + }, + { + "functionName": "Definition", + "ranges": [{ "startOffset": 169, "endOffset": 412, "count": 17 }], + "isBlockCoverage": true + }, + { + "functionName": "buildInvalidCodeLengthMessage", + "ranges": [{ "startOffset": 417, "endOffset": 744, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "baseGetInvalidCodeLengthMessage", + "ranges": [{ "startOffset": 749, "endOffset": 893, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "627", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/models/test_step_hook_definition.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1093, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 70, "endOffset": 151, "count": 1 }, + { "startOffset": 128, "endOffset": 148, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 396, "endOffset": 430, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "TestStepHookDefinition", + "ranges": [{ "startOffset": 436, "endOffset": 617, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "appliesToTestCase", + "ranges": [{ "startOffset": 622, "endOffset": 725, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getInvocationParameters", + "ranges": [{ "startOffset": 730, "endOffset": 995, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "628", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/models/test_run_hook_definition.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 433, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 70, "endOffset": 151, "count": 1 }, + { "startOffset": 128, "endOffset": 148, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "629", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/models/step_definition.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1660, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 70, "endOffset": 151, "count": 2 }, + { "startOffset": 128, "endOffset": 148, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 506, "endOffset": 542, "count": 13 }], + "isBlockCoverage": true + }, + { + "functionName": "StepDefinition", + "ranges": [{ "startOffset": 548, "endOffset": 711, "count": 13 }], + "isBlockCoverage": true + }, + { + "functionName": "getInvocationParameters", + "ranges": [ + { "startOffset": 716, "endOffset": 1458, "count": 9 }, + { "startOffset": 943, "endOffset": 1229, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 848, "endOffset": 876, "count": 9 }], + "isBlockCoverage": true + }, + { + "functionName": "dataTable", + "ranges": [{ "startOffset": 1067, "endOffset": 1105, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "docString", + "ranges": [{ "startOffset": 1134, "endOffset": 1154, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getInvalidCodeLengthMessage", + "ranges": [{ "startOffset": 1288, "endOffset": 1342, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "matchesStepName", + "ranges": [{ "startOffset": 1463, "endOffset": 1580, "count": 117 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "630", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/models/data_table.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1463, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 99, "endOffset": 107, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "DataTable", + "ranges": [ + { "startOffset": 113, "endOffset": 361, "count": 2 }, + { "startOffset": 182, "endOffset": 234, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 299, "endOffset": 343, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 322, "endOffset": 342, "count": 8 }], + "isBlockCoverage": true + }, + { + "functionName": "hashes", + "ranges": [{ "startOffset": 366, "endOffset": 685, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "raw", + "ranges": [{ "startOffset": 690, "endOffset": 742, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "rows", + "ranges": [{ "startOffset": 747, "endOffset": 837, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "rowsHash", + "ranges": [ + { "startOffset": 842, "endOffset": 1236, "count": 2 }, + { "startOffset": 1001, "endOffset": 1128, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 937, "endOffset": 962, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1177, "endOffset": 1205, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "transpose", + "ranges": [{ "startOffset": 1241, "endOffset": 1393, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "631", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/support_code_library_builder/validate_arguments.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2445, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "predicate", + "ranges": [{ "startOffset": 186, "endOffset": 260, "count": 17 }], + "isBlockCoverage": true + }, + { + "functionName": "predicate", + "ranges": [ + { "startOffset": 370, "endOffset": 479, "count": 17 }, + { "startOffset": 434, "endOffset": 472, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "predicate", + "ranges": [{ "startOffset": 541, "endOffset": 611, "count": 17 }], + "isBlockCoverage": true + }, + { + "functionName": "predicate", + "ranges": [ + { "startOffset": 1018, "endOffset": 1137, "count": 2 }, + { "startOffset": 1087, "endOffset": 1122, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "predicate", + "ranges": [{ "startOffset": 1441, "endOffset": 1560, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "predicate", + "ranges": [{ "startOffset": 1814, "endOffset": 1933, "count": 13 }], + "isBlockCoverage": true + }, + { + "functionName": "validateArguments", + "ranges": [{ "startOffset": 2114, "endOffset": 2398, "count": 17 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 2204, "endOffset": 2394, "count": 66 }, + { "startOffset": 2281, "endOffset": 2388, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "632", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/support_code_library_builder/world.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 376, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 95, "endOffset": 136, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "World", + "ranges": [{ "startOffset": 142, "endOffset": 315, "count": 3 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "633", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/support_code_library_builder/get_definition_line_and_uri.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1282, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 70, "endOffset": 151, "count": 2 }, + { "startOffset": 122, "endOffset": 127, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "getDefinitionLineAndUri", + "ranges": [{ "startOffset": 527, "endOffset": 1226, "count": 17 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 763, "endOffset": 834, "count": 68 }, + { "startOffset": 804, "endOffset": 834, "count": 51 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "634", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/error-stack-parser/error-stack-parser.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 8713, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 1, "endOffset": 471, "count": 1 }, + { "startOffset": 210, "endOffset": 223, "count": 0 }, + { "startOffset": 225, "endOffset": 295, "count": 0 }, + { "startOffset": 398, "endOffset": 469, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "ErrorStackParser", + "ranges": [{ "startOffset": 478, "endOffset": 8709, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "ErrorStackParser$$parse", + "ranges": [ + { "startOffset": 942, "endOffset": 1474, "count": 17 }, + { "startOffset": 1092, "endOffset": 1154, "count": 0 }, + { "startOffset": 1285, "endOffset": 1464, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "ErrorStackParser$$extractLocation", + "ranges": [ + { "startOffset": 1591, "endOffset": 2013, "count": 170 }, + { "startOffset": 1752, "endOffset": 1801, "count": 0 }, + { "startOffset": 1966, "endOffset": 1978, "count": 0 }, + { "startOffset": 1989, "endOffset": 2001, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "ErrorStackParser$$parseV8OrIE", + "ranges": [{ "startOffset": 2037, "endOffset": 3888, "count": 17 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2143, "endOffset": 2234, "count": 187 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 2276, "endOffset": 3870, "count": 170 }, + { "startOffset": 2342, "endOffset": 2563, "count": 0 }, + { "startOffset": 3092, "endOffset": 3107, "count": 0 }, + { "startOffset": 3362, "endOffset": 3377, "count": 0 }, + { "startOffset": 3441, "endOffset": 3453, "count": 0 }, + { "startOffset": 3541, "endOffset": 3552, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "ErrorStackParser$$parseFFOrSafari", + "ranges": [{ "startOffset": 3916, "endOffset": 5432, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ErrorStackParser$$parseOpera", + "ranges": [{ "startOffset": 5455, "endOffset": 5860, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ErrorStackParser$$parseOpera9", + "ranges": [{ "startOffset": 5884, "endOffset": 6488, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ErrorStackParser$$parseOpera10", + "ranges": [{ "startOffset": 6513, "endOffset": 7273, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ErrorStackParser$$parseOpera11", + "ranges": [{ "startOffset": 7360, "endOffset": 8700, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "635", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/stackframe/stackframe.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 4944, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 1, "endOffset": 409, "count": 1 }, + { "startOffset": 210, "endOffset": 223, "count": 0 }, + { "startOffset": 225, "endOffset": 275, "count": 0 }, + { "startOffset": 357, "endOffset": 407, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 416, "endOffset": 4940, "count": 1 }, + { "startOffset": 3793, "endOffset": 4094, "count": 4 }, + { "startOffset": 4146, "endOffset": 4567, "count": 2 }, + { "startOffset": 4618, "endOffset": 4914, "count": 3 } + ], + "isBlockCoverage": true + }, + { + "functionName": "_isNumber", + "ranges": [{ "startOffset": 451, "endOffset": 533, "count": 340 }], + "isBlockCoverage": true + }, + { + "functionName": "_capitalize", + "ranges": [{ "startOffset": 539, "endOffset": 635, "count": 868 }], + "isBlockCoverage": true + }, + { + "functionName": "_getter", + "ranges": [{ "startOffset": 641, "endOffset": 735, "count": 9 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 678, "endOffset": 728, "count": 34 }], + "isBlockCoverage": true + }, + { + "functionName": "StackFrame", + "ranges": [ + { "startOffset": 1096, "endOffset": 1342, "count": 170 }, + { "startOffset": 1141, "endOffset": 1148, "count": 0 }, + { "startOffset": 1196, "endOffset": 1336, "count": 1870 }, + { "startOffset": 1243, "endOffset": 1326, "count": 850 } + ], + "isBlockCoverage": true + }, + { + "functionName": "getArgs", + "ranges": [{ "startOffset": 1390, "endOffset": 1442, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setArgs", + "ranges": [{ "startOffset": 1461, "endOffset": 1661, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getEvalOrigin", + "ranges": [{ "startOffset": 1687, "endOffset": 1745, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setEvalOrigin", + "ranges": [{ "startOffset": 1770, "endOffset": 2091, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toString", + "ranges": [{ "startOffset": 2112, "endOffset": 2846, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "StackFrame$$fromString", + "ranges": [{ "startOffset": 2883, "endOffset": 3740, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3960, "endOffset": 4069, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3993, "endOffset": 4058, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4313, "endOffset": 4542, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 4346, "endOffset": 4531, "count": 340 }, + { "startOffset": 4395, "endOffset": 4480, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4782, "endOffset": 4890, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4815, "endOffset": 4879, "count": 510 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "636", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/filter_stack_trace.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1530, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 70, "endOffset": 151, "count": 1 }, + { "startOffset": 122, "endOffset": 127, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "isFileNameInCucumber", + "ranges": [{ "startOffset": 549, "endOffset": 704, "count": 51 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 624, "endOffset": 700, "count": 119 }], + "isBlockCoverage": true + }, + { + "functionName": "filterStackTrace", + "ranges": [{ "startOffset": 705, "endOffset": 961, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isErrorInCucumber", + "ranges": [{ "startOffset": 962, "endOffset": 1146, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isFrameInCucumber", + "ranges": [{ "startOffset": 1147, "endOffset": 1310, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isFrameInNode", + "ranges": [{ "startOffset": 1311, "endOffset": 1483, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "637", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/support_code_library_builder/build_parameter_type.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 639, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "buildParameterType", + "ranges": [{ "startOffset": 200, "endOffset": 590, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "638", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/support_code_library_builder/sourced_parameter_type_registry.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 737, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 292, "endOffset": 329, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "defineSourcedParameterType", + "ranges": [{ "startOffset": 335, "endOffset": 504, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lookupSource", + "ranges": [{ "startOffset": 509, "endOffset": 606, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "639", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/try_require.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1089, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "tryRequire", + "ranges": [ + { "startOffset": 301, "endOffset": 1049, "count": 4 }, + { "startOffset": 379, "endOffset": 1047, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "640", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/api/run_cucumber.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 4741, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "runCucumber", + "ranges": [ + { "startOffset": 919, "endOffset": 4700, "count": 1 }, + { "startOffset": 1381, "endOffset": 1418, "count": 0 }, + { "startOffset": 2063, "endOffset": 2080, "count": 0 }, + { "startOffset": 2449, "endOffset": 2508, "count": 0 }, + { "startOffset": 3788, "endOffset": 4117, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2545, "endOffset": 2592, "count": 64 }], + "isBlockCoverage": true + }, + { + "functionName": "onStreamError", + "ranges": [{ "startOffset": 2890, "endOffset": 2925, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "onEnvelope", + "ranges": [{ "startOffset": 3435, "endOffset": 3492, "count": 5 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3818, "endOffset": 3938, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "641", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/runtime/index.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 840, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 88, "endOffset": 405, "count": 1 }, + { "startOffset": 232, "endOffset": 247, "count": 0 }, + { "startOffset": 264, "endOffset": 284, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 327, "endOffset": 354, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__exportStar", + "ranges": [{ "startOffset": 541, "endOffset": 692, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "642", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/runtime/make_runtime.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 784, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "makeRuntime", + "ranges": [ + { "startOffset": 256, "endOffset": 743, "count": 1 }, + { "startOffset": 430, "endOffset": 533, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "643", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/runtime/parallel/adapter.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 5828, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 70, "endOffset": 151, "count": 1 }, + { "startOffset": 122, "endOffset": 127, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 484, "endOffset": 682, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "ChildProcessAdapter", + "ranges": [{ "startOffset": 688, "endOffset": 981, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseWorkerMessage", + "ranges": [{ "startOffset": 986, "endOffset": 1766, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "awakenWorkers", + "ranges": [{ "startOffset": 1771, "endOffset": 2235, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "startWorker", + "ranges": [{ "startOffset": 2240, "endOffset": 3655, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "onWorkerProcessClose", + "ranges": [{ "startOffset": 3660, "endOffset": 3919, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "run", + "ranges": [{ "startOffset": 3924, "endOffset": 4543, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "nextWorkPlacement", + "ranges": [{ "startOffset": 4548, "endOffset": 4918, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "placementAt", + "ranges": [{ "startOffset": 4923, "endOffset": 5032, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "giveWork", + "ranges": [{ "startOffset": 5037, "endOffset": 5739, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "644", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/runtime/serial/adapter.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 859, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 180, "endOffset": 207, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "InProcessAdapter", + "ranges": [{ "startOffset": 213, "endOffset": 394, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "run", + "ranges": [ + { "startOffset": 399, "endOffset": 776, "count": 1 }, + { "startOffset": 525, "endOffset": 694, "count": 3 }, + { "startOffset": 632, "endOffset": 684, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "645", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/runtime/worker.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2432, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 70, "endOffset": 151, "count": 1 }, + { "startOffset": 128, "endOffset": 148, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 437, "endOffset": 536, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Worker", + "ranges": [{ "startOffset": 542, "endOffset": 1265, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 986, "endOffset": 1257, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "runBeforeAllHooks", + "ranges": [{ "startOffset": 1270, "endOffset": 1408, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "runTestCase", + "ranges": [ + { "startOffset": 1413, "endOffset": 2210, "count": 3 }, + { "startOffset": 1877, "endOffset": 1887, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "runAfterAllHooks", + "ranges": [{ "startOffset": 2215, "endOffset": 2370, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "646", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/runtime/test_case_runner.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 12839, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 760, "endOffset": 1368, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "ownKeys", + "ranges": [{ "startOffset": 792, "endOffset": 1056, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 1069, "endOffset": 1365, "count": 1 }, + { "startOffset": 1132, "endOffset": 1364, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 1429, "endOffset": 1510, "count": 2 }, + { "startOffset": 1487, "endOffset": 1507, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1995, "endOffset": 2286, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "TestCaseRunner", + "ranges": [ + { "startOffset": 2292, "endOffset": 3751, "count": 3 }, + { "startOffset": 3420, "endOffset": 3423, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2556, "endOffset": 3282, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resetTestProgressData", + "ranges": [{ "startOffset": 3756, "endOffset": 4184, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "getBeforeStepHookDefinitions", + "ranges": [{ "startOffset": 4189, "endOffset": 4371, "count": 9 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4298, "endOffset": 4363, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getAfterStepHookDefinitions", + "ranges": [{ "startOffset": 4376, "endOffset": 4614, "count": 9 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4541, "endOffset": 4606, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getWorstStepResult", + "ranges": [ + { "startOffset": 4619, "endOffset": 5050, "count": 27 }, + { "startOffset": 4689, "endOffset": 4967, "count": 3 }, + { "startOffset": 4766, "endOffset": 4805, "count": 0 }, + { "startOffset": 4967, "endOffset": 5049, "count": 24 } + ], + "isBlockCoverage": true + }, + { + "functionName": "invokeStep", + "ranges": [{ "startOffset": 5055, "endOffset": 5404, "count": 15 }], + "isBlockCoverage": true + }, + { + "functionName": "isSkippingSteps", + "ranges": [{ "startOffset": 5409, "endOffset": 5526, "count": 15 }], + "isBlockCoverage": true + }, + { + "functionName": "shouldSkipHook", + "ranges": [ + { "startOffset": 5531, "endOffset": 5637, "count": 6 }, + { "startOffset": 5614, "endOffset": 5629, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "aroundTestStep", + "ranges": [{ "startOffset": 5642, "endOffset": 6527, "count": 15 }], + "isBlockCoverage": true + }, + { + "functionName": "run", + "ranges": [ + { "startOffset": 6532, "endOffset": 6957, "count": 3 }, + { "startOffset": 6850, "endOffset": 6902, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "runAttempt", + "ranges": [ + { "startOffset": 6962, "endOffset": 9426, "count": 3 }, + { "startOffset": 7364, "endOffset": 7445, "count": 0 }, + { "startOffset": 7670, "endOffset": 8935, "count": 15 }, + { "startOffset": 9052, "endOffset": 9076, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 7723, "endOffset": 8923, "count": 15 }, + { "startOffset": 7810, "endOffset": 8575, "count": 6 }, + { "startOffset": 8103, "endOffset": 8414, "count": 3 }, + { "startOffset": 8367, "endOffset": 8391, "count": 0 }, + { "startOffset": 8575, "endOffset": 8909, "count": 9 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8661, "endOffset": 8716, "count": 19 }], + "isBlockCoverage": true + }, + { + "functionName": "runHook", + "ranges": [ + { "startOffset": 9431, "endOffset": 9807, "count": 6 }, + { "startOffset": 9539, "endOffset": 9726, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "runStepHooks", + "ranges": [ + { "startOffset": 9812, "endOffset": 10396, "count": 18 }, + { "startOffset": 10249, "endOffset": 10358, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "runStep", + "ranges": [ + { "startOffset": 10401, "endOffset": 12372, "count": 9 }, + { "startOffset": 10662, "endOffset": 10851, "count": 0 }, + { "startOffset": 10897, "endOffset": 11170, "count": 0 }, + { "startOffset": 11212, "endOffset": 11399, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 10502, "endOffset": 10617, "count": 9 }], + "isBlockCoverage": true + }, + { + "functionName": "findHookDefinition", + "ranges": [{ "startOffset": 12409, "endOffset": 12648, "count": 6 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 12608, "endOffset": 12644, "count": 9 }], + "isBlockCoverage": true + }, + { + "functionName": "findStepDefinition", + "ranges": [{ "startOffset": 12649, "endOffset": 12794, "count": 9 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 12754, "endOffset": 12790, "count": 33 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "647", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/runtime/stopwatch.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1233, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 70, "endOffset": 151, "count": 1 }, + { "startOffset": 128, "endOffset": 148, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 389, "endOffset": 406, "count": 15 }], + "isBlockCoverage": true + }, + { + "functionName": "StopwatchImpl", + "ranges": [{ "startOffset": 412, "endOffset": 490, "count": 15 }], + "isBlockCoverage": true + }, + { + "functionName": "start", + "ranges": [{ "startOffset": 495, "endOffset": 588, "count": 15 }], + "isBlockCoverage": true + }, + { + "functionName": "stop", + "ranges": [{ "startOffset": 593, "endOffset": 699, "count": 15 }], + "isBlockCoverage": true + }, + { + "functionName": "duration", + "ranges": [ + { "startOffset": 704, "endOffset": 975, "count": 30 }, + { "startOffset": 763, "endOffset": 974, "count": 15 } + ], + "isBlockCoverage": true + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 993, "endOffset": 1026, "count": 15 }], + "isBlockCoverage": true + }, + { + "functionName": "timestamp", + "ranges": [{ "startOffset": 1071, "endOffset": 1163, "count": 38 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "648", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/runtime/step_runner.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 3916, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 760, "endOffset": 1368, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "ownKeys", + "ranges": [{ "startOffset": 792, "endOffset": 1056, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 1069, "endOffset": 1365, "count": 1 }, + { "startOffset": 1132, "endOffset": 1364, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 1429, "endOffset": 1510, "count": 1 }, + { "startOffset": 1487, "endOffset": 1507, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "run", + "ranges": [ + { "startOffset": 1915, "endOffset": 3849, "count": 15 }, + { "startOffset": 2387, "endOffset": 2427, "count": 0 }, + { "startOffset": 3068, "endOffset": 3159, "count": 0 }, + { "startOffset": 3284, "endOffset": 3347, "count": 0 }, + { "startOffset": 3383, "endOffset": 3446, "count": 0 }, + { "startOffset": 3503, "endOffset": 3565, "count": 0 }, + { "startOffset": 3689, "endOffset": 3773, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2183, "endOffset": 2374, "count": 15 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2765, "endOffset": 2990, "count": 15 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "649", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/user_code_runner.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3378, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 70, "endOffset": 151, "count": 2 }, + { "startOffset": 122, "endOffset": 127, "count": 1 }, + { "startOffset": 128, "endOffset": 148, "count": 1 } + ], + "isBlockCoverage": true + }, + { + "functionName": "run", + "ranges": [ + { "startOffset": 485, "endOffset": 3295, "count": 17 }, + { "startOffset": 995, "endOffset": 1128, "count": 0 }, + { "startOffset": 1308, "endOffset": 1346, "count": 10 }, + { "startOffset": 1378, "endOffset": 1397, "count": 0 }, + { "startOffset": 1399, "endOffset": 1730, "count": 0 }, + { "startOffset": 1767, "endOffset": 1828, "count": 0 }, + { "startOffset": 1864, "endOffset": 1918, "count": 10 }, + { "startOffset": 1918, "endOffset": 1984, "count": 7 }, + { "startOffset": 1984, "endOffset": 2736, "count": 10 }, + { "startOffset": 2486, "endOffset": 2510, "count": 0 }, + { "startOffset": 2736, "endOffset": 2837, "count": 10 }, + { "startOffset": 2837, "endOffset": 3173, "count": 0 }, + { "startOffset": 3173, "endOffset": 3294, "count": 10 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 593, "endOffset": 885, "count": 17 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 643, "endOffset": 873, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2068, "endOffset": 2223, "count": 10 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "650", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/uncaught_exception_manager.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 412, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "registerHandler", + "ranges": [{ "startOffset": 116, "endOffset": 207, "count": 10 }], + "isBlockCoverage": true + }, + { + "functionName": "unregisterHandler", + "ranges": [{ "startOffset": 213, "endOffset": 309, "count": 10 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "651", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/runtime/scope/index.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 895, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 88, "endOffset": 405, "count": 4 }, + { "startOffset": 232, "endOffset": 247, "count": 0 }, + { "startOffset": 264, "endOffset": 284, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 327, "endOffset": 354, "count": 32 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__exportStar", + "ranges": [ + { "startOffset": 541, "endOffset": 692, "count": 2 }, + { "startOffset": 585, "endOffset": 690, "count": 4 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "652", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/runtime/scope/test_case_scope.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1124, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "runInTestCaseScope", + "ranges": [{ "startOffset": 323, "endOffset": 424, "count": 30 }], + "isBlockCoverage": true + }, + { + "functionName": "getWorld", + "ranges": [{ "startOffset": 425, "endOffset": 664, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "653", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/runtime/scope/make_proxy.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1365, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "makeProxy", + "ranges": [{ "startOffset": 108, "endOffset": 1326, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "defineProperty", + "ranges": [{ "startOffset": 174, "endOffset": 302, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "deleteProperty", + "ranges": [{ "startOffset": 312, "endOffset": 405, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 415, "endOffset": 509, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getOwnPropertyDescriptor", + "ranges": [{ "startOffset": 519, "endOffset": 643, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getPrototypeOf", + "ranges": [{ "startOffset": 653, "endOffset": 737, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "has", + "ranges": [{ "startOffset": 747, "endOffset": 819, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isExtensible", + "ranges": [{ "startOffset": 829, "endOffset": 909, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ownKeys", + "ranges": [{ "startOffset": 919, "endOffset": 989, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "preventExtensions", + "ranges": [{ "startOffset": 999, "endOffset": 1089, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 1099, "endOffset": 1207, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setPrototypeOf", + "ranges": [{ "startOffset": 1217, "endOffset": 1315, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "654", + "url": "node:internal/async_local_storage/async_context_frame", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1736, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 278, "endOffset": 324, "count": 2 }], + "isBlockCoverage": false + }, + { + "functionName": "AsyncLocalStorage", + "ranges": [ + { "startOffset": 593, "endOffset": 794, "count": 2 }, + { "startOffset": 745, "endOffset": 790, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get name", + "ranges": [{ "startOffset": 822, "endOffset": 861, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "bind", + "ranges": [{ "startOffset": 872, "endOffset": 921, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "snapshot", + "ranges": [{ "startOffset": 932, "endOffset": 1013, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "disable", + "ranges": [{ "startOffset": 1017, "endOffset": 1069, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "enterWith", + "ranges": [{ "startOffset": 1073, "endOffset": 1181, "count": 64 }], + "isBlockCoverage": true + }, + { + "functionName": "run", + "ranges": [ + { "startOffset": 1185, "endOffset": 1460, "count": 32 }, + { "startOffset": 1276, "endOffset": 1326, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "exit", + "ranges": [{ "startOffset": 1464, "endOffset": 1532, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getStore", + "ranges": [ + { "startOffset": 1536, "endOffset": 1696, "count": 32 }, + { "startOffset": 1610, "endOffset": 1615, "count": 31 }, + { "startOffset": 1623, "endOffset": 1663, "count": 2 }, + { "startOffset": 1663, "endOffset": 1685, "count": 30 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "655", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/runtime/scope/test_run_scope.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1079, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "runInTestRunScope", + "ranges": [{ "startOffset": 322, "endOffset": 421, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "getContext", + "ranges": [{ "startOffset": 422, "endOffset": 655, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "656", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/runtime/format_error.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1477, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 70, "endOffset": 151, "count": 1 }, + { "startOffset": 122, "endOffset": 127, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "formatError", + "ranges": [{ "startOffset": 465, "endOffset": 1436, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "657", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/assertion-error-formatter/lib/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2460, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "_interopRequireDefault", + "ranges": [ + { "startOffset": 390, "endOffset": 483, "count": 4 }, + { "startOffset": 463, "endOffset": 481, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "identity", + "ranges": [{ "startOffset": 485, "endOffset": 521, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "format", + "ranges": [{ "startOffset": 523, "endOffset": 2460, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "658", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/assertion-error-formatter/lib/helpers/inline_diff.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1154, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "_interopRequireDefault", + "ranges": [ + { "startOffset": 194, "endOffset": 287, "count": 1 }, + { "startOffset": 261, "endOffset": 266, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "inlineDiff", + "ranges": [{ "startOffset": 289, "endOffset": 835, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "errorDiff", + "ranges": [{ "startOffset": 837, "endOffset": 1154, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "659", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/diff/lib/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 7231, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 174, "endOffset": 220, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 298, "endOffset": 351, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 429, "endOffset": 477, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 564, "endOffset": 621, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 699, "endOffset": 747, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 832, "endOffset": 887, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 969, "endOffset": 1025, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1101, "endOffset": 1146, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1223, "endOffset": 1270, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1351, "endOffset": 1402, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1481, "endOffset": 1531, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1610, "endOffset": 1660, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1741, "endOffset": 1793, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1872, "endOffset": 1922, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1996, "endOffset": 2041, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2125, "endOffset": 2181, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2269, "endOffset": 2329, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2409, "endOffset": 2461, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2549, "endOffset": 2606, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2694, "endOffset": 2751, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_interopRequireDefault", + "ranges": [ + { "startOffset": 4097, "endOffset": 4192, "count": 1 }, + { "startOffset": 4171, "endOffset": 4189, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "660", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/diff/lib/diff/base.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 30920, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Diff", + "ranges": [{ "startOffset": 155, "endOffset": 173, "count": 7 }], + "isBlockCoverage": true + }, + { + "functionName": "diff", + "ranges": [{ "startOffset": 257, "endOffset": 4468, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pushComponent", + "ranges": [{ "startOffset": 4543, "endOffset": 5071, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "extractCommon", + "ranges": [{ "startOffset": 5146, "endOffset": 5717, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "equals", + "ranges": [{ "startOffset": 5785, "endOffset": 6026, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "removeEmpty", + "ranges": [{ "startOffset": 6099, "endOffset": 6277, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "castInput", + "ranges": [{ "startOffset": 6348, "endOffset": 6397, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "tokenize", + "ranges": [{ "startOffset": 6467, "endOffset": 6525, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "join", + "ranges": [{ "startOffset": 6591, "endOffset": 6644, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "buildValues", + "ranges": [{ "startOffset": 6649, "endOffset": 8670, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "clonePath", + "ranges": [{ "startOffset": 8672, "endOffset": 8782, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "661", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/diff/lib/diff/character.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1658, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "_interopRequireDefault", + "ranges": [ + { "startOffset": 327, "endOffset": 422, "count": 1 }, + { "startOffset": 401, "endOffset": 419, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "diffChars", + "ranges": [{ "startOffset": 683, "endOffset": 784, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "662", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/diff/lib/diff/word.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 8504, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "_interopRequireDefault", + "ranges": [ + { "startOffset": 464, "endOffset": 559, "count": 1 }, + { "startOffset": 538, "endOffset": 556, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "wordDiff.equals", + "ranges": [{ "startOffset": 1541, "endOffset": 1784, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "wordDiff.tokenize", + "ranges": [{ "startOffset": 1807, "endOffset": 2379, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "diffWords", + "ranges": [{ "startOffset": 2382, "endOffset": 2739, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "diffWordsWithSpace", + "ranges": [{ "startOffset": 2741, "endOffset": 2846, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "663", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/diff/lib/util/params.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1752, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "generateOptions", + "ranges": [{ "startOffset": 174, "endOffset": 502, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "664", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/diff/lib/diff/line.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 5673, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "_interopRequireDefault", + "ranges": [ + { "startOffset": 460, "endOffset": 555, "count": 1 }, + { "startOffset": 534, "endOffset": 552, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "lineDiff.tokenize", + "ranges": [{ "startOffset": 821, "endOffset": 1478, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "diffLines", + "ranges": [{ "startOffset": 1481, "endOffset": 1579, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "diffTrimmedLines", + "ranges": [{ "startOffset": 1581, "endOffset": 1951, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "665", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/diff/lib/diff/sentence.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2073, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "_interopRequireDefault", + "ranges": [ + { "startOffset": 334, "endOffset": 429, "count": 1 }, + { "startOffset": 408, "endOffset": 426, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "sentenceDiff.tokenize", + "ranges": [{ "startOffset": 711, "endOffset": 778, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "diffSentences", + "ranges": [{ "startOffset": 781, "endOffset": 887, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "666", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/diff/lib/diff/css.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1949, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "_interopRequireDefault", + "ranges": [ + { "startOffset": 317, "endOffset": 412, "count": 1 }, + { "startOffset": 391, "endOffset": 409, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "cssDiff.tokenize", + "ranges": [{ "startOffset": 674, "endOffset": 733, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "diffCss", + "ranges": [{ "startOffset": 736, "endOffset": 831, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "667", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/diff/lib/diff/json.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 12890, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "_interopRequireDefault", + "ranges": [ + { "startOffset": 440, "endOffset": 535, "count": 1 }, + { "startOffset": 514, "endOffset": 532, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "_typeof", + "ranges": [{ "startOffset": 537, "endOffset": 888, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "jsonDiff.castInput", + "ranges": [{ "startOffset": 1593, "endOffset": 2217, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "jsonDiff.equals", + "ranges": [{ "startOffset": 2238, "endOffset": 2530, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "diffJson", + "ranges": [{ "startOffset": 2533, "endOffset": 2628, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "canonicalize", + "ranges": [{ "startOffset": 2824, "endOffset": 4324, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "668", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/diff/lib/diff/array.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2287, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "_interopRequireDefault", + "ranges": [ + { "startOffset": 325, "endOffset": 420, "count": 1 }, + { "startOffset": 399, "endOffset": 417, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "arrayDiff.tokenize", + "ranges": [{ "startOffset": 690, "endOffset": 734, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "arrayDiff.join.arrayDiff.removeEmpty", + "ranges": [{ "startOffset": 778, "endOffset": 814, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "diffArrays", + "ranges": [{ "startOffset": 817, "endOffset": 917, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "669", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/diff/lib/patch/apply.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 20185, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "_interopRequireDefault", + "ranges": [ + { "startOffset": 450, "endOffset": 545, "count": 1 }, + { "startOffset": 524, "endOffset": 542, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "applyPatch", + "ranges": [{ "startOffset": 571, "endOffset": 4878, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "applyPatches", + "ranges": [{ "startOffset": 4943, "endOffset": 5799, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "670", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/diff/lib/patch/parse.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 17036, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "parsePatch", + "ranges": [{ "startOffset": 164, "endOffset": 4434, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "671", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/diff/lib/util/distance-iterator.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 4638, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "_default", + "ranges": [{ "startOffset": 337, "endOffset": 1480, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "672", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/diff/lib/patch/merge.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 50414, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "_toConsumableArray", + "ranges": [{ "startOffset": 482, "endOffset": 599, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_nonIterableSpread", + "ranges": [{ "startOffset": 601, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_iterableToArray", + "ranges": [{ "startOffset": 708, "endOffset": 870, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_arrayWithoutHoles", + "ranges": [{ "startOffset": 872, "endOffset": 1038, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "calcLineCount", + "ranges": [{ "startOffset": 1064, "endOffset": 1518, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "merge", + "ranges": [{ "startOffset": 1520, "endOffset": 4399, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "loadPatch", + "ranges": [{ "startOffset": 4401, "endOffset": 5257, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fileNameChanged", + "ranges": [{ "startOffset": 5259, "endOffset": 5365, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "selectField", + "ranges": [{ "startOffset": 5367, "endOffset": 5555, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hunkBefore", + "ranges": [{ "startOffset": 5557, "endOffset": 5684, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneHunk", + "ranges": [{ "startOffset": 5686, "endOffset": 5885, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mergeLines", + "ranges": [{ "startOffset": 5887, "endOffset": 8656, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mutualChange", + "ranges": [{ "startOffset": 8658, "endOffset": 11337, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "removal", + "ranges": [{ "startOffset": 11339, "endOffset": 12055, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "conflict", + "ranges": [{ "startOffset": 12057, "endOffset": 12201, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "insertLeading", + "ranges": [{ "startOffset": 12203, "endOffset": 12426, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "insertTrailing", + "ranges": [{ "startOffset": 12428, "endOffset": 12592, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "collectChange", + "ranges": [{ "startOffset": 12594, "endOffset": 13088, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "collectContext", + "ranges": [{ "startOffset": 13090, "endOffset": 14357, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "allRemoves", + "ranges": [{ "startOffset": 14359, "endOffset": 14491, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "skipRemoveSuperset", + "ranges": [{ "startOffset": 14493, "endOffset": 14807, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "calcOldNewLineCount", + "ranges": [{ "startOffset": 14809, "endOffset": 15764, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "673", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/diff/lib/patch/create.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 21307, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "_toConsumableArray", + "ranges": [{ "startOffset": 375, "endOffset": 492, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_nonIterableSpread", + "ranges": [{ "startOffset": 494, "endOffset": 599, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_iterableToArray", + "ranges": [{ "startOffset": 601, "endOffset": 763, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_arrayWithoutHoles", + "ranges": [{ "startOffset": 765, "endOffset": 931, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "structuredPatch", + "ranges": [{ "startOffset": 957, "endOffset": 6109, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createTwoFilesPatch", + "ranges": [{ "startOffset": 6111, "endOffset": 6985, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createPatch", + "ranges": [{ "startOffset": 6987, "endOffset": 7165, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "674", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/diff/lib/util/array.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2026, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "arrayEqual", + "ranges": [{ "startOffset": 207, "endOffset": 322, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "arrayStartsWith", + "ranges": [{ "startOffset": 324, "endOffset": 548, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "675", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/diff/lib/convert/dmp.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2255, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "convertChangesToDMP", + "ranges": [{ "startOffset": 248, "endOffset": 609, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "676", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/diff/lib/convert/xml.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3359, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "convertChangesToXML", + "ranges": [{ "startOffset": 182, "endOffset": 613, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "escapeHTML", + "ranges": [{ "startOffset": 615, "endOffset": 793, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "677", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/pad-right/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 489, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "padLeft", + "ranges": [{ "startOffset": 72, "endOffset": 487, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "678", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/repeat-string/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1213, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "repeat", + "ranges": [{ "startOffset": 637, "endOffset": 1212, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "679", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/assertion-error-formatter/lib/helpers/stringify.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 472, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "_interopRequireDefault", + "ranges": [ + { "startOffset": 248, "endOffset": 341, "count": 2 }, + { "startOffset": 321, "endOffset": 339, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "stringify", + "ranges": [{ "startOffset": 343, "endOffset": 472, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "680", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/assertion-error-formatter/lib/helpers/canonicalize.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1411, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "_interopRequireDefault", + "ranges": [ + { "startOffset": 231, "endOffset": 324, "count": 2 }, + { "startOffset": 304, "endOffset": 322, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "canonicalize", + "ranges": [{ "startOffset": 326, "endOffset": 1411, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "681", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/assertion-error-formatter/lib/helpers/has_property.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 266, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "hasProperty", + "ranges": [{ "startOffset": 105, "endOffset": 266, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "682", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/assertion-error-formatter/lib/helpers/type.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 426, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "type", + "ranges": [{ "startOffset": 98, "endOffset": 426, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "683", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/assertion-error-formatter/lib/helpers/json_stringify.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2319, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "_interopRequireDefault", + "ranges": [ + { "startOffset": 231, "endOffset": 324, "count": 2 }, + { "startOffset": 298, "endOffset": 303, "count": 1 }, + { "startOffset": 304, "endOffset": 322, "count": 1 } + ], + "isBlockCoverage": true + }, + { + "functionName": "jsonStringify", + "ranges": [{ "startOffset": 326, "endOffset": 1132, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "jsonStringifyBuffer", + "ranges": [{ "startOffset": 1134, "endOffset": 1274, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "jsonStringifyDate", + "ranges": [{ "startOffset": 1276, "endOffset": 1466, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "jsonStringifyProperties", + "ranges": [{ "startOffset": 1468, "endOffset": 2319, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "684", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/assertion-error-formatter/lib/helpers/unified_diff.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1005, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "unifiedDiff", + "ranges": [{ "startOffset": 135, "endOffset": 1005, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "685", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/runtime/attachment_manager/index.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5084, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 760, "endOffset": 1368, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "ownKeys", + "ranges": [{ "startOffset": 792, "endOffset": 1056, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 1069, "endOffset": 1365, "count": 1 }, + { "startOffset": 1132, "endOffset": 1364, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 1429, "endOffset": 1510, "count": 1 }, + { "startOffset": 1481, "endOffset": 1486, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1782, "endOffset": 1794, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "AttachmentManager", + "ranges": [{ "startOffset": 1800, "endOffset": 1875, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "log", + "ranges": [{ "startOffset": 1880, "endOffset": 1960, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "link", + "ranges": [{ "startOffset": 1965, "endOffset": 2046, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 2051, "endOffset": 3673, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createBufferAttachment", + "ranges": [{ "startOffset": 3678, "endOffset": 3921, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createStreamAttachment", + "ranges": [{ "startOffset": 3926, "endOffset": 4565, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createStringAttachment", + "ranges": [{ "startOffset": 4570, "endOffset": 4747, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "normaliseOptions", + "ranges": [{ "startOffset": 4787, "endOffset": 5050, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "686", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/is-stream/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 677, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "isStream", + "ranges": [{ "startOffset": 32, "endOffset": 127, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isStream.writable", + "ranges": [{ "startOffset": 150, "endOffset": 293, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isStream.readable", + "ranges": [{ "startOffset": 316, "endOffset": 458, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isStream.duplex", + "ranges": [{ "startOffset": 479, "endOffset": 545, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isStream.transform", + "ranges": [{ "startOffset": 569, "endOffset": 647, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "687", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/runtime/helpers.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 3963, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 760, "endOffset": 1368, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "ownKeys", + "ranges": [{ "startOffset": 792, "endOffset": 1056, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 1069, "endOffset": 1365, "count": 1 }, + { "startOffset": 1132, "endOffset": 1364, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 1429, "endOffset": 1510, "count": 2 }, + { "startOffset": 1481, "endOffset": 1486, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "getAmbiguousStepException", + "ranges": [{ "startOffset": 2052, "endOffset": 3023, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "retriesForPickle", + "ranges": [ + { "startOffset": 3024, "endOffset": 3497, "count": 3 }, + { "startOffset": 3118, "endOffset": 3496, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "shouldCauseFailure", + "ranges": [ + { "startOffset": 3498, "endOffset": 3927, "count": 3 }, + { "startOffset": 3569, "endOffset": 3598, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "688", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/runtime/run_test_run_hooks.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1448, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 70, "endOffset": 151, "count": 1 }, + { "startOffset": 128, "endOffset": 148, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "makeRunTestRunHooks", + "ranges": [ + { "startOffset": 498, "endOffset": 1349, "count": 1 }, + { "startOffset": 568, "endOffset": 585, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "context.parameters", + "ranges": [{ "startOffset": 570, "endOffset": 585, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 592, "endOffset": 1349, "count": 2 }, + { "startOffset": 1157, "endOffset": 1333, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 812, "endOffset": 1095, "count": 2 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "689", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/runtime/coordinator.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1446, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 218, "endOffset": 302, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Coordinator", + "ranges": [{ "startOffset": 308, "endOffset": 607, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "run", + "ranges": [{ "startOffset": 612, "endOffset": 1369, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "690", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/assemble/index.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 890, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 88, "endOffset": 405, "count": 1 }, + { "startOffset": 232, "endOffset": 247, "count": 0 }, + { "startOffset": 264, "endOffset": 284, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 327, "endOffset": 354, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__exportStar", + "ranges": [ + { "startOffset": 541, "endOffset": 692, "count": 2 }, + { "startOffset": 585, "endOffset": 690, "count": 1 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "691", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/assemble/assemble_test_cases.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3170, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "assembleTestCases", + "ranges": [{ "startOffset": 177, "endOffset": 1240, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 321, "endOffset": 1236, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "makeAfterHookSteps", + "ranges": [{ "startOffset": 1241, "endOffset": 1587, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1423, "endOffset": 1483, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1498, "endOffset": 1583, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "makeBeforeHookSteps", + "ranges": [{ "startOffset": 1588, "endOffset": 1899, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1735, "endOffset": 1795, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1810, "endOffset": 1895, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "makeSteps", + "ranges": [{ "startOffset": 1900, "endOffset": 2846, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1989, "endOffset": 2842, "count": 9 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2081, "endOffset": 2148, "count": 117 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2285, "endOffset": 2322, "count": 9 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2382, "endOffset": 2823, "count": 9 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2561, "endOffset": 2788, "count": 9 }], + "isBlockCoverage": true + }, + { + "functionName": "mapArgumentGroup", + "ranges": [ + { "startOffset": 2847, "endOffset": 3122, "count": 45 }, + { "startOffset": 3101, "endOffset": 3112, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3053, "endOffset": 3087, "count": 36 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "692", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/assemble/types.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 110, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "693", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/api/formatters.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2665, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 70, "endOffset": 151, "count": 1 }, + { "startOffset": 128, "endOffset": 148, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "initializeFormatters", + "ranges": [ + { "startOffset": 523, "endOffset": 2626, "count": 1 }, + { "startOffset": 2320, "endOffset": 2515, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "initializeFormatter", + "ranges": [ + { "startOffset": 726, "endOffset": 2162, "count": 1 }, + { "startOffset": 842, "endOffset": 858, "count": 0 }, + { "startOffset": 860, "endOffset": 1046, "count": 0 }, + { "startOffset": 1602, "endOffset": 1655, "count": 0 }, + { "startOffset": 1870, "endOffset": 2156, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1546, "endOffset": 1581, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1826, "endOffset": 1858, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2527, "endOffset": 2623, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2588, "endOffset": 2614, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "694", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/formatter/builder.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3762, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 70, "endOffset": 151, "count": 4 }, + { "startOffset": 128, "endOffset": 148, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "build", + "ranges": [ + { "startOffset": 804, "endOffset": 1620, "count": 1 }, + { "startOffset": 903, "endOffset": 1029, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "getConstructorByType", + "ranges": [{ "startOffset": 1626, "endOffset": 1877, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getStepDefinitionSnippetBuilder", + "ranges": [ + { "startOffset": 1883, "endOffset": 2583, "count": 1 }, + { "startOffset": 2266, "endOffset": 2368, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "loadCustomClass", + "ranges": [{ "startOffset": 2589, "endOffset": 2986, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "loadFile", + "ranges": [{ "startOffset": 2992, "endOffset": 3076, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolveConstructor", + "ranges": [{ "startOffset": 3082, "endOffset": 3686, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "695", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/formatter/step_definition_snippet_builder/snippet_syntax.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 480, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 135, "endOffset": 363, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "696", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/formatter/step_definition_snippet_builder/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1976, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 347, "endOffset": 393, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "StepDefinitionSnippetBuilder", + "ranges": [{ "startOffset": 399, "endOffset": 648, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 598, "endOffset": 640, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "build", + "ranges": [{ "startOffset": 653, "endOffset": 1202, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getFunctionName", + "ranges": [{ "startOffset": 1207, "endOffset": 1525, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getStepParameterNames", + "ranges": [{ "startOffset": 1530, "endOffset": 1892, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "697", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/formatter/step_definition_snippet_builder/javascript_snippet_syntax.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2191, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 201, "endOffset": 217, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "JavaScriptSnippetSyntax", + "ranges": [{ "startOffset": 223, "endOffset": 310, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "build", + "ranges": [{ "startOffset": 315, "endOffset": 1724, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "escapeSpecialCharacters", + "ranges": [{ "startOffset": 1729, "endOffset": 2092, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "698", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/formatter/get_color_fns.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2345, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 70, "endOffset": 151, "count": 1 }, + { "startOffset": 122, "endOffset": 127, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "getColorFns", + "ranges": [ + { "startOffset": 403, "endOffset": 1942, "count": 1 }, + { "startOffset": 1617, "endOffset": 1940, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "forStatus", + "ranges": [{ "startOffset": 622, "endOffset": 1211, "count": 17 }], + "isBlockCoverage": true + }, + { + "functionName": "forStatus", + "ranges": [{ "startOffset": 1658, "endOffset": 1725, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "location", + "ranges": [{ "startOffset": 1749, "endOffset": 1757, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "tag", + "ranges": [{ "startOffset": 1776, "endOffset": 1784, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "diffAdded", + "ranges": [{ "startOffset": 1809, "endOffset": 1817, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "diffRemoved", + "ranges": [{ "startOffset": 1844, "endOffset": 1852, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "errorMessage", + "ranges": [{ "startOffset": 1880, "endOffset": 1888, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "errorStack", + "ranges": [{ "startOffset": 1914, "endOffset": 1922, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "detectSupport", + "ranges": [ + { "startOffset": 1943, "endOffset": 2303, "count": 1 }, + { "startOffset": 2165, "endOffset": 2214, "count": 0 }, + { "startOffset": 2247, "endOffset": 2292, "count": 0 }, + { "startOffset": 2293, "endOffset": 2300, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "699", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/node_modules/chalk/source/index.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 6073, "count": 1 }, + { "startOffset": 1532, "endOffset": 1764, "count": 44 }, + { "startOffset": 2057, "endOffset": 2352, "count": 8 }, + { "startOffset": 2386, "endOffset": 2752, "count": 8 }, + { "startOffset": 5968, "endOffset": 5971, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "applyOptions", + "ranges": [ + { "startOffset": 430, "endOffset": 809, "count": 3 }, + { "startOffset": 477, "endOffset": 558, "count": 2 }, + { "startOffset": 560, "endOffset": 638, "count": 0 }, + { "startOffset": 729, "endOffset": 732, "count": 0 }, + { "startOffset": 778, "endOffset": 790, "count": 1 }, + { "startOffset": 791, "endOffset": 806, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "ChalkClass", + "ranges": [{ "startOffset": 832, "endOffset": 941, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "chalkFactory", + "ranges": [{ "startOffset": 966, "endOffset": 1408, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "chalk.template", + "ranges": [{ "startOffset": 1048, "endOffset": 1106, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "chalk.template.constructor", + "ranges": [{ "startOffset": 1235, "endOffset": 1340, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Chalk", + "ranges": [{ "startOffset": 1411, "endOffset": 1469, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1559, "endOffset": 1758, "count": 6 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1786, "endOffset": 1933, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2080, "endOffset": 2346, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2476, "endOffset": 2746, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Object.defineProperties", + "ranges": [{ "startOffset": 2792, "endOffset": 2800, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2848, "endOffset": 2892, "count": 17 }], + "isBlockCoverage": true + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 2896, "endOffset": 2946, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createStyler", + "ranges": [ + { "startOffset": 2976, "endOffset": 3250, "count": 6 }, + { "startOffset": 3101, "endOffset": 3184, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "createBuilder", + "ranges": [{ "startOffset": 3275, "endOffset": 4073, "count": 6 }], + "isBlockCoverage": true + }, + { + "functionName": "builder", + "ranges": [ + { "startOffset": 3323, "endOffset": 3790, "count": 17 }, + { "startOffset": 3373, "endOffset": 3402, "count": 0 }, + { "startOffset": 3404, "endOffset": 3556, "count": 0 }, + { "startOffset": 3763, "endOffset": 3785, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "applyStyle", + "ranges": [ + { "startOffset": 4095, "endOffset": 5135, "count": 17 }, + { "startOffset": 4148, "endOffset": 4190, "count": 0 }, + { "startOffset": 4248, "endOffset": 4269, "count": 0 }, + { "startOffset": 4346, "endOffset": 4675, "count": 0 }, + { "startOffset": 5012, "endOffset": 5095, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "chalkTag", + "ranges": [{ "startOffset": 5169, "endOffset": 5764, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "700", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/node_modules/ansi-styles/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 4139, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "wrapAnsi16", + "ranges": [{ "startOffset": 34, "endOffset": 129, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "wrapAnsi256", + "ranges": [{ "startOffset": 152, "endOffset": 255, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "wrapAnsi16m", + "ranges": [{ "startOffset": 278, "endOffset": 402, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ansi2ansi", + "ranges": [{ "startOffset": 423, "endOffset": 429, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "rgb2rgb", + "ranges": [{ "startOffset": 447, "endOffset": 469, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setLazyProperty", + "ranges": [{ "startOffset": 496, "endOffset": 786, "count": 30 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 575, "endOffset": 737, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "makeDynamicStyles", + "ranges": [{ "startOffset": 879, "endOffset": 1400, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "assembleStyles", + "ranges": [ + { "startOffset": 1403, "endOffset": 4021, "count": 5 }, + { "startOffset": 2869, "endOffset": 3201, "count": 15 }, + { "startOffset": 2929, "endOffset": 3108, "count": 220 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3401, "endOffset": 3464, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3509, "endOffset": 3574, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3619, "endOffset": 3678, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3722, "endOffset": 3784, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3831, "endOffset": 3895, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3942, "endOffset": 4000, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "701", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/node_modules/chalk/node_modules/supports-color/index.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 2748, "count": 1 }, + { "startOffset": 250, "endOffset": 270, "count": 0 }, + { "startOffset": 374, "endOffset": 394, "count": 0 }, + { "startOffset": 457, "endOffset": 479, "count": 0 }, + { "startOffset": 518, "endOffset": 540, "count": 0 }, + { "startOffset": 592, "endOffset": 595, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "translateLevel", + "ranges": [ + { "startOffset": 648, "endOffset": 806, "count": 2 }, + { "startOffset": 699, "endOffset": 719, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "supportsColor", + "ranges": [ + { "startOffset": 808, "endOffset": 2439, "count": 2 }, + { "startOffset": 881, "endOffset": 897, "count": 0 }, + { "startOffset": 985, "endOffset": 1001, "count": 0 }, + { "startOffset": 1030, "endOffset": 1046, "count": 0 }, + { "startOffset": 1109, "endOffset": 1125, "count": 0 }, + { "startOffset": 1151, "endOffset": 1155, "count": 0 }, + { "startOffset": 1184, "endOffset": 1202, "count": 0 }, + { "startOffset": 1239, "endOffset": 1594, "count": 0 }, + { "startOffset": 1614, "endOffset": 1794, "count": 0 }, + { "startOffset": 1828, "endOffset": 1909, "count": 0 }, + { "startOffset": 1963, "endOffset": 2438, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1706, "endOffset": 1725, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getSupportLevel", + "ranges": [{ "startOffset": 2441, "endOffset": 2570, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "702", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/node_modules/chalk/source/util.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1035, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "stringReplaceAll", + "ranges": [{ "startOffset": 40, "endOffset": 505, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stringEncaseCRLFWithFirstIndex", + "ranges": [{ "startOffset": 547, "endOffset": 959, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "703", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/formatter/helpers/formatters.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1405, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 70, "endOffset": 151, "count": 8 }, + { "startOffset": 128, "endOffset": 148, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "getFormatters", + "ranges": [{ "startOffset": 871, "endOffset": 1332, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "704", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/formatter/import_code.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 921, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 70, "endOffset": 151, "count": 1 }, + { "startOffset": 122, "endOffset": 127, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "importCode", + "ranges": [{ "startOffset": 348, "endOffset": 881, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "705", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/formatter/create_stream.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1094, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 70, "endOffset": 151, "count": 2 }, + { "startOffset": 122, "endOffset": 127, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "createStream", + "ranges": [{ "startOffset": 396, "endOffset": 1052, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "706", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/mkdirp/dist/cjs/src/index-cjs.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 362, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 70, "endOffset": 151, "count": 1 }, + { "startOffset": 128, "endOffset": 148, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "707", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/mkdirp/dist/cjs/src/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2882, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 681, "endOffset": 736, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 817, "endOffset": 876, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1009, "endOffset": 1064, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1145, "endOffset": 1204, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1328, "endOffset": 1377, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1455, "endOffset": 1508, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mkdirpSync", + "ranges": [{ "startOffset": 1553, "endOffset": 1863, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "exports.mkdirp.Object.assign.mkdirpSync", + "ranges": [{ "startOffset": 1929, "endOffset": 2233, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "708", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/mkdirp/dist/cjs/src/mkdirp-manual.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2618, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "mkdirpManualSync", + "ranges": [{ "startOffset": 240, "endOffset": 1334, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "exports.mkdirpManual.Object.assign.sync", + "ranges": [{ "startOffset": 1418, "endOffset": 2538, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "709", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/mkdirp/dist/cjs/src/opts-arg.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1364, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "optsArg", + "ranges": [{ "startOffset": 147, "endOffset": 1299, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "710", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/mkdirp/dist/cjs/src/mkdirp-native.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1689, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "mkdirpNativeSync", + "ranges": [{ "startOffset": 348, "endOffset": 930, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "exports.mkdirpNative.Object.assign.sync", + "ranges": [{ "startOffset": 1014, "endOffset": 1609, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "711", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/mkdirp/dist/cjs/src/find-made.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1144, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "findMade", + "ranges": [{ "startOffset": 176, "endOffset": 644, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "findMadeSync", + "ranges": [{ "startOffset": 696, "endOffset": 1068, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "712", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/mkdirp/dist/cjs/src/path-arg.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 953, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "pathArg", + "ranges": [{ "startOffset": 229, "endOffset": 888, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "713", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/mkdirp/dist/cjs/src/use-native.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 763, "count": 1 }, + { "startOffset": 374, "endOffset": 418, "count": 0 }, + { "startOffset": 459, "endOffset": 472, "count": 0 }, + { "startOffset": 601, "endOffset": 614, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 461, "endOffset": 472, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "exports.useNativeSync", + "ranges": [{ "startOffset": 479, "endOffset": 550, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 603, "endOffset": 614, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "exports.useNative.Object.assign.sync", + "ranges": [{ "startOffset": 621, "endOffset": 684, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "714", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/formatter/resolve_implementation.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1048, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 70, "endOffset": 151, "count": 1 }, + { "startOffset": 128, "endOffset": 148, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "resolveImplementation", + "ranges": [ + { "startOffset": 442, "endOffset": 997, "count": 1 }, + { "startOffset": 662, "endOffset": 724, "count": 0 }, + { "startOffset": 730, "endOffset": 996, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "715", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/formatter/find_class_or_plugin.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 700, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "findClassOrPlugin", + "ranges": [{ "startOffset": 177, "endOffset": 256, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "findRecursive", + "ranges": [{ "startOffset": 257, "endOffset": 651, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "716", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/api/types.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 110, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "717", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/cli/i18n.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1996, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 70, "endOffset": 151, "count": 1 }, + { "startOffset": 122, "endOffset": 127, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "getAsTable", + "ranges": [{ "startOffset": 626, "endOffset": 1336, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getLanguages", + "ranges": [{ "startOffset": 1337, "endOffset": 1618, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getKeywords", + "ranges": [{ "startOffset": 1619, "endOffset": 1963, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "718", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/capital-case/dist/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 692, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "capitalCaseTransform", + "ranges": [{ "startOffset": 260, "endOffset": 367, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "capitalCase", + "ranges": [{ "startOffset": 421, "endOffset": 623, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "719", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/tslib/tslib.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 23382, "count": 1 }, + { "startOffset": 22189, "endOffset": 23379, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 1565, "endOffset": 2537, "count": 1 }, + { "startOffset": 1638, "endOffset": 1710, "count": 0 }, + { "startOffset": 1750, "endOffset": 1763, "count": 0 }, + { "startOffset": 1765, "endOffset": 1892, "count": 0 }, + { "startOffset": 2053, "endOffset": 2112, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1805, "endOffset": 1883, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createExporter", + "ranges": [ + { "startOffset": 2118, "endOffset": 2534, "count": 2 }, + { "startOffset": 2194, "endOffset": 2436, "count": 1 }, + { "startOffset": 2346, "endOffset": 2425, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 2453, "endOffset": 2526, "count": 64 }, + { "startOffset": 2502, "endOffset": 2519, "count": 32 }, + { "startOffset": 2520, "endOffset": 2523, "count": 32 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 2541, "endOffset": 22181, "count": 1 }, + { "startOffset": 2610, "endOffset": 2698, "count": 0 }, + { "startOffset": 2699, "endOffset": 2808, "count": 0 }, + { "startOffset": 3217, "endOffset": 3457, "count": 0 }, + { "startOffset": 10778, "endOffset": 10874, "count": 0 }, + { "startOffset": 15589, "endOffset": 15641, "count": 0 }, + { "startOffset": 18955, "endOffset": 19131, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "extendStatics", + "ranges": [{ "startOffset": 2661, "endOffset": 2697, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "extendStatics", + "ranges": [{ "startOffset": 2711, "endOffset": 2808, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__extends", + "ranges": [{ "startOffset": 2829, "endOffset": 3183, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__assign", + "ranges": [{ "startOffset": 3220, "endOffset": 3457, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__rest", + "ranges": [{ "startOffset": 3475, "endOffset": 3976, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__decorate", + "ranges": [{ "startOffset": 3998, "endOffset": 4547, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__param", + "ranges": [{ "startOffset": 4566, "endOffset": 4686, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__esDecorate", + "ranges": [{ "startOffset": 4710, "endOffset": 6569, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__runInitializers", + "ranges": [{ "startOffset": 6598, "endOffset": 6905, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__propKey", + "ranges": [{ "startOffset": 6926, "endOffset": 7005, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__setFunctionName", + "ranges": [{ "startOffset": 7034, "endOffset": 7301, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__metadata", + "ranges": [{ "startOffset": 7323, "endOffset": 7506, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__awaiter", + "ranges": [{ "startOffset": 7527, "endOffset": 8202, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__generator", + "ranges": [{ "startOffset": 8225, "endOffset": 10211, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__exportStar", + "ranges": [{ "startOffset": 10235, "endOffset": 10378, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 10422, "endOffset": 10776, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 10781, "endOffset": 10873, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__values", + "ranges": [{ "startOffset": 10894, "endOffset": 11362, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__read", + "ranges": [{ "startOffset": 11380, "endOffset": 11905, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__spread", + "ranges": [{ "startOffset": 11949, "endOffset": 12101, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__spreadArrays", + "ranges": [{ "startOffset": 12151, "endOffset": 12453, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__spreadArray", + "ranges": [{ "startOffset": 12478, "endOffset": 12845, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__await", + "ranges": [{ "startOffset": 12864, "endOffset": 12964, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__asyncGenerator", + "ranges": [{ "startOffset": 12992, "endOffset": 14154, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__asyncDelegator", + "ranges": [{ "startOffset": 14182, "endOffset": 14516, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__asyncValues", + "ranges": [{ "startOffset": 14541, "endOffset": 15227, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__makeTemplateObject", + "ranges": [{ "startOffset": 15259, "endOffset": 15435, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 15486, "endOffset": 15587, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 15591, "endOffset": 15641, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ownKeys", + "ranges": [{ "startOffset": 15664, "endOffset": 15935, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [{ "startOffset": 15959, "endOffset": 16261, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importDefault", + "ranges": [{ "startOffset": 16288, "endOffset": 16379, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__classPrivateFieldGet", + "ranges": [{ "startOffset": 16413, "endOffset": 16853, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__classPrivateFieldSet", + "ranges": [{ "startOffset": 16887, "endOffset": 17427, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__classPrivateFieldIn", + "ranges": [{ "startOffset": 17460, "endOffset": 17746, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__addDisposableResource", + "ranges": [{ "startOffset": 17781, "endOffset": 18867, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_SuppressedError", + "ranges": [{ "startOffset": 18957, "endOffset": 19131, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__disposeResources", + "ranges": [{ "startOffset": 19161, "endOffset": 20184, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__rewriteRelativeImportExtension", + "ranges": [{ "startOffset": 20228, "endOffset": 20627, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "720", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/no-case/dist/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1625, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "noCase", + "ranges": [{ "startOffset": 468, "endOffset": 1296, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "replace", + "ranges": [{ "startOffset": 1394, "endOffset": 1591, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "721", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/lower-case/dist/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1324, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "localeLowerCase", + "ranges": [{ "startOffset": 894, "endOffset": 1121, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lowerCase", + "ranges": [{ "startOffset": 1202, "endOffset": 1259, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "722", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/upper-case-first/dist/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 341, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "upperCaseFirst", + "ranges": [{ "startOffset": 172, "endOffset": 266, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "723", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/cli/install_validator.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 820, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 70, "endOffset": 151, "count": 1 }, + { "startOffset": 103, "endOffset": 120, "count": 0 }, + { "startOffset": 122, "endOffset": 127, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "validateInstall", + "ranges": [{ "startOffset": 374, "endOffset": 774, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "724", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/is-installed-globally/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 342, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 150, "endOffset": 337, "count": 1 }, + { "startOffset": 309, "endOffset": 335, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "725", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/global-dirs/index.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 3262, "count": 1 }, + { "startOffset": 2849, "endOffset": 2865, "count": 0 }, + { "startOffset": 2922, "endOffset": 2933, "count": 0 }, + { "startOffset": 3141, "endOffset": 3169, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "readRc", + "ranges": [{ "startOffset": 189, "endOffset": 285, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getEnvNpmPrefix", + "ranges": [{ "startOffset": 312, "endOffset": 560, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 450, "endOffset": 545, "count": 87 }, + { "startOffset": 513, "endOffset": 532, "count": 1 }, + { "startOffset": 533, "endOffset": 541, "count": 86 } + ], + "isBlockCoverage": true + }, + { + "functionName": "getGlobalNpmrc", + "ranges": [{ "startOffset": 586, "endOffset": 1226, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getDefaultNpmPrefix", + "ranges": [{ "startOffset": 1257, "endOffset": 1546, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getNpmPrefix", + "ranges": [ + { "startOffset": 1570, "endOffset": 1953, "count": 1 }, + { "startOffset": 1656, "endOffset": 1952, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "getYarnWindowsDirectory", + "ranges": [ + { "startOffset": 2037, "endOffset": 2217, "count": 2 }, + { "startOffset": 2060, "endOffset": 2087, "count": 0 }, + { "startOffset": 2089, "endOffset": 2199, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "getYarnPrefix", + "ranges": [ + { "startOffset": 2242, "endOffset": 2742, "count": 1 }, + { "startOffset": 2275, "endOffset": 2308, "count": 0 }, + { "startOffset": 2380, "endOffset": 2408, "count": 0 }, + { "startOffset": 2534, "endOffset": 2741, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "726", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/ini/ini.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5107, "count": 1 }, + { "startOffset": 122, "endOffset": 130, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "encode", + "ranges": [{ "startOffset": 154, "endOffset": 1192, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "dotSplit", + "ranges": [{ "startOffset": 1211, "endOffset": 1424, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "decode", + "ranges": [{ "startOffset": 1441, "endOffset": 3806, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isQuoted", + "ranges": [{ "startOffset": 3825, "endOffset": 3938, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "safe", + "ranges": [{ "startOffset": 3953, "endOffset": 4189, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "unsafe", + "ranges": [{ "startOffset": 4206, "endOffset": 5008, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "727", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/is-path-inside/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 290, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "module.exports", + "ranges": [ + { "startOffset": 62, "endOffset": 288, "count": 2 }, + { "startOffset": 241, "endOffset": 282, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "728", + "url": "node:internal/modules/esm/module_map", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 4026, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 284, "endOffset": 309, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "serializeKey", + "ranges": [ + { "startOffset": 1149, "endOffset": 1761, "count": 89 }, + { "startOffset": 1558, "endOffset": 1760, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1677, "endOffset": 1743, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#getModuleCachedImports", + "ranges": [ + { "startOffset": 1765, "endOffset": 1981, "count": 178 }, + { "startOffset": 1879, "endOffset": 1951, "count": 9 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2156, "endOffset": 2258, "count": 89 }], + "isBlockCoverage": true + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 2427, "endOffset": 2556, "count": 89 }], + "isBlockCoverage": true + }, + { + "functionName": "has", + "ranges": [{ "startOffset": 2666, "endOffset": 2770, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [ + { "startOffset": 2904, "endOffset": 3050, "count": 90 }, + { "startOffset": 3037, "endOffset": 3045, "count": 67 } + ], + "isBlockCoverage": true + }, + { + "functionName": "set", + "ranges": [ + { "startOffset": 3053, "endOffset": 3666, "count": 46 }, + { "startOffset": 3287, "endOffset": 3323, "count": 0 }, + { "startOffset": 3325, "endOffset": 3395, "count": 0 }, + { "startOffset": 3482, "endOffset": 3488, "count": 0 }, + { "startOffset": 3560, "endOffset": 3582, "count": 23 } + ], + "isBlockCoverage": true + }, + { + "functionName": "has", + "ranges": [{ "startOffset": 3669, "endOffset": 3829, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "delete", + "ranges": [{ "startOffset": 3832, "endOffset": 3971, "count": 23 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "729", + "url": "node:internal/modules/esm/translators", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 24510, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1245, "endOffset": 1270, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "getSource", + "ranges": [{ "startOffset": 1883, "endOffset": 2011, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "errPath", + "ranges": [{ "startOffset": 2286, "endOffset": 2431, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "moduleStrategy", + "ranges": [ + { "startOffset": 2513, "endOffset": 3008, "count": 11 }, + { "startOffset": 2894, "endOffset": 2906, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "loadCJSModule", + "ranges": [{ "startOffset": 3840, "endOffset": 7348, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createCJSModuleWrap", + "ranges": [ + { "startOffset": 7942, "endOffset": 9769, "count": 1 }, + { "startOffset": 8376, "endOffset": 8409, "count": 0 }, + { "startOffset": 8785, "endOffset": 8841, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 8897, "endOffset": 9757, "count": 1 }, + { "startOffset": 9188, "endOffset": 9231, "count": 0 }, + { "startOffset": 9274, "endOffset": 9666, "count": 12 }, + { "startOffset": 9412, "endOffset": 9439, "count": 0 }, + { "startOffset": 9563, "endOffset": 9619, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "createCJSNoSourceModuleWrap", + "ranges": [{ "startOffset": 10049, "endOffset": 11257, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "requireCommonJS", + "ranges": [{ "startOffset": 11292, "endOffset": 11447, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 11609, "endOffset": 11714, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 11887, "endOffset": 12089, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "loadCJSModuleWithModuleLoad", + "ranges": [{ "startOffset": 12159, "endOffset": 12511, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "commonjsStrategy", + "ranges": [{ "startOffset": 12697, "endOffset": 13765, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cjsEmplaceModuleCacheEntry", + "ranges": [ + { "startOffset": 14002, "endOffset": 14442, "count": 1 }, + { "startOffset": 14187, "endOffset": 14211, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "cjsPreparseModuleExports", + "ranges": [ + { "startOffset": 14714, "endOffset": 16332, "count": 1 }, + { "startOffset": 14879, "endOffset": 14948, "count": 0 }, + { "startOffset": 14978, "endOffset": 15055, "count": 0 }, + { "startOffset": 15442, "endOffset": 16295, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "builtinStrategy", + "ranges": [ + { "startOffset": 16456, "endOffset": 16898, "count": 10 }, + { "startOffset": 16771, "endOffset": 16823, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "jsonStrategy", + "ranges": [{ "startOffset": 16962, "endOffset": 19212, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 19569, "endOffset": 23034, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "translateAddon", + "ranges": [{ "startOffset": 23095, "endOffset": 23583, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 23679, "endOffset": 24049, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 24139, "endOffset": 24507, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "730", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/tsx/dist/loader.mjs", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 713, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "731", + "url": "node:internal/modules/esm/module_job", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 21215, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 485, "endOffset": 510, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "findCommonJSGlobalLikeNotDefinedError", + "ranges": [{ "startOffset": 1562, "endOffset": 1693, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "explainCommonJSGlobalLikeNotDefinedError", + "ranges": [{ "startOffset": 1819, "endOffset": 3583, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ModuleJobBase", + "ranges": [{ "startOffset": 3610, "endOffset": 3901, "count": 23 }], + "isBlockCoverage": true + }, + { + "functionName": "syncLink", + "ranges": [ + { "startOffset": 4078, "endOffset": 5600, "count": 23 }, + { "startOffset": 4618, "endOffset": 5288, "count": 88 } + ], + "isBlockCoverage": true + }, + { + "functionName": "ensurePhase", + "ranges": [ + { "startOffset": 5787, "endOffset": 6034, "count": 67 }, + { "startOffset": 5849, "endOffset": 6030, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "ModuleJob", + "ranges": [ + { "startOffset": 6880, "endOffset": 7910, "count": 1 }, + { "startOffset": 7227, "endOffset": 7284, "count": 0 }, + { "startOffset": 7681, "endOffset": 7750, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "link", + "ranges": [ + { "startOffset": 8055, "endOffset": 8216, "count": 1 }, + { "startOffset": 8123, "endOffset": 8173, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "#asyncLink", + "ranges": [{ "startOffset": 8345, "endOffset": 10181, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#instantiate", + "ranges": [{ "startOffset": 10185, "endOffset": 10336, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "#asyncInstantiate", + "ranges": [ + { "startOffset": 10340, "endOffset": 13835, "count": 1 }, + { "startOffset": 11030, "endOffset": 11207, "count": 0 }, + { "startOffset": 11264, "endOffset": 13588, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "addJobsToDependencyGraph", + "ranges": [ + { "startOffset": 10547, "endOffset": 10929, "count": 1 }, + { "startOffset": 10681, "endOffset": 10706, "count": 0 }, + { "startOffset": 10798, "endOffset": 10823, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "runSync", + "ranges": [{ "startOffset": 13839, "endOffset": 15986, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "run", + "ranges": [ + { "startOffset": 15990, "endOffset": 16595, "count": 1 }, + { "startOffset": 16165, "endOffset": 16239, "count": 0 }, + { "startOffset": 16408, "endOffset": 16538, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "ModuleJobSync", + "ranges": [{ "startOffset": 17804, "endOffset": 18241, "count": 22 }], + "isBlockCoverage": true + }, + { + "functionName": "link", + "ranges": [{ "startOffset": 18361, "endOffset": 18484, "count": 22 }], + "isBlockCoverage": true + }, + { + "functionName": "get modulePromise", + "ranges": [{ "startOffset": 18488, "endOffset": 18553, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "run", + "ranges": [{ "startOffset": 18557, "endOffset": 19748, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "runSync", + "ranges": [ + { "startOffset": 19752, "endOffset": 21093, "count": 1 }, + { "startOffset": 20631, "endOffset": 20686, "count": 0 }, + { "startOffset": 20688, "endOffset": 20763, "count": 0 }, + { "startOffset": 20959, "endOffset": 21089, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "732", + "url": "node:internal/modules/esm/load", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 5944, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "getSourceSync", + "ranges": [ + { "startOffset": 802, "endOffset": 1363, "count": 12 }, + { "startOffset": 982, "endOffset": 1310, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "defaultLoad", + "ranges": [{ "startOffset": 1484, "endOffset": 2964, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "defaultLoadSync", + "ranges": [ + { "startOffset": 3477, "endOffset": 4647, "count": 22 }, + { "startOffset": 3818, "endOffset": 3868, "count": 10 }, + { "startOffset": 3868, "endOffset": 4480, "count": 12 }, + { "startOffset": 3898, "endOffset": 4010, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "throwIfUnsupportedURLScheme", + "ranges": [ + { "startOffset": 4788, "endOffset": 5239, "count": 22 }, + { "startOffset": 4990, "endOffset": 5017, "count": 10 }, + { "startOffset": 5018, "endOffset": 5045, "count": 10 }, + { "startOffset": 5046, "endOffset": 5118, "count": 0 }, + { "startOffset": 5123, "endOffset": 5237, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "throwUnknownModuleFormat", + "ranges": [{ "startOffset": 5602, "endOffset": 5840, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "733", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/tsx/dist/get-pipe-path-_tAJyU_v.mjs", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 368, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "t", + "ranges": [{ "startOffset": 34, "endOffset": 78, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 262, "endOffset": 327, "count": 1 }, + { "startOffset": 304, "endOffset": 324, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "734", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/tsx/dist/temporary-directory-BDDVQOvU.mjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 151, "count": 1 }, + { "startOffset": 80, "endOffset": 102, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "735", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/tsx/dist/esm/index.mjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 785, "count": 1 }, + { "startOffset": 702, "endOffset": 711, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "736", + "url": "node:worker_threads", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1005, "count": 1 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "737", + "url": "node:internal/worker", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 19911, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2631, "endOffset": 2656, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "process.chdir", + "ranges": [{ "startOffset": 2960, "endOffset": 3039, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setEnvironmentData", + "ranges": [{ "startOffset": 3044, "endOffset": 3191, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getEnvironmentData", + "ranges": [{ "startOffset": 3193, "endOffset": 3264, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "assignEnvironmentData", + "ranges": [{ "startOffset": 3266, "endOffset": 3416, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3445, "endOffset": 3492, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "CPUProfileHandle", + "ranges": [{ "startOffset": 3497, "endOffset": 3572, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stop", + "ranges": [{ "startOffset": 3576, "endOffset": 3994, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3999, "endOffset": 4056, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4088, "endOffset": 4121, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "HeapProfileHandle", + "ranges": [{ "startOffset": 4126, "endOffset": 4178, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stop", + "ranges": [{ "startOffset": 4182, "endOffset": 4593, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4598, "endOffset": 4655, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Worker", + "ranges": [ + { "startOffset": 4697, "endOffset": 10414, "count": 1 }, + { "startOffset": 5107, "endOffset": 5219, "count": 0 }, + { "startOffset": 5262, "endOffset": 5328, "count": 0 }, + { "startOffset": 5352, "endOffset": 5616, "count": 0 }, + { "startOffset": 5642, "endOffset": 5674, "count": 0 }, + { "startOffset": 5676, "endOffset": 5760, "count": 0 }, + { "startOffset": 5817, "endOffset": 5894, "count": 0 }, + { "startOffset": 5934, "endOffset": 6065, "count": 0 }, + { "startOffset": 6101, "endOffset": 6174, "count": 0 }, + { "startOffset": 6267, "endOffset": 6327, "count": 0 }, + { "startOffset": 6388, "endOffset": 6411, "count": 0 }, + { "startOffset": 6413, "endOffset": 6589, "count": 0 }, + { "startOffset": 6652, "endOffset": 6848, "count": 0 }, + { "startOffset": 6903, "endOffset": 7010, "count": 0 }, + { "startOffset": 7264, "endOffset": 7269, "count": 0 }, + { "startOffset": 7606, "endOffset": 7690, "count": 0 }, + { "startOffset": 7733, "endOffset": 7866, "count": 0 }, + { "startOffset": 8314, "endOffset": 8368, "count": 0 }, + { "startOffset": 9656, "endOffset": 9684, "count": 0 }, + { "startOffset": 10334, "endOffset": 10410, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6521, "endOffset": 6573, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Worker..onexit", + "ranges": [{ "startOffset": 7894, "endOffset": 7994, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8071, "endOffset": 8103, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9341, "endOffset": 9434, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9388, "endOffset": 9426, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 10252, "endOffset": 10286, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 10418, "endOffset": 11092, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 11096, "endOffset": 11192, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 11196, "endOffset": 11365, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 11369, "endOffset": 12344, "count": 1 }, + { "startOffset": 11535, "endOffset": 11627, "count": 0 }, + { "startOffset": 11634, "endOffset": 11719, "count": 0 }, + { "startOffset": 11726, "endOffset": 12092, "count": 0 }, + { "startOffset": 12099, "endOffset": 12269, "count": 0 }, + { "startOffset": 12275, "endOffset": 12343, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 12348, "endOffset": 12816, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "postMessage", + "ranges": [ + { "startOffset": 12820, "endOffset": 12965, "count": 3 }, + { "startOffset": 12879, "endOffset": 12886, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "terminate", + "ranges": [{ "startOffset": 12969, "endOffset": 13803, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 13807, "endOffset": 13869, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ref", + "ranges": [{ "startOffset": 13873, "endOffset": 13979, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "unref", + "ranges": [ + { "startOffset": 13983, "endOffset": 14095, "count": 1 }, + { "startOffset": 14025, "endOffset": 14032, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get threadId", + "ranges": [ + { "startOffset": 14099, "endOffset": 14198, "count": 2 }, + { "startOffset": 14148, "endOffset": 14158, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get threadName", + "ranges": [{ "startOffset": 14202, "endOffset": 14307, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get stdin", + "ranges": [{ "startOffset": 14311, "endOffset": 14369, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get stdout", + "ranges": [{ "startOffset": 14373, "endOffset": 14433, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get stderr", + "ranges": [{ "startOffset": 14437, "endOffset": 14497, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get resourceLimits", + "ranges": [{ "startOffset": 14501, "endOffset": 14637, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getHeapSnapshot", + "ranges": [{ "startOffset": 14641, "endOffset": 15148, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getHeapStatistics", + "ranges": [{ "startOffset": 15152, "endOffset": 15418, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cpuUsage", + "ranges": [{ "startOffset": 15422, "endOffset": 16338, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "startCpuProfile", + "ranges": [{ "startOffset": 16419, "endOffset": 16779, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "startHeapProfile", + "ranges": [{ "startOffset": 16783, "endOffset": 17138, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "InternalWorker", + "ranges": [{ "startOffset": 17331, "endOffset": 17410, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "receiveMessageSync", + "ranges": [{ "startOffset": 17414, "endOffset": 17492, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pipeWithoutWarning", + "ranges": [{ "startOffset": 17496, "endOffset": 17818, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "parseResourceLimits", + "ranges": [ + { "startOffset": 17892, "endOffset": 18506, "count": 1 }, + { "startOffset": 18029, "endOffset": 18044, "count": 0 }, + { "startOffset": 18057, "endOffset": 18505, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "makeResourceLimits", + "ranges": [{ "startOffset": 18508, "endOffset": 18795, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "eventLoopUtilization", + "ranges": [{ "startOffset": 18797, "endOffset": 19600, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "738", + "url": "node:internal/worker/io", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 14151, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "lazyMessageEvent", + "ranges": [{ "startOffset": 2368, "endOffset": 2546, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hasRef", + "ranges": [{ "startOffset": 3854, "endOffset": 3944, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4144, "endOffset": 4462, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "oninit", + "ranges": [{ "startOffset": 4602, "endOffset": 4745, "count": 7 }], + "isBlockCoverage": true + }, + { + "functionName": "MessagePortCloseEvent", + "ranges": [{ "startOffset": 5047, "endOffset": 5086, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "onclose", + "ranges": [{ "startOffset": 5159, "endOffset": 5232, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "close", + "ranges": [{ "startOffset": 5413, "endOffset": 5554, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inspect", + "ranges": [{ "startOffset": 5687, "endOffset": 6315, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setupPortReferencing", + "ranges": [{ "startOffset": 6322, "endOffset": 7685, "count": 8 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 6683, "endOffset": 6778, "count": 1 }, + { "startOffset": 6728, "endOffset": 6774, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6817, "endOffset": 6915, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 7017, "endOffset": 7162, "count": 4 }, + { "startOffset": 7077, "endOffset": 7099, "count": 3 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 7273, "endOffset": 7420, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "newListener", + "ranges": [{ "startOffset": 7426, "endOffset": 7567, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "removeListener", + "ranges": [{ "startOffset": 7571, "endOffset": 7683, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ReadableWorkerStdio", + "ranges": [{ "startOffset": 7735, "endOffset": 8084, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 7913, "endOffset": 8078, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_read", + "ranges": [ + { "startOffset": 8088, "endOffset": 8394, "count": 2 }, + { "startOffset": 8158, "endOffset": 8276, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "WritableWorkerStdio", + "ranges": [{ "startOffset": 8445, "endOffset": 8595, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_writev", + "ranges": [{ "startOffset": 8599, "endOffset": 9253, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_final", + "ranges": [{ "startOffset": 9257, "endOffset": 9437, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9441, "endOffset": 9665, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createWorkerStdio", + "ranges": [{ "startOffset": 9669, "endOffset": 9939, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "receiveMessageOnPort", + "ranges": [ + { "startOffset": 9941, "endOffset": 10121, "count": 3 }, + { "startOffset": 10080, "endOffset": 10097, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "onMessageEvent", + "ranges": [{ "startOffset": 10123, "endOffset": 10218, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isBroadcastChannel", + "ranges": [{ "startOffset": 10220, "endOffset": 10306, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "BroadcastChannel", + "ranges": [{ "startOffset": 10393, "endOffset": 10907, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 10911, "endOffset": 11324, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get name", + "ranges": [{ "startOffset": 11360, "endOffset": 11489, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "close", + "ranges": [{ "startOffset": 11526, "endOffset": 11924, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "postMessage", + "ranges": [{ "startOffset": 11992, "endOffset": 12423, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ref", + "ranges": [{ "startOffset": 12706, "endOffset": 12873, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "unref", + "ranges": [{ "startOffset": 13158, "endOffset": 13329, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "markAsUncloneable", + "ranges": [{ "startOffset": 13610, "endOffset": 13793, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "739", + "url": "node:internal/worker/messaging", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 6680, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "handleMessageFromThread", + "ranges": [ + { "startOffset": 1568, "endOffset": 2603, "count": 1 }, + { "startOffset": 2162, "endOffset": 2316, "count": 0 }, + { "startOffset": 2321, "endOffset": 2597, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "handleMessageFromMainThread", + "ranges": [{ "startOffset": 2605, "endOffset": 2827, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "sendMessageToWorker", + "ranges": [{ "startOffset": 2829, "endOffset": 3626, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "receiveMessageFromWorker", + "ranges": [{ "startOffset": 3628, "endOffset": 4186, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createMainThreadPort", + "ranges": [ + { "startOffset": 4188, "endOffset": 4737, "count": 1 }, + { "startOffset": 4613, "endOffset": 4701, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "destroyMainThreadPort", + "ranges": [{ "startOffset": 4739, "endOffset": 5033, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setupMainThreadPort", + "ranges": [{ "startOffset": 5035, "endOffset": 5228, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "postMessageToThread", + "ranges": [{ "startOffset": 5230, "endOffset": 6561, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "740", + "url": "node:internal/error_serdes", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 6023, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "TryGetAllProperties", + "ranges": [{ "startOffset": 1067, "endOffset": 2210, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "GetConstructors", + "ranges": [{ "startOffset": 2212, "endOffset": 2648, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "GetName", + "ranges": [{ "startOffset": 2650, "endOffset": 2763, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inspect", + "ranges": [{ "startOffset": 2790, "endOffset": 2926, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "serializeError", + "ranges": [{ "startOffset": 2943, "endOffset": 4399, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fromBuffer", + "ranges": [{ "startOffset": 4401, "endOffset": 4622, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "deserializeError", + "ranges": [{ "startOffset": 4641, "endOffset": 5966, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "741", + "url": "node:internal/locks", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 8340, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "defaultValue", + "ranges": [{ "startOffset": 1044, "endOffset": 1061, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "converter", + "ranges": [{ "startOffset": 1111, "endOffset": 1129, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "defaultValue", + "ranges": [{ "startOffset": 1149, "endOffset": 1160, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "converter", + "ranges": [{ "startOffset": 1204, "endOffset": 1222, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "defaultValue", + "ranges": [{ "startOffset": 1242, "endOffset": 1253, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Lock", + "ranges": [{ "startOffset": 1387, "endOffset": 1570, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get name", + "ranges": [{ "startOffset": 1574, "endOffset": 1694, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get mode", + "ranges": [{ "startOffset": 1698, "endOffset": 1818, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createLock", + "ranges": [{ "startOffset": 2125, "endOffset": 2266, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "convertLockError", + "ranges": [{ "startOffset": 2324, "endOffset": 2504, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "LockManager", + "ranges": [ + { "startOffset": 2581, "endOffset": 2711, "count": 1 }, + { "startOffset": 2657, "endOffset": 2707, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "request", + "ranges": [{ "startOffset": 3591, "endOffset": 7592, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "query", + "ranges": [{ "startOffset": 7843, "endOffset": 7982, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "742", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/tsx/dist/node-features-Eq_kCbjt.mjs", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 595, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "r", + "ranges": [{ "startOffset": 34, "endOffset": 78, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 89, "endOffset": 182, "count": 11 }, + { "startOffset": 124, "endOffset": 171, "count": 2 }, + { "startOffset": 155, "endOffset": 166, "count": 0 }, + { "startOffset": 171, "endOffset": 181, "count": 9 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 261, "endOffset": 367, "count": 11 }, + { "startOffset": 299, "endOffset": 358, "count": 21 }, + { "startOffset": 330, "endOffset": 343, "count": 12 }, + { "startOffset": 344, "endOffset": 357, "count": 11 }, + { "startOffset": 358, "endOffset": 366, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "743", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/tsx/dist/register-BmBLtb39.mjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 14366, "count": 1 }, + { "startOffset": 3115, "endOffset": 3134, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "i", + "ranges": [{ "startOffset": 35, "endOffset": 80, "count": 42 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 727, "endOffset": 943, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 963, "endOffset": 1242, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1262, "endOffset": 1355, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1388, "endOffset": 1637, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 1662, "endOffset": 1863, "count": 4 }, + { "startOffset": 1678, "endOffset": 1714, "count": 2 }, + { "startOffset": 1714, "endOffset": 1817, "count": 1 }, + { "startOffset": 1817, "endOffset": 1862, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1892, "endOffset": 2108, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 2133, "endOffset": 2337, "count": 2 }, + { "startOffset": 2226, "endOffset": 2336, "count": 4 }, + { "startOffset": 2253, "endOffset": 2330, "count": 2 }, + { "startOffset": 2330, "endOffset": 2335, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2366, "endOffset": 2406, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2430, "endOffset": 2456, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2484, "endOffset": 2657, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 2687, "endOffset": 2860, "count": 16 }, + { "startOffset": 2761, "endOffset": 2776, "count": 0 }, + { "startOffset": 2802, "endOffset": 2819, "count": 14 }, + { "startOffset": 2819, "endOffset": 2831, "count": 2 }, + { "startOffset": 2831, "endOffset": 2846, "count": 0 }, + { "startOffset": 2847, "endOffset": 2859, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 2912, "endOffset": 3072, "count": 124 }, + { "startOffset": 2954, "endOffset": 2988, "count": 0 }, + { "startOffset": 2989, "endOffset": 3071, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 3139, "endOffset": 3183, "count": 38 }, + { "startOffset": 3156, "endOffset": 3183, "count": 30 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3208, "endOffset": 3252, "count": 8 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3285, "endOffset": 3363, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 3387, "endOffset": 3538, "count": 38 }, + { "startOffset": 3480, "endOffset": 3521, "count": 0 }, + { "startOffset": 3532, "endOffset": 3537, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 3557, "endOffset": 3695, "count": 38 }, + { "startOffset": 3578, "endOffset": 3587, "count": 0 }, + { "startOffset": 3618, "endOffset": 3638, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 3716, "endOffset": 3808, "count": 38 }, + { "startOffset": 3748, "endOffset": 3807, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3839, "endOffset": 3908, "count": 241 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 3944, "endOffset": 5083, "count": 1 }, + { "startOffset": 4971, "endOffset": 5080, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3958, "endOffset": 4953, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4972, "endOffset": 5080, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 5103, "endOffset": 6255, "count": 1 }, + { "startOffset": 6146, "endOffset": 6252, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 5117, "endOffset": 6128, "count": 241 }, + { "startOffset": 5140, "endOffset": 5149, "count": 38 }, + { "startOffset": 5150, "endOffset": 5164, "count": 203 }, + { "startOffset": 5164, "endOffset": 5265, "count": 38 }, + { "startOffset": 5265, "endOffset": 5270, "count": 8 }, + { "startOffset": 5270, "endOffset": 5272, "count": 30 }, + { "startOffset": 5291, "endOffset": 5333, "count": 8 }, + { "startOffset": 5312, "endOffset": 5324, "count": 0 }, + { "startOffset": 5333, "endOffset": 5354, "count": 0 }, + { "startOffset": 5355, "endOffset": 5759, "count": 0 }, + { "startOffset": 5759, "endOffset": 5772, "count": 38 }, + { "startOffset": 5772, "endOffset": 5781, "count": 30 }, + { "startOffset": 5781, "endOffset": 5838, "count": 8 }, + { "startOffset": 5838, "endOffset": 5949, "count": 0 }, + { "startOffset": 5949, "endOffset": 5986, "count": 8 }, + { "startOffset": 5987, "endOffset": 6061, "count": 0 }, + { "startOffset": 6061, "endOffset": 6084, "count": 8 }, + { "startOffset": 6084, "endOffset": 6119, "count": 0 }, + { "startOffset": 6119, "endOffset": 6127, "count": 8 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6147, "endOffset": 6252, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 6339, "endOffset": 6361, "count": 24 }, + { "startOffset": 6348, "endOffset": 6361, "count": 10 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6398, "endOffset": 6807, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6842, "endOffset": 6895, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6920, "endOffset": 7173, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 7199, "endOffset": 7445, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 7476, "endOffset": 8069, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 8090, "endOffset": 8672, "count": 24 }, + { "startOffset": 8350, "endOffset": 8376, "count": 14 }, + { "startOffset": 8377, "endOffset": 8476, "count": 0 }, + { "startOffset": 8494, "endOffset": 8671, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8697, "endOffset": 9341, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 9367, "endOffset": 9996, "count": 24 }, + { "startOffset": 9494, "endOffset": 9504, "count": 0 }, + { "startOffset": 9515, "endOffset": 9615, "count": 0 }, + { "startOffset": 9638, "endOffset": 9995, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 10026, "endOffset": 10437, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 10461, "endOffset": 10869, "count": 24 }, + { "startOffset": 10652, "endOffset": 10712, "count": 10 }, + { "startOffset": 10713, "endOffset": 10850, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 10908, "endOffset": 10977, "count": 2056 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 11011, "endOffset": 11862, "count": 1 }, + { "startOffset": 11723, "endOffset": 11859, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 11025, "endOffset": 11702, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 11724, "endOffset": 11859, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 11885, "endOffset": 12732, "count": 1 }, + { "startOffset": 12596, "endOffset": 12729, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 11899, "endOffset": 12575, "count": 2101 }, + { "startOffset": 11944, "endOffset": 11956, "count": 2056 }, + { "startOffset": 11957, "endOffset": 11971, "count": 2077 }, + { "startOffset": 11971, "endOffset": 12012, "count": 24 }, + { "startOffset": 12028, "endOffset": 12204, "count": 0 }, + { "startOffset": 12204, "endOffset": 12572, "count": 24 }, + { "startOffset": 12314, "endOffset": 12380, "count": 0 }, + { "startOffset": 12402, "endOffset": 12485, "count": 16 }, + { "startOffset": 12487, "endOffset": 12505, "count": 0 }, + { "startOffset": 12507, "endOffset": 12571, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 12597, "endOffset": 12729, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 12768, "endOffset": 13020, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 13064, "endOffset": 14304, "count": 1 }, + { "startOffset": 13132, "endOffset": 13136, "count": 0 }, + { "startOffset": 13137, "endOffset": 13287, "count": 0 }, + { "startOffset": 13468, "endOffset": 13479, "count": 0 }, + { "startOffset": 13490, "endOffset": 13500, "count": 0 }, + { "startOffset": 13511, "endOffset": 13521, "count": 0 }, + { "startOffset": 13676, "endOffset": 13730, "count": 0 }, + { "startOffset": 13733, "endOffset": 13868, "count": 0 }, + { "startOffset": 13879, "endOffset": 13889, "count": 0 }, + { "startOffset": 13919, "endOffset": 13929, "count": 0 }, + { "startOffset": 13933, "endOffset": 13967, "count": 0 }, + { "startOffset": 13969, "endOffset": 14000, "count": 0 }, + { "startOffset": 14247, "endOffset": 14301, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "R._resolveFilename", + "ranges": [{ "startOffset": 13342, "endOffset": 13365, "count": 2450 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 13574, "endOffset": 13652, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 13936, "endOffset": 13966, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 14011, "endOffset": 14224, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "744", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/tsx/dist/register-HCiphi1e.mjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 35938, "count": 1 }, + { "startOffset": 30081, "endOffset": 30116, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "u", + "ranges": [{ "startOffset": 35, "endOffset": 80, "count": 80 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 548, "endOffset": 713, "count": 2450 }, + { "startOffset": 601, "endOffset": 712, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 742, "endOffset": 821, "count": 2450 }, + { "startOffset": 768, "endOffset": 818, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 848, "endOffset": 879, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 889, "endOffset": 945, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1111, "endOffset": 1155, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1176, "endOffset": 1667, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1684, "endOffset": 1763, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Lt", + "ranges": [{ "startOffset": 1769, "endOffset": 2047, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2068, "endOffset": 2246, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2268, "endOffset": 2714, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2753, "endOffset": 2798, "count": 120 }], + "isBlockCoverage": true + }, + { + "functionName": "S", + "ranges": [ + { "startOffset": 2804, "endOffset": 2872, "count": 5 }, + { "startOffset": 2848, "endOffset": 2850, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2905, "endOffset": 3020, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 3037, "endOffset": 3162, "count": 4 }, + { "startOffset": 3120, "endOffset": 3133, "count": 2 }, + { "startOffset": 3153, "endOffset": 3161, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 3178, "endOffset": 3283, "count": 2 }, + { "startOffset": 3195, "endOffset": 3282, "count": 4 }, + { "startOffset": 3232, "endOffset": 3271, "count": 2 }, + { "startOffset": 3271, "endOffset": 3278, "count": 0 }, + { "startOffset": 3278, "endOffset": 3282, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "Fe", + "ranges": [ + { "startOffset": 3294, "endOffset": 6663, "count": 2 }, + { "startOffset": 6360, "endOffset": 6362, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "w", + "ranges": [{ "startOffset": 3373, "endOffset": 3575, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "k", + "ranges": [{ "startOffset": 3605, "endOffset": 3641, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "y", + "ranges": [{ "startOffset": 3669, "endOffset": 4169, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "C", + "ranges": [ + { "startOffset": 4196, "endOffset": 4754, "count": 198 }, + { "startOffset": 4229, "endOffset": 4745, "count": 2312 }, + { "startOffset": 4238, "endOffset": 4269, "count": 0 }, + { "startOffset": 4303, "endOffset": 4334, "count": 198 }, + { "startOffset": 4334, "endOffset": 4344, "count": 2114 }, + { "startOffset": 4344, "endOffset": 4678, "count": 0 }, + { "startOffset": 4678, "endOffset": 4692, "count": 2114 }, + { "startOffset": 4693, "endOffset": 4741, "count": 0 }, + { "startOffset": 4741, "endOffset": 4745, "count": 2114 } + ], + "isBlockCoverage": true + }, + { + "functionName": "f", + "ranges": [ + { "startOffset": 4781, "endOffset": 6008, "count": 814 }, + { "startOffset": 4823, "endOffset": 4839, "count": 2 }, + { "startOffset": 4839, "endOffset": 4869, "count": 812 }, + { "startOffset": 4869, "endOffset": 4945, "count": 233 }, + { "startOffset": 4873, "endOffset": 4921, "count": 958 }, + { "startOffset": 4945, "endOffset": 4953, "count": 579 }, + { "startOffset": 4953, "endOffset": 5046, "count": 133 }, + { "startOffset": 4996, "endOffset": 5032, "count": 0 }, + { "startOffset": 5046, "endOffset": 5056, "count": 446 }, + { "startOffset": 5056, "endOffset": 5104, "count": 12 }, + { "startOffset": 5104, "endOffset": 5150, "count": 3 }, + { "startOffset": 5150, "endOffset": 5173, "count": 104 }, + { "startOffset": 5173, "endOffset": 5196, "count": 103 }, + { "startOffset": 5196, "endOffset": 5226, "count": 198 }, + { "startOffset": 5226, "endOffset": 5801, "count": 0 }, + { "startOffset": 5801, "endOffset": 6006, "count": 11 }, + { "startOffset": 5817, "endOffset": 5823, "count": 63 }, + { "startOffset": 5825, "endOffset": 5847, "count": 52 }, + { "startOffset": 5886, "endOffset": 5908, "count": 3 }, + { "startOffset": 5908, "endOffset": 5931, "count": 8 }, + { "startOffset": 5931, "endOffset": 5952, "count": 0 }, + { "startOffset": 5953, "endOffset": 6006, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "b", + "ranges": [ + { "startOffset": 6033, "endOffset": 6164, "count": 63 }, + { "startOffset": 6061, "endOffset": 6070, "count": 1 }, + { "startOffset": 6070, "endOffset": 6080, "count": 62 }, + { "startOffset": 6080, "endOffset": 6130, "count": 0 }, + { "startOffset": 6130, "endOffset": 6154, "count": 10 }, + { "startOffset": 6155, "endOffset": 6163, "count": 52 } + ], + "isBlockCoverage": true + }, + { + "functionName": "j", + "ranges": [{ "startOffset": 6206, "endOffset": 6263, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6333, "endOffset": 6338, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6376, "endOffset": 6381, "count": 830 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6410, "endOffset": 6415, "count": 198 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6450, "endOffset": 6455, "count": 239 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6491, "endOffset": 6498, "count": 239 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6537, "endOffset": 6542, "count": 239 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6589, "endOffset": 6596, "count": 239 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6639, "endOffset": 6644, "count": 814 }], + "isBlockCoverage": true + }, + { + "functionName": "Y", + "ranges": [ + { "startOffset": 6696, "endOffset": 6731, "count": 1833 }, + { "startOffset": 6723, "endOffset": 6730, "count": 875 } + ], + "isBlockCoverage": true + }, + { + "functionName": "N", + "ranges": [ + { "startOffset": 6760, "endOffset": 6796, "count": 642 }, + { "startOffset": 6787, "endOffset": 6795, "count": 508 } + ], + "isBlockCoverage": true + }, + { + "functionName": "U", + "ranges": [{ "startOffset": 6824, "endOffset": 6858, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6890, "endOffset": 8300, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8341, "endOffset": 8361, "count": 20 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8400, "endOffset": 8424, "count": 200 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8451, "endOffset": 8476, "count": 200 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8503, "endOffset": 8529, "count": 200 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8556, "endOffset": 8580, "count": 200 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8607, "endOffset": 8632, "count": 200 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8659, "endOffset": 8685, "count": 200 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8694, "endOffset": 8740, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Ie", + "ranges": [{ "startOffset": 8753, "endOffset": 9289, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "a", + "ranges": [ + { "startOffset": 8812, "endOffset": 8872, "count": 120 }, + { "startOffset": 8842, "endOffset": 8852, "count": 16 }, + { "startOffset": 8852, "endOffset": 8871, "count": 104 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8925, "endOffset": 8967, "count": 12 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9004, "endOffset": 9012, "count": 104 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9047, "endOffset": 9062, "count": 12 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9093, "endOffset": 9135, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9165, "endOffset": 9180, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9222, "endOffset": 9268, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Re", + "ranges": [ + { "startOffset": 9316, "endOffset": 12327, "count": 2 }, + { "startOffset": 12232, "endOffset": 12271, "count": 0 }, + { "startOffset": 12294, "endOffset": 12306, "count": 0 }, + { "startOffset": 12310, "endOffset": 12326, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "a", + "ranges": [ + { "startOffset": 9375, "endOffset": 9506, "count": 2 }, + { "startOffset": 9397, "endOffset": 9498, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9398, "endOffset": 9498, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9499, "endOffset": 9505, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "c", + "ranges": [ + { "startOffset": 9535, "endOffset": 9667, "count": 4 }, + { "startOffset": 9557, "endOffset": 9666, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9558, "endOffset": 9659, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9660, "endOffset": 9666, "count": 207 }], + "isBlockCoverage": true + }, + { + "functionName": "l", + "ranges": [ + { "startOffset": 9697, "endOffset": 9843, "count": 4 }, + { "startOffset": 9835, "endOffset": 9842, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9720, "endOffset": 9835, "count": 209 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9821, "endOffset": 9834, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9836, "endOffset": 9842, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "h", + "ranges": [ + { "startOffset": 9881, "endOffset": 10041, "count": 4 }, + { "startOffset": 10033, "endOffset": 10040, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 9904, "endOffset": 10033, "count": 15 }, + { "startOffset": 9912, "endOffset": 9916, "count": 0 }, + { "startOffset": 10025, "endOffset": 10032, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 10006, "endOffset": 10019, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 10034, "endOffset": 10040, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "g", + "ranges": [ + { "startOffset": 10070, "endOffset": 10212, "count": 4 }, + { "startOffset": 10204, "endOffset": 10211, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 10093, "endOffset": 10204, "count": 15 }, + { "startOffset": 10101, "endOffset": 10106, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 10205, "endOffset": 10211, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "v", + "ranges": [ + { "startOffset": 10470, "endOffset": 10755, "count": 448 }, + { "startOffset": 10490, "endOffset": 10754, "count": 814 }, + { "startOffset": 10534, "endOffset": 10650, "count": 0 }, + { "startOffset": 10661, "endOffset": 10714, "count": 0 }, + { "startOffset": 10714, "endOffset": 10722, "count": 233 }, + { "startOffset": 10722, "endOffset": 10736, "count": 366 }, + { "startOffset": 10736, "endOffset": 10752, "count": 448 } + ], + "isBlockCoverage": true + }, + { + "functionName": "x", + "ranges": [{ "startOffset": 10780, "endOffset": 10941, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "D", + "ranges": [ + { "startOffset": 10969, "endOffset": 11047, "count": 198 }, + { "startOffset": 11017, "endOffset": 11022, "count": 94 }, + { "startOffset": 11022, "endOffset": 11039, "count": 104 } + ], + "isBlockCoverage": true + }, + { + "functionName": "L", + "ranges": [ + { "startOffset": 11075, "endOffset": 11281, "count": 11 }, + { "startOffset": 11109, "endOffset": 11212, "count": 0 }, + { "startOffset": 11212, "endOffset": 11231, "count": 3 }, + { "startOffset": 11231, "endOffset": 11250, "count": 8 }, + { "startOffset": 11250, "endOffset": 11266, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "P", + "ranges": [ + { "startOffset": 11310, "endOffset": 11449, "count": 104 }, + { "startOffset": 11347, "endOffset": 11366, "count": 0 }, + { "startOffset": 11406, "endOffset": 11421, "count": 0 }, + { "startOffset": 11422, "endOffset": 11436, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "R", + "ranges": [ + { "startOffset": 11479, "endOffset": 11717, "count": 12 }, + { "startOffset": 11530, "endOffset": 11549, "count": 104 }, + { "startOffset": 11551, "endOffset": 11670, "count": 104 }, + { "startOffset": 11572, "endOffset": 11627, "count": 92 }, + { "startOffset": 11577, "endOffset": 11589, "count": 0 }, + { "startOffset": 11617, "endOffset": 11620, "count": 0 }, + { "startOffset": 11621, "endOffset": 11626, "count": 0 }, + { "startOffset": 11627, "endOffset": 11646, "count": 12 }, + { "startOffset": 11633, "endOffset": 11645, "count": 0 }, + { "startOffset": 11649, "endOffset": 11664, "count": 0 }, + { "startOffset": 11697, "endOffset": 11709, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "Te", + "ranges": [ + { "startOffset": 11745, "endOffset": 12035, "count": 3 }, + { "startOffset": 11802, "endOffset": 11821, "count": 14 }, + { "startOffset": 11823, "endOffset": 11977, "count": 14 }, + { "startOffset": 11844, "endOffset": 11899, "count": 11 }, + { "startOffset": 11849, "endOffset": 11861, "count": 0 }, + { "startOffset": 11889, "endOffset": 11892, "count": 0 }, + { "startOffset": 11893, "endOffset": 11898, "count": 0 }, + { "startOffset": 11899, "endOffset": 11918, "count": 3 }, + { "startOffset": 11905, "endOffset": 11917, "count": 0 }, + { "startOffset": 11919, "endOffset": 11936, "count": 3 }, + { "startOffset": 11936, "endOffset": 11952, "count": 11 }, + { "startOffset": 11956, "endOffset": 11971, "count": 0 }, + { "startOffset": 12015, "endOffset": 12027, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "H", + "ranges": [ + { "startOffset": 12065, "endOffset": 12177, "count": 120 }, + { "startOffset": 12099, "endOffset": 12118, "count": 3 }, + { "startOffset": 12118, "endOffset": 12136, "count": 12 }, + { "startOffset": 12136, "endOffset": 12157, "count": 94 }, + { "startOffset": 12157, "endOffset": 12175, "count": 11 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 12360, "endOffset": 12689, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 12712, "endOffset": 13337, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 13372, "endOffset": 14129, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 14155, "endOffset": 14173, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 14192, "endOffset": 14246, "count": 1 }, + { "startOffset": 14227, "endOffset": 14245, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 14295, "endOffset": 14638, "count": 1 }, + { "startOffset": 14349, "endOffset": 14366, "count": 0 }, + { "startOffset": 14390, "endOffset": 14457, "count": 0 }, + { "startOffset": 14604, "endOffset": 14611, "count": 0 }, + { "startOffset": 14628, "endOffset": 14634, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 14706, "endOffset": 14880, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 14917, "endOffset": 15228, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 15264, "endOffset": 15393, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 15421, "endOffset": 16527, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 16631, "endOffset": 16677, "count": 2 }, + { "startOffset": 16665, "endOffset": 16667, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 16708, "endOffset": 19179, "count": 1 }, + { "startOffset": 16968, "endOffset": 16992, "count": 9 }, + { "startOffset": 17007, "endOffset": 17048, "count": 0 }, + { "startOffset": 17100, "endOffset": 17111, "count": 0 }, + { "startOffset": 17135, "endOffset": 17186, "count": 0 }, + { "startOffset": 17295, "endOffset": 17337, "count": 0 }, + { "startOffset": 17372, "endOffset": 17414, "count": 0 }, + { "startOffset": 17507, "endOffset": 17518, "count": 0 }, + { "startOffset": 17631, "endOffset": 17665, "count": 0 }, + { "startOffset": 17678, "endOffset": 17717, "count": 0 }, + { "startOffset": 17731, "endOffset": 17791, "count": 0 }, + { "startOffset": 17868, "endOffset": 17912, "count": 0 }, + { "startOffset": 17958, "endOffset": 17972, "count": 0 }, + { "startOffset": 18039, "endOffset": 18117, "count": 0 }, + { "startOffset": 18132, "endOffset": 18212, "count": 0 }, + { "startOffset": 18225, "endOffset": 18269, "count": 0 }, + { "startOffset": 18312, "endOffset": 18354, "count": 0 }, + { "startOffset": 18404, "endOffset": 18438, "count": 0 }, + { "startOffset": 18511, "endOffset": 18525, "count": 0 }, + { "startOffset": 18560, "endOffset": 18591, "count": 0 }, + { "startOffset": 18675, "endOffset": 18739, "count": 0 }, + { "startOffset": 18815, "endOffset": 18847, "count": 4 }, + { "startOffset": 18819, "endOffset": 18846, "count": 1 }, + { "startOffset": 18933, "endOffset": 18985, "count": 0 }, + { "startOffset": 19003, "endOffset": 19032, "count": 0 }, + { "startOffset": 19066, "endOffset": 19103, "count": 0 }, + { "startOffset": 19109, "endOffset": 19148, "count": 0 }, + { "startOffset": 19158, "endOffset": 19176, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 19128, "endOffset": 19146, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 19213, "endOffset": 19271, "count": 1 }, + { "startOffset": 19237, "endOffset": 19270, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 19296, "endOffset": 19355, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 19387, "endOffset": 19445, "count": 1 }, + { "startOffset": 19411, "endOffset": 19444, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 19470, "endOffset": 19529, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 19559, "endOffset": 19915, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 19966, "endOffset": 20026, "count": 1 }, + { "startOffset": 20018, "endOffset": 20025, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 20046, "endOffset": 20154, "count": 1 }, + { "startOffset": 20082, "endOffset": 20089, "count": 0 }, + { "startOffset": 20141, "endOffset": 20153, "count": 3 }, + { "startOffset": 20145, "endOffset": 20153, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 20184, "endOffset": 20210, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 20265, "endOffset": 20331, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 20361, "endOffset": 20472, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 20526, "endOffset": 20591, "count": 4 }, + { "startOffset": 20553, "endOffset": 20590, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 20700, "endOffset": 23178, "count": 1 }, + { "startOffset": 20727, "endOffset": 20770, "count": 0 }, + { "startOffset": 22707, "endOffset": 22710, "count": 0 }, + { "startOffset": 22758, "endOffset": 22812, "count": 6 }, + { "startOffset": 22777, "endOffset": 22811, "count": 2 }, + { "startOffset": 22800, "endOffset": 22808, "count": 0 }, + { "startOffset": 22851, "endOffset": 22926, "count": 2 }, + { "startOffset": 22866, "endOffset": 22925, "count": 0 }, + { "startOffset": 22937, "endOffset": 23026, "count": 0 }, + { "startOffset": 23079, "endOffset": 23124, "count": 3 }, + { "startOffset": 23094, "endOffset": 23123, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 20815, "endOffset": 20828, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 20845, "endOffset": 22587, "count": 1 }, + { "startOffset": 20871, "endOffset": 20880, "count": 0 }, + { "startOffset": 20903, "endOffset": 20954, "count": 0 }, + { "startOffset": 21078, "endOffset": 21114, "count": 0 }, + { "startOffset": 21160, "endOffset": 21215, "count": 0 }, + { "startOffset": 21226, "endOffset": 21887, "count": 0 }, + { "startOffset": 21977, "endOffset": 22056, "count": 2 }, + { "startOffset": 21995, "endOffset": 22013, "count": 1 }, + { "startOffset": 22014, "endOffset": 22055, "count": 1 }, + { "startOffset": 22074, "endOffset": 22195, "count": 2 }, + { "startOffset": 22087, "endOffset": 22194, "count": 1 }, + { "startOffset": 22196, "endOffset": 22222, "count": 0 }, + { "startOffset": 22272, "endOffset": 22323, "count": 0 }, + { "startOffset": 22339, "endOffset": 22567, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 21598, "endOffset": 21628, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 21698, "endOffset": 21728, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 22134, "endOffset": 22141, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 22295, "endOffset": 22321, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 22437, "endOffset": 22457, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 22880, "endOffset": 22923, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 23001, "endOffset": 23014, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 23108, "endOffset": 23121, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 23166, "endOffset": 23175, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 23207, "endOffset": 23959, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 23277, "endOffset": 23925, "count": 1 }, + { "startOffset": 23310, "endOffset": 23317, "count": 0 }, + { "startOffset": 23345, "endOffset": 23349, "count": 0 }, + { "startOffset": 23350, "endOffset": 23413, "count": 0 }, + { "startOffset": 23435, "endOffset": 23494, "count": 0 }, + { "startOffset": 23528, "endOffset": 23894, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 23594, "endOffset": 23781, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 23984, "endOffset": 24160, "count": 1 }, + { "startOffset": 24117, "endOffset": 24131, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 24211, "endOffset": 24256, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 24274, "endOffset": 24383, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 24415, "endOffset": 24577, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 24615, "endOffset": 24701, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 24742, "endOffset": 24914, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 25034, "endOffset": 25174, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 25206, "endOffset": 25306, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 25337, "endOffset": 25391, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 25586, "endOffset": 26586, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 26626, "endOffset": 26890, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 26914, "endOffset": 27132, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 27162, "endOffset": 27369, "count": 1 }, + { "startOffset": 27307, "endOffset": 27330, "count": 0 }, + { "startOffset": 27343, "endOffset": 27368, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 27391, "endOffset": 27626, "count": 1 }, + { "startOffset": 27599, "endOffset": 27606, "count": 0 }, + { "startOffset": 27607, "endOffset": 27625, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 27656, "endOffset": 27720, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 27745, "endOffset": 27828, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 27850, "endOffset": 27905, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 27929, "endOffset": 28325, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 28345, "endOffset": 28701, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 28738, "endOffset": 29199, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 29225, "endOffset": 29279, "count": 1 }, + { "startOffset": 29234, "endOffset": 29247, "count": 0 }, + { "startOffset": 29262, "endOffset": 29270, "count": 0 }, + { "startOffset": 29271, "endOffset": 29278, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 29358, "endOffset": 29391, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 29421, "endOffset": 29500, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 29582, "endOffset": 29597, "count": 2297 }, + { "startOffset": 29591, "endOffset": 29594, "count": 62 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 29630, "endOffset": 29687, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 29720, "endOffset": 29771, "count": 72 }, + { "startOffset": 29733, "endOffset": 29771, "count": 42 }, + { "startOffset": 29746, "endOffset": 29758, "count": 21 }, + { "startOffset": 29758, "endOffset": 29770, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 29794, "endOffset": 29819, "count": 24 }, + { "startOffset": 29802, "endOffset": 29819, "count": 10 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 30128, "endOffset": 30288, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 30131, "endOffset": 30288, "count": 150 }, + { "startOffset": 30148, "endOffset": 30154, "count": 0 }, + { "startOffset": 30162, "endOffset": 30287, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 30216, "endOffset": 30257, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 30567, "endOffset": 30830, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 30855, "endOffset": 30902, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 31025, "endOffset": 31287, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 31304, "endOffset": 32165, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 32191, "endOffset": 32459, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 32491, "endOffset": 32764, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 32791, "endOffset": 33307, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 33390, "endOffset": 33474, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 33498, "endOffset": 33953, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 33976, "endOffset": 34126, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 34150, "endOffset": 34598, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 34629, "endOffset": 34896, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 34920, "endOffset": 35765, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "745", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/tsx/dist/index-CDeh32pY.mjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 54456, "count": 1 }, + { "startOffset": 655, "endOffset": 697, "count": 64 }, + { "startOffset": 892, "endOffset": 1076, "count": 0 }, + { "startOffset": 18912, "endOffset": 19012, "count": 0 }, + { "startOffset": 40936, "endOffset": 40944, "count": 0 }, + { "startOffset": 41113, "endOffset": 41155, "count": 64 }, + { "startOffset": 41202, "endOffset": 41386, "count": 0 }, + { "startOffset": 52644, "endOffset": 52648, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "h", + "ranges": [{ "startOffset": 35, "endOffset": 80, "count": 102 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 439, "endOffset": 487, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Y", + "ranges": [{ "startOffset": 697, "endOffset": 813, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "decode", + "ranges": [{ "startOffset": 912, "endOffset": 988, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "decode", + "ranges": [{ "startOffset": 991, "endOffset": 1075, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1086, "endOffset": 1116, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "or", + "ranges": [{ "startOffset": 1116, "endOffset": 1184, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "write", + "ranges": [{ "startOffset": 1184, "endOffset": 1281, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "flush", + "ranges": [{ "startOffset": 1281, "endOffset": 1364, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ar", + "ranges": [{ "startOffset": 1366, "endOffset": 1685, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1711, "endOffset": 1735, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "ue", + "ranges": [{ "startOffset": 1735, "endOffset": 1794, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "add", + "ranges": [{ "startOffset": 1794, "endOffset": 1828, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "has", + "ranges": [{ "startOffset": 1828, "endOffset": 1871, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1881, "endOffset": 1904, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "re", + "ranges": [{ "startOffset": 1904, "endOffset": 2073, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "appendLeft", + "ranges": [{ "startOffset": 2073, "endOffset": 2101, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "appendRight", + "ranges": [{ "startOffset": 2101, "endOffset": 2140, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "clone", + "ranges": [{ "startOffset": 2140, "endOffset": 2316, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "contains", + "ranges": [{ "startOffset": 2316, "endOffset": 2360, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "eachNext", + "ranges": [{ "startOffset": 2360, "endOffset": 2405, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "eachPrevious", + "ranges": [{ "startOffset": 2405, "endOffset": 2458, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "edit", + "ranges": [{ "startOffset": 2458, "endOffset": 2562, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "prependLeft", + "ranges": [{ "startOffset": 2562, "endOffset": 2601, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "prependRight", + "ranges": [{ "startOffset": 2601, "endOffset": 2641, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "reset", + "ranges": [{ "startOffset": 2641, "endOffset": 2752, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "split", + "ranges": [{ "startOffset": 2752, "endOffset": 3064, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toString", + "ranges": [{ "startOffset": 3064, "endOffset": 3117, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "trimEnd", + "ranges": [{ "startOffset": 3117, "endOffset": 3456, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "trimStart", + "ranges": [{ "startOffset": 3456, "endOffset": 3811, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cr", + "ranges": [ + { "startOffset": 3812, "endOffset": 4111, "count": 1 }, + { "startOffset": 3942, "endOffset": 4110, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3891, "endOffset": 3942, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3969, "endOffset": 4013, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4014, "endOffset": 4110, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4154, "endOffset": 4181, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "lr", + "ranges": [{ "startOffset": 4181, "endOffset": 4466, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toString", + "ranges": [{ "startOffset": 4466, "endOffset": 4505, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toUrl", + "ranges": [{ "startOffset": 4505, "endOffset": 4585, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fr", + "ranges": [{ "startOffset": 4587, "endOffset": 4875, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hr", + "ranges": [{ "startOffset": 4895, "endOffset": 5078, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "gr", + "ranges": [{ "startOffset": 5137, "endOffset": 5190, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Pe", + "ranges": [{ "startOffset": 5207, "endOffset": 5445, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5487, "endOffset": 5513, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "pr", + "ranges": [{ "startOffset": 5513, "endOffset": 5676, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addEdit", + "ranges": [{ "startOffset": 5676, "endOffset": 6207, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addUneditedChunk", + "ranges": [{ "startOffset": 6207, "endOffset": 6709, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "advance", + "ranges": [{ "startOffset": 6709, "endOffset": 6950, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 7018, "endOffset": 7047, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Ne", + "ranges": [{ "startOffset": 7047, "endOffset": 7730, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addSourcemapLocation", + "ranges": [{ "startOffset": 7730, "endOffset": 7785, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "append", + "ranges": [{ "startOffset": 7785, "endOffset": 7897, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "appendLeft", + "ranges": [{ "startOffset": 7897, "endOffset": 8089, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "appendRight", + "ranges": [{ "startOffset": 8089, "endOffset": 8285, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "clone", + "ranges": [{ "startOffset": 8285, "endOffset": 8749, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "generateDecodedMap", + "ranges": [{ "startOffset": 8749, "endOffset": 9383, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "generateMap", + "ranges": [{ "startOffset": 9383, "endOffset": 9440, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_ensureindentStr", + "ranges": [{ "startOffset": 9440, "endOffset": 9519, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_getRawIndentString", + "ranges": [{ "startOffset": 9519, "endOffset": 9587, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getIndentString", + "ranges": [{ "startOffset": 9587, "endOffset": 9677, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "indent", + "ranges": [{ "startOffset": 9677, "endOffset": 10440, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "insert", + "ranges": [{ "startOffset": 10440, "endOffset": 10548, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "insertLeft", + "ranges": [{ "startOffset": 10548, "endOffset": 10723, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "insertRight", + "ranges": [{ "startOffset": 10723, "endOffset": 10906, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "move", + "ranges": [{ "startOffset": 10906, "endOffset": 11483, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "overwrite", + "ranges": [{ "startOffset": 11483, "endOffset": 11568, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "update", + "ranges": [{ "startOffset": 11568, "endOffset": 12647, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "prepend", + "ranges": [{ "startOffset": 12647, "endOffset": 12770, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "prependLeft", + "ranges": [{ "startOffset": 12770, "endOffset": 12974, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "prependRight", + "ranges": [{ "startOffset": 12974, "endOffset": 13182, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "remove", + "ranges": [{ "startOffset": 13182, "endOffset": 13618, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "reset", + "ranges": [{ "startOffset": 13618, "endOffset": 14030, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lastChar", + "ranges": [{ "startOffset": 14030, "endOffset": 14364, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lastLine", + "ranges": [{ "startOffset": 14364, "endOffset": 14884, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "slice", + "ranges": [{ "startOffset": 14884, "endOffset": 15620, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "snip", + "ranges": [{ "startOffset": 15620, "endOffset": 15704, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_split", + "ranges": [{ "startOffset": 15704, "endOffset": 15924, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_splitChunk", + "ranges": [{ "startOffset": 15924, "endOffset": 16264, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toString", + "ranges": [{ "startOffset": 16264, "endOffset": 16363, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isEmpty", + "ranges": [{ "startOffset": 16363, "endOffset": 16534, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "length", + "ranges": [{ "startOffset": 16534, "endOffset": 16647, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "trimLines", + "ranges": [{ "startOffset": 16647, "endOffset": 16688, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "trim", + "ranges": [{ "startOffset": 16688, "endOffset": 16732, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "trimEndAborted", + "ranges": [{ "startOffset": 16732, "endOffset": 17091, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "trimEnd", + "ranges": [{ "startOffset": 17091, "endOffset": 17137, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "trimStartAborted", + "ranges": [{ "startOffset": 17137, "endOffset": 17500, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "trimStart", + "ranges": [{ "startOffset": 17500, "endOffset": 17550, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hasChanged", + "ranges": [{ "startOffset": 17550, "endOffset": 17602, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_replaceRegexp", + "ranges": [{ "startOffset": 17602, "endOffset": 18184, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_replaceString", + "ranges": [{ "startOffset": 18184, "endOffset": 18293, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "replace", + "ranges": [{ "startOffset": 18293, "endOffset": 18382, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_replaceAllString", + "ranges": [{ "startOffset": 18382, "endOffset": 18544, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "replaceAll", + "ranges": [{ "startOffset": 18544, "endOffset": 18759, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Je", + "ranges": [{ "startOffset": 18840, "endOffset": 18912, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Je", + "ranges": [{ "startOffset": 18913, "endOffset": 19012, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "wr", + "ranges": [{ "startOffset": 19140, "endOffset": 37310, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ve", + "ranges": [{ "startOffset": 37324, "endOffset": 37523, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "kr", + "ranges": [{ "startOffset": 37533, "endOffset": 38297, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "xe", + "ranges": [{ "startOffset": 38307, "endOffset": 38570, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "qe", + "ranges": [{ "startOffset": 38580, "endOffset": 38617, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "T", + "ranges": [{ "startOffset": 38627, "endOffset": 38758, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 38799, "endOffset": 38881, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 38896, "endOffset": 38921, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 38939, "endOffset": 39036, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 39057, "endOffset": 39142, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 39178, "endOffset": 39487, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 39519, "endOffset": 39589, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 39611, "endOffset": 39617, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 39631, "endOffset": 39661, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 39694, "endOffset": 39721, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 39721, "endOffset": 39793, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "vr", + "ranges": [{ "startOffset": 39794, "endOffset": 40063, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 39919, "endOffset": 39987, "count": 9057 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 40002, "endOffset": 40061, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 40063, "endOffset": 40357, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 40357, "endOffset": 40502, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "expireDiskCache", + "ranges": [ + { "startOffset": 40502, "endOffset": 40644, "count": 1 }, + { "startOffset": 40564, "endOffset": 40643, "count": 9057 }, + { "startOffset": 40574, "endOffset": 40643, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "removeOldCacheDirectory", + "ranges": [ + { "startOffset": 40644, "endOffset": 40900, "count": 1 }, + { "startOffset": 40740, "endOffset": 40891, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 40733, "endOffset": 40739, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "decode", + "ranges": [{ "startOffset": 41222, "endOffset": 41298, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "decode", + "ranges": [{ "startOffset": 41301, "endOffset": 41385, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_r", + "ranges": [{ "startOffset": 41387, "endOffset": 41746, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Er", + "ranges": [{ "startOffset": 41761, "endOffset": 41828, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "V", + "ranges": [{ "startOffset": 41844, "endOffset": 42005, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "et", + "ranges": [{ "startOffset": 42026, "endOffset": 42081, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Lr", + "ranges": [{ "startOffset": 42100, "endOffset": 42126, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Ar", + "ranges": [{ "startOffset": 42139, "endOffset": 42173, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Or", + "ranges": [{ "startOffset": 42198, "endOffset": 42674, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ee", + "ranges": [{ "startOffset": 42689, "endOffset": 42831, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Mr", + "ranges": [{ "startOffset": 43026, "endOffset": 43059, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "$r", + "ranges": [{ "startOffset": 43081, "endOffset": 43122, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "tt", + "ranges": [{ "startOffset": 43150, "endOffset": 43190, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Ur", + "ranges": [{ "startOffset": 43213, "endOffset": 43257, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "rt", + "ranges": [{ "startOffset": 43275, "endOffset": 43313, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ae", + "ranges": [{ "startOffset": 43332, "endOffset": 43433, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "jr", + "ranges": [{ "startOffset": 43458, "endOffset": 43565, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "nt", + "ranges": [{ "startOffset": 43586, "endOffset": 43680, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "it", + "ranges": [{ "startOffset": 43696, "endOffset": 44014, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Tr", + "ranges": [{ "startOffset": 44031, "endOffset": 44125, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Dr", + "ranges": [{ "startOffset": 44151, "endOffset": 44233, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "st", + "ranges": [{ "startOffset": 44252, "endOffset": 44553, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Fr", + "ranges": [{ "startOffset": 44575, "endOffset": 45060, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ot", + "ranges": [{ "startOffset": 45078, "endOffset": 45140, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Br", + "ranges": [{ "startOffset": 45156, "endOffset": 45235, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Wr", + "ranges": [{ "startOffset": 45267, "endOffset": 45402, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "at", + "ranges": [{ "startOffset": 45420, "endOffset": 45502, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Pr", + "ranges": [{ "startOffset": 45534, "endOffset": 45615, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Jr", + "ranges": [{ "startOffset": 45632, "endOffset": 45684, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Gr", + "ranges": [{ "startOffset": 45705, "endOffset": 45739, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "qr", + "ranges": [{ "startOffset": 45772, "endOffset": 45893, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "zr", + "ranges": [{ "startOffset": 45914, "endOffset": 45981, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Hr", + "ranges": [{ "startOffset": 46000, "endOffset": 46060, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Xr", + "ranges": [{ "startOffset": 46082, "endOffset": 46299, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 46337, "endOffset": 46363, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "ct", + "ranges": [{ "startOffset": 46363, "endOffset": 46955, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Fn", + "ranges": [{ "startOffset": 46956, "endOffset": 46980, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ut", + "ranges": [{ "startOffset": 46995, "endOffset": 47066, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Kr", + "ranges": [{ "startOffset": 47090, "endOffset": 47214, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Yr", + "ranges": [{ "startOffset": 47235, "endOffset": 47327, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 47365, "endOffset": 47391, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Ae", + "ranges": [{ "startOffset": 47391, "endOffset": 47450, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Bn", + "ranges": [{ "startOffset": 47451, "endOffset": 47475, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lt", + "ranges": [{ "startOffset": 47490, "endOffset": 47528, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "te", + "ranges": [{ "startOffset": 47540, "endOffset": 47652, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Qr", + "ranges": [{ "startOffset": 47664, "endOffset": 47825, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 47886, "endOffset": 47914, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "nn", + "ranges": [{ "startOffset": 47914, "endOffset": 48088, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Wn", + "ranges": [{ "startOffset": 48089, "endOffset": 48113, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 48137, "endOffset": 48176, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "on", + "ranges": [{ "startOffset": 48196, "endOffset": 48270, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "an", + "ranges": [{ "startOffset": 48295, "endOffset": 48423, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ht", + "ranges": [{ "startOffset": 48441, "endOffset": 48683, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cn", + "ranges": [{ "startOffset": 48704, "endOffset": 48801, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "un", + "ranges": [{ "startOffset": 48822, "endOffset": 49088, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ln", + "ranges": [{ "startOffset": 49115, "endOffset": 49180, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fn", + "ranges": [{ "startOffset": 49196, "endOffset": 49294, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "dt", + "ranges": [{ "startOffset": 49317, "endOffset": 49382, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hn", + "ranges": [{ "startOffset": 49397, "endOffset": 49502, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "dn", + "ranges": [{ "startOffset": 49532, "endOffset": 49583, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "gn", + "ranges": [{ "startOffset": 49606, "endOffset": 49748, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "bt", + "ranges": [{ "startOffset": 49806, "endOffset": 49890, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "pt", + "ranges": [{ "startOffset": 49912, "endOffset": 49987, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mt", + "ranges": [{ "startOffset": 50002, "endOffset": 50045, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pn", + "ranges": [{ "startOffset": 50063, "endOffset": 50107, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mn", + "ranges": [{ "startOffset": 50130, "endOffset": 50534, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "wt", + "ranges": [{ "startOffset": 50556, "endOffset": 50753, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "wn", + "ranges": [{ "startOffset": 50781, "endOffset": 50826, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "kn", + "ranges": [{ "startOffset": 50842, "endOffset": 51177, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "kt", + "ranges": [{ "startOffset": 51204, "endOffset": 51558, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 51581, "endOffset": 51608, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "yn", + "ranges": [{ "startOffset": 51608, "endOffset": 51885, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toString", + "ranges": [{ "startOffset": 51885, "endOffset": 51924, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "yt", + "ranges": [{ "startOffset": 51925, "endOffset": 52025, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 52054, "endOffset": 52197, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 52228, "endOffset": 52382, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 52561, "endOffset": 52574, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 52688, "endOffset": 53016, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 53038, "endOffset": 53108, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 53136, "endOffset": 53199, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 53222, "endOffset": 53820, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 53843, "endOffset": 54112, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 54131, "endOffset": 54378, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "746", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/tsx/node_modules/esbuild/lib/main.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 97214, "count": 1 }, + { "startOffset": 5563, "endOffset": 5894, "count": 0 }, + { "startOffset": 5942, "endOffset": 6270, "count": 0 }, + { "startOffset": 82246, "endOffset": 82257, "count": 0 }, + { "startOffset": 82386, "endOffset": 82400, "count": 0 }, + { "startOffset": 82418, "endOffset": 82432, "count": 0 }, + { "startOffset": 82437, "endOffset": 82471, "count": 0 }, + { "startOffset": 82541, "endOffset": 82549, "count": 0 }, + { "startOffset": 82596, "endOffset": 82615, "count": 0 }, + { "startOffset": 96881, "endOffset": 96912, "count": 0 }, + { "startOffset": 97010, "endOffset": 97212, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 300, "endOffset": 411, "count": 1 }, + { "startOffset": 347, "endOffset": 409, "count": 13 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 431, "endOffset": 777, "count": 1 }, + { "startOffset": 500, "endOffset": 529, "count": 0 }, + { "startOffset": 584, "endOffset": 758, "count": 13 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 669, "endOffset": 684, "count": 308 }], + "isBlockCoverage": true + }, + { + "functionName": "__toESM", + "ranges": [{ "startOffset": 793, "endOffset": 1302, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 1323, "endOffset": 1394, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "analyzeMetafile", + "ranges": [{ "startOffset": 1483, "endOffset": 1504, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "analyzeMetafileSync", + "ranges": [{ "startOffset": 1529, "endOffset": 1554, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "build", + "ranges": [{ "startOffset": 1565, "endOffset": 1576, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "buildSync", + "ranges": [{ "startOffset": 1591, "endOffset": 1606, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "context", + "ranges": [{ "startOffset": 1619, "endOffset": 1632, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "default", + "ranges": [{ "startOffset": 1645, "endOffset": 1663, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "formatMessages", + "ranges": [{ "startOffset": 1683, "endOffset": 1703, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "formatMessagesSync", + "ranges": [{ "startOffset": 1727, "endOffset": 1751, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "initialize", + "ranges": [{ "startOffset": 1767, "endOffset": 1783, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "stop", + "ranges": [{ "startOffset": 1793, "endOffset": 1803, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "transform", + "ranges": [{ "startOffset": 1818, "endOffset": 1833, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "transformSync", + "ranges": [{ "startOffset": 1852, "endOffset": 1871, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "version", + "ranges": [{ "startOffset": 1884, "endOffset": 1897, "count": 294 }], + "isBlockCoverage": true + }, + { + "functionName": "encodePacket", + "ranges": [{ "startOffset": 1980, "endOffset": 3020, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "decodePacket", + "ranges": [{ "startOffset": 3021, "endOffset": 4018, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ByteBuffer", + "ranges": [{ "startOffset": 4046, "endOffset": 4147, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_write", + "ranges": [{ "startOffset": 4150, "endOffset": 4382, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "write8", + "ranges": [{ "startOffset": 4385, "endOffset": 4467, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "write32", + "ranges": [{ "startOffset": 4470, "endOffset": 4567, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "write", + "ranges": [{ "startOffset": 4570, "endOffset": 4724, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_read", + "ranges": [{ "startOffset": 4727, "endOffset": 4890, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "read8", + "ranges": [{ "startOffset": 4893, "endOffset": 4942, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "read32", + "ranges": [{ "startOffset": 4945, "endOffset": 5009, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "read", + "ranges": [{ "startOffset": 5012, "endOffset": 5207, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "encodeUTF8", + "ranges": [{ "startOffset": 5429, "endOffset": 5459, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "decodeUTF8", + "ranges": [{ "startOffset": 5476, "endOffset": 5508, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "encodeUTF8", + "ranges": [{ "startOffset": 5621, "endOffset": 5648, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "decodeUTF8", + "ranges": [{ "startOffset": 5665, "endOffset": 5800, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readUInt32LE", + "ranges": [{ "startOffset": 6271, "endOffset": 6421, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writeUInt32LE", + "ranges": [{ "startOffset": 6422, "endOffset": 6600, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "throwSyntaxError", + "ranges": [{ "startOffset": 6682, "endOffset": 7296, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "JSON_parse", + "ranges": [{ "startOffset": 7297, "endOffset": 14928, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "validateAndJoinStringArray", + "ranges": [{ "startOffset": 15061, "endOffset": 15339, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "canBeAnything", + "ranges": [{ "startOffset": 15360, "endOffset": 15370, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mustBeBoolean", + "ranges": [{ "startOffset": 15392, "endOffset": 15450, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mustBeString", + "ranges": [{ "startOffset": 15471, "endOffset": 15527, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mustBeRegExp", + "ranges": [{ "startOffset": 15548, "endOffset": 15609, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mustBeInteger", + "ranges": [{ "startOffset": 15631, "endOffset": 15714, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mustBeValidPortNumber", + "ranges": [{ "startOffset": 15744, "endOffset": 15868, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mustBeFunction", + "ranges": [{ "startOffset": 15891, "endOffset": 15951, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mustBeArray", + "ranges": [{ "startOffset": 15971, "endOffset": 16022, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mustBeArrayOfStrings", + "ranges": [{ "startOffset": 16051, "endOffset": 16158, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mustBeObject", + "ranges": [{ "startOffset": 16179, "endOffset": 16279, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mustBeEntryPoints", + "ranges": [{ "startOffset": 16305, "endOffset": 16392, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mustBeWebAssemblyModule", + "ranges": [{ "startOffset": 16424, "endOffset": 16502, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mustBeObjectOrNull", + "ranges": [{ "startOffset": 16529, "endOffset": 16619, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mustBeStringOrBoolean", + "ranges": [{ "startOffset": 16649, "endOffset": 16748, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mustBeStringOrObject", + "ranges": [{ "startOffset": 16777, "endOffset": 16918, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mustBeStringOrArrayOfStrings", + "ranges": [{ "startOffset": 16955, "endOffset": 17103, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mustBeStringOrUint8Array", + "ranges": [{ "startOffset": 17136, "endOffset": 17239, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mustBeStringOrURL", + "ranges": [{ "startOffset": 17265, "endOffset": 17354, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getFlag", + "ranges": [{ "startOffset": 17356, "endOffset": 17619, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "checkForInvalidFlags", + "ranges": [{ "startOffset": 17620, "endOffset": 17803, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "validateInitializeOptions", + "ranges": [{ "startOffset": 17804, "endOffset": 18236, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "validateMangleCache", + "ranges": [{ "startOffset": 18237, "endOffset": 18700, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pushLogFlags", + "ranges": [{ "startOffset": 18701, "endOffset": 19179, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "validateStringValue", + "ranges": [{ "startOffset": 19180, "endOffset": 19421, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pushCommonFlags", + "ranges": [{ "startOffset": 19422, "endOffset": 24829, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "flagsForBuildOptions", + "ranges": [{ "startOffset": 24830, "endOffset": 32243, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "flagsForTransformOptions", + "ranges": [{ "startOffset": 32244, "endOffset": 33344, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createChannel", + "ranges": [{ "startOffset": 33345, "endOffset": 42770, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "buildOrContextImpl", + "ranges": [{ "startOffset": 42771, "endOffset": 52174, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "handlePlugins", + "ranges": [{ "startOffset": 52195, "endOffset": 66576, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createObjectStash", + "ranges": [{ "startOffset": 66578, "endOffset": 66907, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "extractCallerV8", + "ranges": [{ "startOffset": 66908, "endOffset": 67320, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "extractErrorMessageV8", + "ranges": [{ "startOffset": 67321, "endOffset": 67723, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseStackLinesV8", + "ranges": [{ "startOffset": 67724, "endOffset": 69220, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "failureErrorWithLog", + "ranges": [{ "startOffset": 69221, "endOffset": 70120, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "replaceDetailsInMessages", + "ranges": [{ "startOffset": 70121, "endOffset": 70283, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "sanitizeLocation", + "ranges": [{ "startOffset": 70284, "endOffset": 71441, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "sanitizeMessages", + "ranges": [{ "startOffset": 71442, "endOffset": 72904, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "sanitizeStringArray", + "ranges": [{ "startOffset": 72905, "endOffset": 73155, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "sanitizeStringMap", + "ranges": [{ "startOffset": 73156, "endOffset": 73475, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "convertOutputFiles", + "ranges": [{ "startOffset": 73476, "endOffset": 73814, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "jsRegExpToGoRegExp", + "ranges": [{ "startOffset": 73815, "endOffset": 73961, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseJSON", + "ranges": [{ "startOffset": 73962, "endOffset": 74114, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isValidBinaryPath", + "ranges": [{ "startOffset": 74326, "endOffset": 74364, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pkgAndSubpathForCurrentPlatform", + "ranges": [{ "startOffset": 75728, "endOffset": 76424, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pkgForSomeOtherPlatform", + "ranges": [{ "startOffset": 76425, "endOffset": 77126, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "downloadedBinPath", + "ranges": [{ "startOffset": 77127, "endOffset": 77337, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "generateBinPath", + "ranges": [{ "startOffset": 77338, "endOffset": 81912, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "esbuildCommandAndArgs", + "ranges": [{ "startOffset": 82659, "endOffset": 83728, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isTTY", + "ranges": [{ "startOffset": 83742, "endOffset": 83761, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readFile", + "ranges": [{ "startOffset": 83780, "endOffset": 84036, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writeFile", + "ranges": [{ "startOffset": 84040, "endOffset": 84237, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readFile", + "ranges": [{ "startOffset": 84259, "endOffset": 84564, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writeFile", + "ranges": [{ "startOffset": 84568, "endOffset": 84796, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "build", + "ranges": [{ "startOffset": 84836, "endOffset": 84888, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "context", + "ranges": [{ "startOffset": 84904, "endOffset": 84968, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transform", + "ranges": [{ "startOffset": 84986, "endOffset": 85056, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "formatMessages", + "ranges": [{ "startOffset": 85079, "endOffset": 85160, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "analyzeMetafile", + "ranges": [{ "startOffset": 85184, "endOffset": 85266, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "buildSync", + "ranges": [{ "startOffset": 85284, "endOffset": 85766, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformSync", + "ranges": [ + { "startOffset": 85788, "endOffset": 86314, "count": 3 }, + { "startOffset": 85891, "endOffset": 85954, "count": 1 }, + { "startOffset": 86020, "endOffset": 86313, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 86052, "endOffset": 86293, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "formatMessagesSync", + "ranges": [{ "startOffset": 86341, "endOffset": 86840, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "analyzeMetafileSync", + "ranges": [{ "startOffset": 86868, "endOffset": 87438, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stop", + "ranges": [{ "startOffset": 87451, "endOffset": 87577, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "initialize", + "ranges": [{ "startOffset": 87629, "endOffset": 88146, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ensureServiceIsRunning", + "ranges": [{ "startOffset": 88247, "endOffset": 90908, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "runServiceSync", + "ranges": [{ "startOffset": 90931, "endOffset": 91834, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "randomFileName", + "ranges": [{ "startOffset": 91857, "endOffset": 91954, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "startWorkerThreadService", + "ranges": [{ "startOffset": 92019, "endOffset": 94864, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "fakeBuildError", + "ranges": [{ "startOffset": 92947, "endOffset": 93200, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "validateBuildSyncOptions", + "ranges": [{ "startOffset": 93235, "endOffset": 93422, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "applyProperties", + "ranges": [{ "startOffset": 93448, "endOffset": 93554, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "runCallSync", + "ranges": [ + { "startOffset": 93576, "endOffset": 94295, "count": 3 }, + { "startOffset": 93885, "endOffset": 93910, "count": 0 }, + { "startOffset": 93912, "endOffset": 93980, "count": 0 }, + { "startOffset": 94113, "endOffset": 94184, "count": 0 }, + { "startOffset": 94201, "endOffset": 94271, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "buildSync", + "ranges": [{ "startOffset": 94330, "endOffset": 94443, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformSync", + "ranges": [{ "startOffset": 94449, "endOffset": 94543, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "formatMessagesSync", + "ranges": [{ "startOffset": 94549, "endOffset": 94659, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "analyzeMetafileSync", + "ranges": [{ "startOffset": 94665, "endOffset": 94777, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stop", + "ranges": [{ "startOffset": 94783, "endOffset": 94857, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "startSyncServiceWorker", + "ranges": [{ "startOffset": 94895, "endOffset": 96851, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "747", + "url": "node:internal/crypto/webcrypto", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 52983, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "digest", + "ranges": [{ "startOffset": 1278, "endOffset": 1900, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "randomUUID", + "ranges": [{ "startOffset": 1902, "endOffset": 2012, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "generateKey", + "ranges": [{ "startOffset": 2014, "endOffset": 5549, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "deriveBits", + "ranges": [{ "startOffset": 5551, "endOffset": 7356, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getKeyLength", + "ranges": [{ "startOffset": 7358, "endOffset": 8264, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "deriveKey", + "ranges": [{ "startOffset": 8266, "endOffset": 10697, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "exportKeySpki", + "ranges": [{ "startOffset": 10699, "endOffset": 11974, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "exportKeyPkcs8", + "ranges": [{ "startOffset": 11976, "endOffset": 13257, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "exportKeyRawPublic", + "ranges": [{ "startOffset": 13259, "endOffset": 14569, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "exportKeyRawSeed", + "ranges": [{ "startOffset": 14571, "endOffset": 15226, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "exportKeyRawSecret", + "ranges": [{ "startOffset": 15228, "endOffset": 15920, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "exportKeyJWK", + "ranges": [{ "startOffset": 15922, "endOffset": 17908, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "exportKey", + "ranges": [{ "startOffset": 17910, "endOffset": 19923, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "aliasKeyFormat", + "ranges": [{ "startOffset": 19925, "endOffset": 20084, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "importKeySync", + "ranges": [{ "startOffset": 20086, "endOffset": 23214, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "importKey", + "ranges": [{ "startOffset": 23216, "endOffset": 24319, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "wrapKey", + "ranges": [{ "startOffset": 24412, "endOffset": 25960, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "unwrapKey", + "ranges": [{ "startOffset": 26055, "endOffset": 28102, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "signVerify", + "ranges": [{ "startOffset": 28104, "endOffset": 29636, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "sign", + "ranges": [{ "startOffset": 29638, "endOffset": 30270, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "verify", + "ranges": [{ "startOffset": 30272, "endOffset": 31035, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cipherOrWrap", + "ranges": [{ "startOffset": 31037, "endOffset": 32658, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "encrypt", + "ranges": [{ "startOffset": 32660, "endOffset": 33417, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "decrypt", + "ranges": [{ "startOffset": 33419, "endOffset": 34176, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getPublicKey", + "ranges": [{ "startOffset": 34272, "endOffset": 35155, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "encapsulateBits", + "ranges": [{ "startOffset": 35157, "endOffset": 36597, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "encapsulateKey", + "ranges": [{ "startOffset": 36599, "endOffset": 38866, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "decapsulateBits", + "ranges": [{ "startOffset": 38868, "endOffset": 40439, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "decapsulateKey", + "ranges": [{ "startOffset": 40441, "endOffset": 42706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "SubtleCrypto", + "ranges": [{ "startOffset": 42862, "endOffset": 42922, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "supports", + "ranges": [{ "startOffset": 43025, "endOffset": 47212, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "check", + "ranges": [{ "startOffset": 47216, "endOffset": 49051, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 49085, "endOffset": 49098, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Crypto", + "ranges": [{ "startOffset": 49137, "endOffset": 49197, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "get subtle", + "ranges": [ + { "startOffset": 49201, "endOffset": 49301, "count": 1 }, + { "startOffset": 49241, "endOffset": 49278, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 49336, "endOffset": 49349, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "getRandomValues", + "ranges": [{ "startOffset": 49365, "endOffset": 49698, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "748", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/tsx/dist/client-D_mPDF5S.mjs", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 582, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "t", + "ranges": [{ "startOffset": 34, "endOffset": 78, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 171, "endOffset": 420, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 187, "endOffset": 419, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 238, "endOffset": 383, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 398, "endOffset": 407, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 450, "endOffset": 464, "count": 38 }], + "isBlockCoverage": true + }, + { + "functionName": "a.then.o", + "ranges": [ + { "startOffset": 487, "endOffset": 532, "count": 1 }, + { "startOffset": 496, "endOffset": 518, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 533, "endOffset": 557, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "749", + "url": "node:internal/blocklist", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 8317, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "BlockList", + "ranges": [{ "startOffset": 815, "endOffset": 958, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isBlockList", + "ranges": [{ "startOffset": 1075, "endOffset": 1142, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1146, "endOffset": 1400, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addAddress", + "ranges": [{ "startOffset": 1404, "endOffset": 1725, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addRange", + "ranges": [{ "startOffset": 1729, "endOffset": 2407, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addSubnet", + "ranges": [{ "startOffset": 2411, "endOffset": 2956, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "check", + "ranges": [{ "startOffset": 2960, "endOffset": 3425, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#parseIPInfo", + "ranges": [{ "startOffset": 4075, "endOffset": 6755, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toJSON", + "ranges": [{ "startOffset": 6760, "endOffset": 6797, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fromJSON", + "ranges": [{ "startOffset": 6801, "endOffset": 7595, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get rules", + "ranges": [{ "startOffset": 7600, "endOffset": 7654, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 7657, "endOffset": 7814, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 7818, "endOffset": 7918, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "InternalBlockList", + "ranges": [{ "startOffset": 7950, "endOffset": 8109, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "750", + "url": "node:internal/socketaddress", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 4472, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "isSocketAddress", + "ranges": [{ "startOffset": 769, "endOffset": 840, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "SocketAddress", + "ranges": [{ "startOffset": 844, "endOffset": 1850, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get address", + "ranges": [{ "startOffset": 1854, "endOffset": 1907, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get port", + "ranges": [{ "startOffset": 1911, "endOffset": 1958, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get family", + "ranges": [{ "startOffset": 1962, "endOffset": 2043, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get flowlabel", + "ranges": [{ "startOffset": 2047, "endOffset": 2155, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2159, "endOffset": 2398, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2402, "endOffset": 2567, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2571, "endOffset": 2777, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toJSON", + "ranges": [{ "startOffset": 2781, "endOffset": 2927, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parse", + "ranges": [{ "startOffset": 3153, "endOffset": 3942, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "InternalSocketAddress", + "ranges": [{ "startOffset": 3978, "endOffset": 4227, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "751", + "url": "node:internal/util/parse_args/parse_args", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 13575, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "getMainArgs", + "ranges": [{ "startOffset": 1165, "endOffset": 1441, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "checkOptionLikeValue", + "ranges": [{ "startOffset": 1586, "endOffset": 2190, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "checkOptionUsage", + "ranges": [{ "startOffset": 2370, "endOffset": 3612, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "storeOption", + "ranges": [{ "startOffset": 3946, "endOffset": 5085, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "storeDefaultOption", + "ranges": [{ "startOffset": 5410, "endOffset": 5579, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "argsToTokens", + "ranges": [{ "startOffset": 5874, "endOffset": 9854, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseArgs", + "ranges": [{ "startOffset": 9874, "endOffset": 13537, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "752", + "url": "node:internal/util/parse_args/utils", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 6563, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "objectGetOwn", + "ranges": [{ "startOffset": 721, "endOffset": 810, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "optionsGetOwn", + "ranges": [{ "startOffset": 921, "endOffset": 1067, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isOptionValue", + "ranges": [{ "startOffset": 1369, "endOffset": 1594, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isOptionLikeValue", + "ranges": [{ "startOffset": 1833, "endOffset": 1976, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isLoneShortOption", + "ranges": [{ "startOffset": 2072, "endOffset": 2224, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isLoneLongOption", + "ranges": [{ "startOffset": 2508, "endOffset": 2656, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isLongOptionAndValue", + "ranges": [{ "startOffset": 2889, "endOffset": 3040, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isShortOptionGroup", + "ranges": [{ "startOffset": 3968, "endOffset": 4353, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isShortOptionAndValue", + "ranges": [{ "startOffset": 4698, "endOffset": 5127, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "findLongOptionForShort", + "ranges": [{ "startOffset": 5486, "endOffset": 5788, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "useDefaultValueOption", + "ranges": [{ "startOffset": 6135, "endOffset": 6305, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "753", + "url": "node:internal/util/diff", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1097, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "validateInput", + "ranges": [{ "startOffset": 224, "endOffset": 379, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "diff", + "ranges": [{ "startOffset": 845, "endOffset": 1065, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "754", + "url": "node:internal/util/trace_sigint", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 636, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "getSigintWatchdog", + "ranges": [{ "startOffset": 170, "endOffset": 360, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setTraceSigInt", + "ranges": [{ "startOffset": 362, "endOffset": 593, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "755", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/tsx/dist/index-gbaejti9.mjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 1058, "count": 1 }, + { "startOffset": 111, "endOffset": 116, "count": 0 }, + { "startOffset": 134, "endOffset": 141, "count": 0 }, + { "startOffset": 166, "endOffset": 169, "count": 0 }, + { "startOffset": 325, "endOffset": 330, "count": 0 }, + { "startOffset": 361, "endOffset": 537, "count": 0 }, + { "startOffset": 589, "endOffset": 602, "count": 0 }, + { "startOffset": 607, "endOffset": 663, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "g", + "ranges": [{ "startOffset": 34, "endOffset": 78, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 487, "endOffset": 508, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "e", + "ranges": [{ "startOffset": 698, "endOffset": 856, "count": 9 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 795, "endOffset": 855, "count": 3 }, + { "startOffset": 850, "endOffset": 855, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "756", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/tsx/dist/require-CwvQf5A7.mjs", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 465, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "a", + "ranges": [{ "startOffset": 34, "endOffset": 78, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 188, "endOffset": 255, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 274, "endOffset": 345, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "757", + "url": "node:internal/modules/esm/initialize_import_meta", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2372, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "createImportMetaResolve", + "ranges": [{ "startOffset": 735, "endOffset": 1563, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "resolve", + "ranges": [{ "startOffset": 1023, "endOffset": 1560, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "initializeImportMeta", + "ranges": [{ "startOffset": 1883, "endOffset": 2324, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "758", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/tsx/dist/lexer-DQCqS3nf.mjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 13456, "count": 1 }, + { "startOffset": 13300, "endOffset": 13344, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "k", + "ranges": [{ "startOffset": 34, "endOffset": 78, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 86, "endOffset": 269, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "F", + "ranges": [{ "startOffset": 341, "endOffset": 1217, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "r", + "ranges": [{ "startOffset": 1230, "endOffset": 1331, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "c", + "ranges": [{ "startOffset": 1340, "endOffset": 1414, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 13325, "endOffset": 13343, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 13382, "endOffset": 13402, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "759", + "url": "node:internal/source_map/prepare_stack_trace", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 7355, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 279, "endOffset": 304, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "prepareStackTraceWithSourceMaps", + "ranges": [ + { "startOffset": 753, "endOffset": 2224, "count": 19 }, + { "startOffset": 858, "endOffset": 932, "count": 0 }, + { "startOffset": 1020, "endOffset": 1049, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 1160, "endOffset": 2172, "count": 172 }, + { "startOffset": 1417, "endOffset": 1471, "count": 0 }, + { "startOffset": 1515, "endOffset": 1538, "count": 17 }, + { "startOffset": 1539, "endOffset": 1572, "count": 155 }, + { "startOffset": 1927, "endOffset": 2083, "count": 51 }, + { "startOffset": 2090, "endOffset": 2127, "count": 0 }, + { "startOffset": 2127, "endOffset": 2171, "count": 121 } + ], + "isBlockCoverage": true + }, + { + "functionName": "serializeJSStackFrame", + "ranges": [ + { "startOffset": 2731, "endOffset": 4194, "count": 51 }, + { "startOffset": 3134, "endOffset": 3165, "count": 0 }, + { "startOffset": 3362, "endOffset": 3378, "count": 0 }, + { "startOffset": 3493, "endOffset": 3520, "count": 34 }, + { "startOffset": 3568, "endOffset": 3699, "count": 0 }, + { "startOffset": 3735, "endOffset": 3761, "count": 0 }, + { "startOffset": 3845, "endOffset": 3869, "count": 17 }, + { "startOffset": 3870, "endOffset": 3886, "count": 17 }, + { "startOffset": 3887, "endOffset": 3891, "count": 34 }, + { "startOffset": 3926, "endOffset": 3942, "count": 34 }, + { "startOffset": 3988, "endOffset": 4003, "count": 34 }, + { "startOffset": 4006, "endOffset": 4011, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "getOriginalSymbolName", + "ranges": [ + { "startOffset": 4344, "endOffset": 5034, "count": 51 }, + { "startOffset": 4655, "endOffset": 4682, "count": 0 }, + { "startOffset": 4875, "endOffset": 5032, "count": 17 } + ], + "isBlockCoverage": true + }, + { + "functionName": "getErrorSource", + "ranges": [{ "startOffset": 5617, "endOffset": 6517, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getSourceMapErrorSource", + "ranges": [{ "startOffset": 6862, "endOffset": 7242, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "760", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/tsx/dist/cjs/index.cjs", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 545, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "761", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/tsx/dist/register-B4MtRGQg.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 36299, "count": 1 }, + { "startOffset": 29967, "endOffset": 30016, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "f", + "ranges": [{ "startOffset": 48, "endOffset": 93, "count": 2114 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 426, "endOffset": 591, "count": 4064 }, + { "startOffset": 479, "endOffset": 590, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 620, "endOffset": 699, "count": 2032 }, + { "startOffset": 646, "endOffset": 696, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 726, "endOffset": 757, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 767, "endOffset": 823, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 989, "endOffset": 1033, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1054, "endOffset": 1545, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1562, "endOffset": 1641, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Ot", + "ranges": [{ "startOffset": 1647, "endOffset": 1925, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1946, "endOffset": 2124, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2146, "endOffset": 2592, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2631, "endOffset": 2676, "count": 121 }], + "isBlockCoverage": true + }, + { + "functionName": "P", + "ranges": [ + { "startOffset": 2682, "endOffset": 2750, "count": 5 }, + { "startOffset": 2726, "endOffset": 2728, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2783, "endOffset": 2897, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 2914, "endOffset": 3038, "count": 4 }, + { "startOffset": 2996, "endOffset": 3009, "count": 2 }, + { "startOffset": 3029, "endOffset": 3037, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 3054, "endOffset": 3159, "count": 2 }, + { "startOffset": 3071, "endOffset": 3158, "count": 4 }, + { "startOffset": 3108, "endOffset": 3147, "count": 2 }, + { "startOffset": 3147, "endOffset": 3154, "count": 0 }, + { "startOffset": 3154, "endOffset": 3158, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "Ue", + "ranges": [ + { "startOffset": 3170, "endOffset": 6539, "count": 2 }, + { "startOffset": 6236, "endOffset": 6238, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "w", + "ranges": [{ "startOffset": 3249, "endOffset": 3451, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "v", + "ranges": [{ "startOffset": 3481, "endOffset": 3517, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "y", + "ranges": [{ "startOffset": 3545, "endOffset": 4045, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "C", + "ranges": [ + { "startOffset": 4072, "endOffset": 4630, "count": 198 }, + { "startOffset": 4105, "endOffset": 4621, "count": 2312 }, + { "startOffset": 4114, "endOffset": 4145, "count": 0 }, + { "startOffset": 4179, "endOffset": 4210, "count": 198 }, + { "startOffset": 4210, "endOffset": 4220, "count": 2114 }, + { "startOffset": 4220, "endOffset": 4554, "count": 0 }, + { "startOffset": 4554, "endOffset": 4568, "count": 2114 }, + { "startOffset": 4569, "endOffset": 4617, "count": 0 }, + { "startOffset": 4617, "endOffset": 4621, "count": 2114 } + ], + "isBlockCoverage": true + }, + { + "functionName": "u", + "ranges": [ + { "startOffset": 4657, "endOffset": 5884, "count": 814 }, + { "startOffset": 4699, "endOffset": 4715, "count": 2 }, + { "startOffset": 4715, "endOffset": 4745, "count": 812 }, + { "startOffset": 4745, "endOffset": 4821, "count": 233 }, + { "startOffset": 4749, "endOffset": 4797, "count": 958 }, + { "startOffset": 4821, "endOffset": 4829, "count": 579 }, + { "startOffset": 4829, "endOffset": 4922, "count": 133 }, + { "startOffset": 4872, "endOffset": 4908, "count": 0 }, + { "startOffset": 4922, "endOffset": 4932, "count": 446 }, + { "startOffset": 4932, "endOffset": 4980, "count": 12 }, + { "startOffset": 4980, "endOffset": 5026, "count": 3 }, + { "startOffset": 5026, "endOffset": 5049, "count": 104 }, + { "startOffset": 5049, "endOffset": 5072, "count": 103 }, + { "startOffset": 5072, "endOffset": 5102, "count": 198 }, + { "startOffset": 5102, "endOffset": 5677, "count": 0 }, + { "startOffset": 5677, "endOffset": 5882, "count": 11 }, + { "startOffset": 5693, "endOffset": 5699, "count": 63 }, + { "startOffset": 5701, "endOffset": 5723, "count": 52 }, + { "startOffset": 5762, "endOffset": 5784, "count": 3 }, + { "startOffset": 5784, "endOffset": 5807, "count": 8 }, + { "startOffset": 5807, "endOffset": 5828, "count": 0 }, + { "startOffset": 5829, "endOffset": 5882, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "b", + "ranges": [ + { "startOffset": 5909, "endOffset": 6040, "count": 63 }, + { "startOffset": 5937, "endOffset": 5946, "count": 1 }, + { "startOffset": 5946, "endOffset": 5956, "count": 62 }, + { "startOffset": 5956, "endOffset": 6006, "count": 0 }, + { "startOffset": 6006, "endOffset": 6030, "count": 10 }, + { "startOffset": 6031, "endOffset": 6039, "count": 52 } + ], + "isBlockCoverage": true + }, + { + "functionName": "j", + "ranges": [{ "startOffset": 6082, "endOffset": 6139, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6209, "endOffset": 6214, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6252, "endOffset": 6257, "count": 830 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6286, "endOffset": 6291, "count": 198 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6326, "endOffset": 6331, "count": 239 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6367, "endOffset": 6374, "count": 239 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6413, "endOffset": 6418, "count": 239 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6465, "endOffset": 6472, "count": 239 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6515, "endOffset": 6520, "count": 814 }], + "isBlockCoverage": true + }, + { + "functionName": "q", + "ranges": [ + { "startOffset": 6572, "endOffset": 6607, "count": 1833 }, + { "startOffset": 6599, "endOffset": 6606, "count": 875 } + ], + "isBlockCoverage": true + }, + { + "functionName": "M", + "ranges": [ + { "startOffset": 6636, "endOffset": 6672, "count": 642 }, + { "startOffset": 6663, "endOffset": 6671, "count": 508 } + ], + "isBlockCoverage": true + }, + { + "functionName": "U", + "ranges": [{ "startOffset": 6700, "endOffset": 6734, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6766, "endOffset": 8176, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8217, "endOffset": 8237, "count": 20 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8276, "endOffset": 8300, "count": 200 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8327, "endOffset": 8352, "count": 200 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8379, "endOffset": 8405, "count": 200 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8432, "endOffset": 8456, "count": 200 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8483, "endOffset": 8508, "count": 200 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8535, "endOffset": 8561, "count": 200 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8571, "endOffset": 8617, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Ie", + "ranges": [{ "startOffset": 8632, "endOffset": 9169, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "i", + "ranges": [ + { "startOffset": 8692, "endOffset": 8752, "count": 120 }, + { "startOffset": 8722, "endOffset": 8732, "count": 16 }, + { "startOffset": 8732, "endOffset": 8751, "count": 104 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8805, "endOffset": 8847, "count": 12 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8884, "endOffset": 8892, "count": 104 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8927, "endOffset": 8942, "count": 12 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8973, "endOffset": 9015, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9045, "endOffset": 9060, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9102, "endOffset": 9148, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Be", + "ranges": [ + { "startOffset": 9196, "endOffset": 12208, "count": 2 }, + { "startOffset": 12113, "endOffset": 12152, "count": 0 }, + { "startOffset": 12175, "endOffset": 12187, "count": 0 }, + { "startOffset": 12191, "endOffset": 12207, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "i", + "ranges": [ + { "startOffset": 9256, "endOffset": 9387, "count": 2 }, + { "startOffset": 9278, "endOffset": 9379, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9279, "endOffset": 9379, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9380, "endOffset": 9386, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "c", + "ranges": [ + { "startOffset": 9416, "endOffset": 9548, "count": 4 }, + { "startOffset": 9438, "endOffset": 9547, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9439, "endOffset": 9540, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9541, "endOffset": 9547, "count": 207 }], + "isBlockCoverage": true + }, + { + "functionName": "l", + "ranges": [ + { "startOffset": 9578, "endOffset": 9724, "count": 4 }, + { "startOffset": 9716, "endOffset": 9723, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9601, "endOffset": 9716, "count": 209 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9702, "endOffset": 9715, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9717, "endOffset": 9723, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "m", + "ranges": [ + { "startOffset": 9762, "endOffset": 9922, "count": 4 }, + { "startOffset": 9914, "endOffset": 9921, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 9785, "endOffset": 9914, "count": 15 }, + { "startOffset": 9793, "endOffset": 9797, "count": 0 }, + { "startOffset": 9906, "endOffset": 9913, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9887, "endOffset": 9900, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9915, "endOffset": 9921, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "g", + "ranges": [ + { "startOffset": 9951, "endOffset": 10093, "count": 4 }, + { "startOffset": 10085, "endOffset": 10092, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 9974, "endOffset": 10085, "count": 15 }, + { "startOffset": 9982, "endOffset": 9987, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 10086, "endOffset": 10092, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "x", + "ranges": [ + { "startOffset": 10351, "endOffset": 10636, "count": 448 }, + { "startOffset": 10371, "endOffset": 10635, "count": 814 }, + { "startOffset": 10415, "endOffset": 10531, "count": 0 }, + { "startOffset": 10542, "endOffset": 10595, "count": 0 }, + { "startOffset": 10595, "endOffset": 10603, "count": 233 }, + { "startOffset": 10603, "endOffset": 10617, "count": 366 }, + { "startOffset": 10617, "endOffset": 10633, "count": 448 } + ], + "isBlockCoverage": true + }, + { + "functionName": "k", + "ranges": [{ "startOffset": 10661, "endOffset": 10822, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "D", + "ranges": [ + { "startOffset": 10850, "endOffset": 10928, "count": 198 }, + { "startOffset": 10898, "endOffset": 10903, "count": 94 }, + { "startOffset": 10903, "endOffset": 10920, "count": 104 } + ], + "isBlockCoverage": true + }, + { + "functionName": "L", + "ranges": [ + { "startOffset": 10956, "endOffset": 11162, "count": 11 }, + { "startOffset": 10990, "endOffset": 11093, "count": 0 }, + { "startOffset": 11093, "endOffset": 11112, "count": 3 }, + { "startOffset": 11112, "endOffset": 11131, "count": 8 }, + { "startOffset": 11131, "endOffset": 11147, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "S", + "ranges": [ + { "startOffset": 11191, "endOffset": 11330, "count": 104 }, + { "startOffset": 11228, "endOffset": 11247, "count": 0 }, + { "startOffset": 11287, "endOffset": 11302, "count": 0 }, + { "startOffset": 11303, "endOffset": 11317, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "I", + "ranges": [ + { "startOffset": 11360, "endOffset": 11598, "count": 12 }, + { "startOffset": 11411, "endOffset": 11430, "count": 104 }, + { "startOffset": 11432, "endOffset": 11551, "count": 104 }, + { "startOffset": 11453, "endOffset": 11508, "count": 92 }, + { "startOffset": 11458, "endOffset": 11470, "count": 0 }, + { "startOffset": 11498, "endOffset": 11501, "count": 0 }, + { "startOffset": 11502, "endOffset": 11507, "count": 0 }, + { "startOffset": 11508, "endOffset": 11527, "count": 12 }, + { "startOffset": 11514, "endOffset": 11526, "count": 0 }, + { "startOffset": 11530, "endOffset": 11545, "count": 0 }, + { "startOffset": 11578, "endOffset": 11590, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "Oe", + "ranges": [ + { "startOffset": 11626, "endOffset": 11916, "count": 3 }, + { "startOffset": 11683, "endOffset": 11702, "count": 14 }, + { "startOffset": 11704, "endOffset": 11858, "count": 14 }, + { "startOffset": 11725, "endOffset": 11780, "count": 11 }, + { "startOffset": 11730, "endOffset": 11742, "count": 0 }, + { "startOffset": 11770, "endOffset": 11773, "count": 0 }, + { "startOffset": 11774, "endOffset": 11779, "count": 0 }, + { "startOffset": 11780, "endOffset": 11799, "count": 3 }, + { "startOffset": 11786, "endOffset": 11798, "count": 0 }, + { "startOffset": 11800, "endOffset": 11817, "count": 3 }, + { "startOffset": 11817, "endOffset": 11833, "count": 11 }, + { "startOffset": 11837, "endOffset": 11852, "count": 0 }, + { "startOffset": 11896, "endOffset": 11908, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "X", + "ranges": [ + { "startOffset": 11946, "endOffset": 12058, "count": 120 }, + { "startOffset": 11980, "endOffset": 11999, "count": 3 }, + { "startOffset": 11999, "endOffset": 12017, "count": 12 }, + { "startOffset": 12017, "endOffset": 12038, "count": 94 }, + { "startOffset": 12038, "endOffset": 12056, "count": 11 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 12241, "endOffset": 12570, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 12593, "endOffset": 13218, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 13253, "endOffset": 14010, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 14036, "endOffset": 14054, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 14073, "endOffset": 14127, "count": 1 }, + { "startOffset": 14108, "endOffset": 14126, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 14176, "endOffset": 14519, "count": 1 }, + { "startOffset": 14230, "endOffset": 14247, "count": 0 }, + { "startOffset": 14271, "endOffset": 14338, "count": 0 }, + { "startOffset": 14485, "endOffset": 14492, "count": 0 }, + { "startOffset": 14509, "endOffset": 14515, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 14588, "endOffset": 14762, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 14799, "endOffset": 15111, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 15147, "endOffset": 15276, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 15304, "endOffset": 16413, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 16517, "endOffset": 16563, "count": 2 }, + { "startOffset": 16551, "endOffset": 16553, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 16594, "endOffset": 19065, "count": 1 }, + { "startOffset": 16854, "endOffset": 16878, "count": 9 }, + { "startOffset": 16893, "endOffset": 16934, "count": 0 }, + { "startOffset": 16986, "endOffset": 16997, "count": 0 }, + { "startOffset": 17021, "endOffset": 17072, "count": 0 }, + { "startOffset": 17181, "endOffset": 17223, "count": 0 }, + { "startOffset": 17258, "endOffset": 17300, "count": 0 }, + { "startOffset": 17393, "endOffset": 17404, "count": 0 }, + { "startOffset": 17517, "endOffset": 17551, "count": 0 }, + { "startOffset": 17564, "endOffset": 17603, "count": 0 }, + { "startOffset": 17617, "endOffset": 17677, "count": 0 }, + { "startOffset": 17754, "endOffset": 17798, "count": 0 }, + { "startOffset": 17844, "endOffset": 17858, "count": 0 }, + { "startOffset": 17925, "endOffset": 18003, "count": 0 }, + { "startOffset": 18018, "endOffset": 18098, "count": 0 }, + { "startOffset": 18111, "endOffset": 18155, "count": 0 }, + { "startOffset": 18198, "endOffset": 18240, "count": 0 }, + { "startOffset": 18290, "endOffset": 18324, "count": 0 }, + { "startOffset": 18397, "endOffset": 18411, "count": 0 }, + { "startOffset": 18446, "endOffset": 18477, "count": 0 }, + { "startOffset": 18561, "endOffset": 18625, "count": 0 }, + { "startOffset": 18701, "endOffset": 18733, "count": 4 }, + { "startOffset": 18705, "endOffset": 18732, "count": 1 }, + { "startOffset": 18819, "endOffset": 18871, "count": 0 }, + { "startOffset": 18889, "endOffset": 18918, "count": 0 }, + { "startOffset": 18952, "endOffset": 18989, "count": 0 }, + { "startOffset": 18995, "endOffset": 19034, "count": 0 }, + { "startOffset": 19044, "endOffset": 19062, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 19014, "endOffset": 19032, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 19099, "endOffset": 19157, "count": 1 }, + { "startOffset": 19123, "endOffset": 19156, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 19182, "endOffset": 19241, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 19273, "endOffset": 19331, "count": 1 }, + { "startOffset": 19297, "endOffset": 19330, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 19356, "endOffset": 19415, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 19445, "endOffset": 19801, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 19852, "endOffset": 19912, "count": 1 }, + { "startOffset": 19904, "endOffset": 19911, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 19932, "endOffset": 20040, "count": 1 }, + { "startOffset": 19968, "endOffset": 19975, "count": 0 }, + { "startOffset": 20027, "endOffset": 20039, "count": 3 }, + { "startOffset": 20031, "endOffset": 20039, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 20070, "endOffset": 20096, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 20151, "endOffset": 20217, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 20247, "endOffset": 20358, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 20412, "endOffset": 20477, "count": 4 }, + { "startOffset": 20439, "endOffset": 20476, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 20586, "endOffset": 23064, "count": 1 }, + { "startOffset": 20613, "endOffset": 20656, "count": 0 }, + { "startOffset": 22593, "endOffset": 22596, "count": 0 }, + { "startOffset": 22644, "endOffset": 22698, "count": 6 }, + { "startOffset": 22663, "endOffset": 22697, "count": 2 }, + { "startOffset": 22686, "endOffset": 22694, "count": 0 }, + { "startOffset": 22737, "endOffset": 22812, "count": 2 }, + { "startOffset": 22752, "endOffset": 22811, "count": 0 }, + { "startOffset": 22823, "endOffset": 22912, "count": 0 }, + { "startOffset": 22965, "endOffset": 23010, "count": 3 }, + { "startOffset": 22980, "endOffset": 23009, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 20701, "endOffset": 20714, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 20731, "endOffset": 22473, "count": 1 }, + { "startOffset": 20757, "endOffset": 20766, "count": 0 }, + { "startOffset": 20789, "endOffset": 20840, "count": 0 }, + { "startOffset": 20964, "endOffset": 21000, "count": 0 }, + { "startOffset": 21046, "endOffset": 21101, "count": 0 }, + { "startOffset": 21112, "endOffset": 21773, "count": 0 }, + { "startOffset": 21863, "endOffset": 21942, "count": 2 }, + { "startOffset": 21881, "endOffset": 21899, "count": 1 }, + { "startOffset": 21900, "endOffset": 21941, "count": 1 }, + { "startOffset": 21960, "endOffset": 22081, "count": 2 }, + { "startOffset": 21973, "endOffset": 22080, "count": 1 }, + { "startOffset": 22082, "endOffset": 22108, "count": 0 }, + { "startOffset": 22158, "endOffset": 22209, "count": 0 }, + { "startOffset": 22225, "endOffset": 22453, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 21484, "endOffset": 21514, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 21584, "endOffset": 21614, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 22020, "endOffset": 22027, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 22181, "endOffset": 22207, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 22323, "endOffset": 22343, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 22766, "endOffset": 22809, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 22887, "endOffset": 22900, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 22994, "endOffset": 23007, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 23052, "endOffset": 23061, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 23093, "endOffset": 23845, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 23163, "endOffset": 23811, "count": 1 }, + { "startOffset": 23196, "endOffset": 23203, "count": 0 }, + { "startOffset": 23231, "endOffset": 23235, "count": 0 }, + { "startOffset": 23236, "endOffset": 23299, "count": 0 }, + { "startOffset": 23321, "endOffset": 23380, "count": 0 }, + { "startOffset": 23414, "endOffset": 23780, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 23480, "endOffset": 23667, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 23870, "endOffset": 24046, "count": 1 }, + { "startOffset": 24003, "endOffset": 24017, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 24097, "endOffset": 24142, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 24160, "endOffset": 24269, "count": 1 }, + { "startOffset": 24201, "endOffset": 24260, "count": 81 }, + { "startOffset": 24241, "endOffset": 24257, "count": 12 }, + { "startOffset": 24257, "endOffset": 24259, "count": 69 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 24301, "endOffset": 24463, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 24501, "endOffset": 24587, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 24628, "endOffset": 24800, "count": 1 }, + { "startOffset": 24685, "endOffset": 24702, "count": 0 }, + { "startOffset": 24770, "endOffset": 24782, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 24920, "endOffset": 25060, "count": 1 }, + { "startOffset": 24988, "endOffset": 25042, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 25092, "endOffset": 25192, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 25223, "endOffset": 25277, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 25472, "endOffset": 26472, "count": 1 }, + { "startOffset": 25513, "endOffset": 25614, "count": 0 }, + { "startOffset": 25634, "endOffset": 25688, "count": 0 }, + { "startOffset": 25690, "endOffset": 25700, "count": 0 }, + { "startOffset": 25826, "endOffset": 25844, "count": 0 }, + { "startOffset": 25863, "endOffset": 25866, "count": 0 }, + { "startOffset": 25875, "endOffset": 25882, "count": 0 }, + { "startOffset": 26062, "endOffset": 26067, "count": 0 }, + { "startOffset": 26396, "endOffset": 26403, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 25776, "endOffset": 25804, "count": 2 }, + { "startOffset": 25794, "endOffset": 25796, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 25888, "endOffset": 26052, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 26078, "endOffset": 26395, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 26210, "endOffset": 26294, "count": 1 }, + { "startOffset": 26291, "endOffset": 26293, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 26320, "endOffset": 26363, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 26512, "endOffset": 26776, "count": 293 }, + { "startOffset": 26540, "endOffset": 26549, "count": 0 }, + { "startOffset": 26551, "endOffset": 26561, "count": 0 }, + { "startOffset": 26579, "endOffset": 26607, "count": 1 }, + { "startOffset": 26685, "endOffset": 26690, "count": 0 }, + { "startOffset": 26693, "endOffset": 26696, "count": 0 }, + { "startOffset": 26722, "endOffset": 26744, "count": 68 }, + { "startOffset": 26744, "endOffset": 26747, "count": 225 }, + { "startOffset": 26747, "endOffset": 26775, "count": 68 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 26705, "endOffset": 26721, "count": 1643 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 26731, "endOffset": 26743, "count": 68 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 26761, "endOffset": 26773, "count": 68 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 26800, "endOffset": 27018, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 27048, "endOffset": 27255, "count": 1 }, + { "startOffset": 27193, "endOffset": 27216, "count": 0 }, + { "startOffset": 27229, "endOffset": 27254, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 27277, "endOffset": 27512, "count": 1 }, + { "startOffset": 27485, "endOffset": 27492, "count": 0 }, + { "startOffset": 27493, "endOffset": 27511, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 27542, "endOffset": 27606, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 27631, "endOffset": 27714, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 27736, "endOffset": 27791, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 27815, "endOffset": 28211, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 28231, "endOffset": 28587, "count": 1 }, + { "startOffset": 28275, "endOffset": 28287, "count": 0 }, + { "startOffset": 28336, "endOffset": 28358, "count": 0 }, + { "startOffset": 28390, "endOffset": 28398, "count": 0 }, + { "startOffset": 28403, "endOffset": 28416, "count": 0 }, + { "startOffset": 28449, "endOffset": 28586, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 28624, "endOffset": 29085, "count": 62 }, + { "startOffset": 28661, "endOffset": 28684, "count": 1 }, + { "startOffset": 28697, "endOffset": 29084, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 29061, "endOffset": 29083, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 29111, "endOffset": 29165, "count": 1 }, + { "startOffset": 29120, "endOffset": 29133, "count": 0 }, + { "startOffset": 29148, "endOffset": 29156, "count": 0 }, + { "startOffset": 29157, "endOffset": 29164, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 29244, "endOffset": 29277, "count": 293 }, + { "startOffset": 29273, "endOffset": 29277, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 29307, "endOffset": 29386, "count": 293 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 29468, "endOffset": 29483, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 29516, "endOffset": 29573, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 29538, "endOffset": 29572, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 29606, "endOffset": 29657, "count": 6268 }, + { "startOffset": 29619, "endOffset": 29657, "count": 5262 }, + { "startOffset": 29632, "endOffset": 29644, "count": 2316 }, + { "startOffset": 29644, "endOffset": 29656, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 29680, "endOffset": 29705, "count": 6268 }, + { "startOffset": 29688, "endOffset": 29705, "count": 1006 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 30028, "endOffset": 30211, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 30031, "endOffset": 30211, "count": 9433 }, + { "startOffset": 30048, "endOffset": 30054, "count": 0 }, + { "startOffset": 30062, "endOffset": 30210, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 30122, "endOffset": 30171, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 30514, "endOffset": 30777, "count": 172 }, + { "startOffset": 30545, "endOffset": 30556, "count": 0 }, + { "startOffset": 30598, "endOffset": 30655, "count": 94 }, + { "startOffset": 30734, "endOffset": 30737, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 30644, "endOffset": 30652, "count": 376 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 30764, "endOffset": 30772, "count": 860 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 30802, "endOffset": 30849, "count": 1852 }, + { "startOffset": 30827, "endOffset": 30846, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 30972, "endOffset": 31234, "count": 5 }, + { "startOffset": 31030, "endOffset": 31035, "count": 1 }, + { "startOffset": 31035, "endOffset": 31042, "count": 0 }, + { "startOffset": 31046, "endOffset": 31062, "count": 1 }, + { "startOffset": 31112, "endOffset": 31124, "count": 1 }, + { "startOffset": 31124, "endOffset": 31139, "count": 4 }, + { "startOffset": 31150, "endOffset": 31160, "count": 4 }, + { "startOffset": 31160, "endOffset": 31179, "count": 1 }, + { "startOffset": 31175, "endOffset": 31178, "count": 0 }, + { "startOffset": 31194, "endOffset": 31208, "count": 4 }, + { "startOffset": 31208, "endOffset": 31231, "count": 1 }, + { "startOffset": 31227, "endOffset": 31230, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 31251, "endOffset": 32168, "count": 1 }, + { "startOffset": 31978, "endOffset": 32032, "count": 3 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 31284, "endOffset": 31930, "count": 816 }, + { "startOffset": 31310, "endOffset": 31324, "count": 0 }, + { "startOffset": 31405, "endOffset": 31419, "count": 0 }, + { "startOffset": 31484, "endOffset": 31507, "count": 0 }, + { "startOffset": 31635, "endOffset": 31639, "count": 748 }, + { "startOffset": 31640, "endOffset": 31654, "count": 0 }, + { "startOffset": 31707, "endOffset": 31772, "count": 185 }, + { "startOffset": 31748, "endOffset": 31771, "count": 0 }, + { "startOffset": 31772, "endOffset": 31887, "count": 631 }, + { "startOffset": 31781, "endOffset": 31794, "count": 563 }, + { "startOffset": 31795, "endOffset": 31887, "count": 293 }, + { "startOffset": 31848, "endOffset": 31857, "count": 28 }, + { "startOffset": 31857, "endOffset": 31864, "count": 265 }, + { "startOffset": 31879, "endOffset": 31886, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 31584, "endOffset": 31600, "count": 3944 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 31612, "endOffset": 31628, "count": 1137 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 32084, "endOffset": 32167, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 32194, "endOffset": 32462, "count": 2032 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 32197, "endOffset": 32462, "count": 2032 }, + { "startOffset": 32242, "endOffset": 32252, "count": 0 }, + { "startOffset": 32264, "endOffset": 32346, "count": 0 }, + { "startOffset": 32362, "endOffset": 32461, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 32494, "endOffset": 32767, "count": 1705 }, + { "startOffset": 32606, "endOffset": 32610, "count": 1533 }, + { "startOffset": 32611, "endOffset": 32618, "count": 1533 }, + { "startOffset": 32618, "endOffset": 32766, "count": 172 }, + { "startOffset": 32654, "endOffset": 32766, "count": 484 }, + { "startOffset": 32670, "endOffset": 32766, "count": 390 }, + { "startOffset": 32720, "endOffset": 32757, "count": 0 }, + { "startOffset": 32758, "endOffset": 32765, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 32794, "endOffset": 33310, "count": 2032 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 32803, "endOffset": 33310, "count": 2032 }, + { "startOffset": 32881, "endOffset": 32916, "count": 1701 }, + { "startOffset": 32907, "endOffset": 32915, "count": 90 }, + { "startOffset": 32916, "endOffset": 32932, "count": 1942 }, + { "startOffset": 32932, "endOffset": 33309, "count": 4 }, + { "startOffset": 33099, "endOffset": 33266, "count": 0 }, + { "startOffset": 33267, "endOffset": 33300, "count": 0 }, + { "startOffset": 33301, "endOffset": 33309, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 33393, "endOffset": 33477, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 33501, "endOffset": 33956, "count": 2032 }, + { "startOffset": 33608, "endOffset": 33726, "count": 0 }, + { "startOffset": 33807, "endOffset": 33832, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 33847, "endOffset": 33954, "count": 2032 }, + { "startOffset": 33870, "endOffset": 33892, "count": 2018 }, + { "startOffset": 33892, "endOffset": 33939, "count": 1852 }, + { "startOffset": 33923, "endOffset": 33938, "count": 0 }, + { "startOffset": 33939, "endOffset": 33951, "count": 1852 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 33979, "endOffset": 34143, "count": 2032 }, + { "startOffset": 34010, "endOffset": 34035, "count": 0 }, + { "startOffset": 34044, "endOffset": 34072, "count": 331 }, + { "startOffset": 34073, "endOffset": 34131, "count": 62 }, + { "startOffset": 34107, "endOffset": 34130, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 34167, "endOffset": 34615, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 34178, "endOffset": 34615, "count": 2032 }, + { "startOffset": 34209, "endOffset": 34228, "count": 0 }, + { "startOffset": 34293, "endOffset": 34312, "count": 0 }, + { "startOffset": 34355, "endOffset": 34358, "count": 0 }, + { "startOffset": 34596, "endOffset": 34599, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 34382, "endOffset": 34396, "count": 2426 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 34646, "endOffset": 34927, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 34951, "endOffset": 35804, "count": 1 }, + { "startOffset": 35113, "endOffset": 35124, "count": 0 }, + { "startOffset": 35177, "endOffset": 35188, "count": 0 }, + { "startOffset": 35193, "endOffset": 35211, "count": 0 }, + { "startOffset": 35356, "endOffset": 35367, "count": 0 }, + { "startOffset": 35368, "endOffset": 35795, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 35221, "endOffset": 35337, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 35379, "endOffset": 35542, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 35582, "endOffset": 35750, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "762", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/tsx/dist/get-pipe-path-D4YM6rQt.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 435, "count": 1 }, + { "startOffset": 208, "endOffset": 231, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "t", + "ranges": [{ "startOffset": 47, "endOffset": 91, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 286, "endOffset": 358, "count": 1 }, + { "startOffset": 335, "endOffset": 355, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "763", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/tsx/dist/temporary-directory-B83uKxJF.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 166, "count": 1 }, + { "startOffset": 93, "endOffset": 115, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "764", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/tsx/dist/index-C8LOAU3M.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 54633, "count": 1 }, + { "startOffset": 553, "endOffset": 595, "count": 64 }, + { "startOffset": 790, "endOffset": 974, "count": 0 }, + { "startOffset": 18810, "endOffset": 18910, "count": 0 }, + { "startOffset": 40885, "endOffset": 40893, "count": 0 }, + { "startOffset": 41062, "endOffset": 41104, "count": 64 }, + { "startOffset": 41151, "endOffset": 41335, "count": 0 }, + { "startOffset": 52600, "endOffset": 52604, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "h", + "ranges": [{ "startOffset": 48, "endOffset": 93, "count": 208 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 337, "endOffset": 385, "count": 293 }], + "isBlockCoverage": true + }, + { + "functionName": "Q", + "ranges": [{ "startOffset": 595, "endOffset": 711, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "decode", + "ranges": [{ "startOffset": 810, "endOffset": 886, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "decode", + "ranges": [{ "startOffset": 889, "endOffset": 973, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 984, "endOffset": 1014, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "rr", + "ranges": [{ "startOffset": 1014, "endOffset": 1082, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "write", + "ranges": [{ "startOffset": 1082, "endOffset": 1179, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "flush", + "ranges": [{ "startOffset": 1179, "endOffset": 1262, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "nr", + "ranges": [{ "startOffset": 1264, "endOffset": 1583, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1609, "endOffset": 1633, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "le", + "ranges": [{ "startOffset": 1633, "endOffset": 1692, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "add", + "ranges": [{ "startOffset": 1692, "endOffset": 1726, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "has", + "ranges": [{ "startOffset": 1726, "endOffset": 1769, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1779, "endOffset": 1802, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "ne", + "ranges": [{ "startOffset": 1802, "endOffset": 1971, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "appendLeft", + "ranges": [{ "startOffset": 1971, "endOffset": 1999, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "appendRight", + "ranges": [{ "startOffset": 1999, "endOffset": 2038, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "clone", + "ranges": [{ "startOffset": 2038, "endOffset": 2214, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "contains", + "ranges": [{ "startOffset": 2214, "endOffset": 2258, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "eachNext", + "ranges": [{ "startOffset": 2258, "endOffset": 2303, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "eachPrevious", + "ranges": [{ "startOffset": 2303, "endOffset": 2356, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "edit", + "ranges": [{ "startOffset": 2356, "endOffset": 2460, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "prependLeft", + "ranges": [{ "startOffset": 2460, "endOffset": 2499, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "prependRight", + "ranges": [{ "startOffset": 2499, "endOffset": 2539, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "reset", + "ranges": [{ "startOffset": 2539, "endOffset": 2650, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "split", + "ranges": [{ "startOffset": 2650, "endOffset": 2962, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toString", + "ranges": [{ "startOffset": 2962, "endOffset": 3015, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "trimEnd", + "ranges": [{ "startOffset": 3015, "endOffset": 3354, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "trimStart", + "ranges": [{ "startOffset": 3354, "endOffset": 3709, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ir", + "ranges": [ + { "startOffset": 3710, "endOffset": 4009, "count": 1 }, + { "startOffset": 3840, "endOffset": 4008, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3789, "endOffset": 3840, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3867, "endOffset": 3911, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3912, "endOffset": 4008, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4052, "endOffset": 4079, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "or", + "ranges": [{ "startOffset": 4079, "endOffset": 4364, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toString", + "ranges": [{ "startOffset": 4364, "endOffset": 4403, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toUrl", + "ranges": [{ "startOffset": 4403, "endOffset": 4483, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ar", + "ranges": [{ "startOffset": 4485, "endOffset": 4773, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cr", + "ranges": [{ "startOffset": 4793, "endOffset": 4976, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lr", + "ranges": [{ "startOffset": 5035, "endOffset": 5088, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "qe", + "ranges": [{ "startOffset": 5105, "endOffset": 5343, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5385, "endOffset": 5411, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "hr", + "ranges": [{ "startOffset": 5411, "endOffset": 5574, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addEdit", + "ranges": [{ "startOffset": 5574, "endOffset": 6105, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addUneditedChunk", + "ranges": [{ "startOffset": 6105, "endOffset": 6607, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "advance", + "ranges": [{ "startOffset": 6607, "endOffset": 6848, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6916, "endOffset": 6945, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Ne", + "ranges": [{ "startOffset": 6945, "endOffset": 7628, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addSourcemapLocation", + "ranges": [{ "startOffset": 7628, "endOffset": 7683, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "append", + "ranges": [{ "startOffset": 7683, "endOffset": 7795, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "appendLeft", + "ranges": [{ "startOffset": 7795, "endOffset": 7987, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "appendRight", + "ranges": [{ "startOffset": 7987, "endOffset": 8183, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "clone", + "ranges": [{ "startOffset": 8183, "endOffset": 8647, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "generateDecodedMap", + "ranges": [{ "startOffset": 8647, "endOffset": 9281, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "generateMap", + "ranges": [{ "startOffset": 9281, "endOffset": 9338, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_ensureindentStr", + "ranges": [{ "startOffset": 9338, "endOffset": 9417, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_getRawIndentString", + "ranges": [{ "startOffset": 9417, "endOffset": 9485, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getIndentString", + "ranges": [{ "startOffset": 9485, "endOffset": 9575, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "indent", + "ranges": [{ "startOffset": 9575, "endOffset": 10338, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "insert", + "ranges": [{ "startOffset": 10338, "endOffset": 10446, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "insertLeft", + "ranges": [{ "startOffset": 10446, "endOffset": 10621, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "insertRight", + "ranges": [{ "startOffset": 10621, "endOffset": 10804, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "move", + "ranges": [{ "startOffset": 10804, "endOffset": 11381, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "overwrite", + "ranges": [{ "startOffset": 11381, "endOffset": 11466, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "update", + "ranges": [{ "startOffset": 11466, "endOffset": 12545, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "prepend", + "ranges": [{ "startOffset": 12545, "endOffset": 12668, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "prependLeft", + "ranges": [{ "startOffset": 12668, "endOffset": 12872, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "prependRight", + "ranges": [{ "startOffset": 12872, "endOffset": 13080, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "remove", + "ranges": [{ "startOffset": 13080, "endOffset": 13516, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "reset", + "ranges": [{ "startOffset": 13516, "endOffset": 13928, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lastChar", + "ranges": [{ "startOffset": 13928, "endOffset": 14262, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lastLine", + "ranges": [{ "startOffset": 14262, "endOffset": 14782, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "slice", + "ranges": [{ "startOffset": 14782, "endOffset": 15518, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "snip", + "ranges": [{ "startOffset": 15518, "endOffset": 15602, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_split", + "ranges": [{ "startOffset": 15602, "endOffset": 15822, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_splitChunk", + "ranges": [{ "startOffset": 15822, "endOffset": 16162, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toString", + "ranges": [{ "startOffset": 16162, "endOffset": 16261, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isEmpty", + "ranges": [{ "startOffset": 16261, "endOffset": 16432, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "length", + "ranges": [{ "startOffset": 16432, "endOffset": 16545, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "trimLines", + "ranges": [{ "startOffset": 16545, "endOffset": 16586, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "trim", + "ranges": [{ "startOffset": 16586, "endOffset": 16630, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "trimEndAborted", + "ranges": [{ "startOffset": 16630, "endOffset": 16989, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "trimEnd", + "ranges": [{ "startOffset": 16989, "endOffset": 17035, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "trimStartAborted", + "ranges": [{ "startOffset": 17035, "endOffset": 17398, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "trimStart", + "ranges": [{ "startOffset": 17398, "endOffset": 17448, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hasChanged", + "ranges": [{ "startOffset": 17448, "endOffset": 17500, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_replaceRegexp", + "ranges": [{ "startOffset": 17500, "endOffset": 18082, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_replaceString", + "ranges": [{ "startOffset": 18082, "endOffset": 18191, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "replace", + "ranges": [{ "startOffset": 18191, "endOffset": 18280, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_replaceAllString", + "ranges": [{ "startOffset": 18280, "endOffset": 18442, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "replaceAll", + "ranges": [{ "startOffset": 18442, "endOffset": 18657, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Je", + "ranges": [ + { "startOffset": 18738, "endOffset": 18810, "count": 710 }, + { "startOffset": 18787, "endOffset": 18809, "count": 3624949 } + ], + "isBlockCoverage": true + }, + { + "functionName": "Je", + "ranges": [{ "startOffset": 18811, "endOffset": 18910, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "gr", + "ranges": [ + { "startOffset": 19038, "endOffset": 37208, "count": 708 }, + { "startOffset": 19101, "endOffset": 19105, "count": 707 }, + { "startOffset": 19106, "endOffset": 36661, "count": 2 }, + { "startOffset": 19117, "endOffset": 19122, "count": 1 }, + { "startOffset": 36622, "endOffset": 36627, "count": 0 }, + { "startOffset": 36736, "endOffset": 36751, "count": 0 }, + { "startOffset": 36781, "endOffset": 36957, "count": 612 }, + { "startOffset": 36863, "endOffset": 36912, "count": 609 }, + { "startOffset": 36877, "endOffset": 36879, "count": 598 }, + { "startOffset": 36879, "endOffset": 36883, "count": 11 }, + { "startOffset": 36903, "endOffset": 36907, "count": 598 }, + { "startOffset": 36907, "endOffset": 36909, "count": 11 }, + { "startOffset": 36970, "endOffset": 37179, "count": 620 }, + { "startOffset": 37039, "endOffset": 37055, "count": 446 }, + { "startOffset": 37055, "endOffset": 37058, "count": 174 }, + { "startOffset": 37101, "endOffset": 37111, "count": 0 }, + { "startOffset": 37131, "endOffset": 37138, "count": 174 }, + { "startOffset": 37138, "endOffset": 37176, "count": 446 }, + { "startOffset": 37153, "endOffset": 37163, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 19180, "endOffset": 36606, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "I", + "ranges": [ + { "startOffset": 19317, "endOffset": 22835, "count": 708 }, + { "startOffset": 19539, "endOffset": 20016, "count": 2375 }, + { "startOffset": 19572, "endOffset": 19584, "count": 29 }, + { "startOffset": 19584, "endOffset": 19957, "count": 2346 }, + { "startOffset": 19607, "endOffset": 19614, "count": 0 }, + { "startOffset": 19614, "endOffset": 19660, "count": 571 }, + { "startOffset": 19660, "endOffset": 19764, "count": 276 }, + { "startOffset": 19735, "endOffset": 19748, "count": 158 }, + { "startOffset": 19748, "endOffset": 19764, "count": 118 }, + { "startOffset": 19764, "endOffset": 19818, "count": 388 }, + { "startOffset": 19818, "endOffset": 19838, "count": 506 }, + { "startOffset": 19838, "endOffset": 19934, "count": 84 }, + { "startOffset": 19866, "endOffset": 19888, "count": 19 }, + { "startOffset": 19888, "endOffset": 19911, "count": 65 }, + { "startOffset": 19911, "endOffset": 19933, "count": 0 }, + { "startOffset": 19934, "endOffset": 19956, "count": 521 }, + { "startOffset": 19957, "endOffset": 19976, "count": 1667 }, + { "startOffset": 19976, "endOffset": 19995, "count": 1012 }, + { "startOffset": 20024, "endOffset": 20049, "count": 158 }, + { "startOffset": 20049, "endOffset": 20120, "count": 550 }, + { "startOffset": 20059, "endOffset": 20083, "count": 521 }, + { "startOffset": 20083, "endOffset": 20120, "count": 29 }, + { "startOffset": 20104, "endOffset": 20108, "count": 0 }, + { "startOffset": 20147, "endOffset": 22683, "count": 2781114 }, + { "startOffset": 20188, "endOffset": 20200, "count": 708 }, + { "startOffset": 20200, "endOffset": 22634, "count": 2780406 }, + { "startOffset": 20223, "endOffset": 20230, "count": 0 }, + { "startOffset": 20230, "endOffset": 20262, "count": 85749 }, + { "startOffset": 20262, "endOffset": 20276, "count": 903365 }, + { "startOffset": 20276, "endOffset": 20343, "count": 182410 }, + { "startOffset": 20297, "endOffset": 20305, "count": 21820 }, + { "startOffset": 20305, "endOffset": 20326, "count": 3598 }, + { "startOffset": 20326, "endOffset": 20331, "count": 3171 }, + { "startOffset": 20343, "endOffset": 20397, "count": 93449 }, + { "startOffset": 20359, "endOffset": 20380, "count": 18400 }, + { "startOffset": 20380, "endOffset": 20385, "count": 1693 }, + { "startOffset": 20397, "endOffset": 20475, "count": 53619 }, + { "startOffset": 20412, "endOffset": 20432, "count": 18443 }, + { "startOffset": 20432, "endOffset": 20463, "count": 269 }, + { "startOffset": 20475, "endOffset": 20591, "count": 45130 }, + { "startOffset": 20591, "endOffset": 20855, "count": 45133 }, + { "startOffset": 20627, "endOffset": 20641, "count": 0 }, + { "startOffset": 20695, "endOffset": 20843, "count": 3 }, + { "startOffset": 20855, "endOffset": 21131, "count": 22087 }, + { "startOffset": 20919, "endOffset": 20941, "count": 1786 }, + { "startOffset": 20942, "endOffset": 21004, "count": 0 }, + { "startOffset": 21068, "endOffset": 21070, "count": 269 }, + { "startOffset": 21070, "endOffset": 21072, "count": 21818 }, + { "startOffset": 21131, "endOffset": 21263, "count": 26567 }, + { "startOffset": 21168, "endOffset": 21182, "count": 0 }, + { "startOffset": 21245, "endOffset": 21251, "count": 4480 }, + { "startOffset": 21263, "endOffset": 21289, "count": 5164 }, + { "startOffset": 21289, "endOffset": 21315, "count": 15303 }, + { "startOffset": 21315, "endOffset": 22506, "count": 3733 }, + { "startOffset": 21343, "endOffset": 21365, "count": 2413 }, + { "startOffset": 21365, "endOffset": 21388, "count": 979 }, + { "startOffset": 21388, "endOffset": 22505, "count": 341 }, + { "startOffset": 21438, "endOffset": 21519, "count": 15 }, + { "startOffset": 21451, "endOffset": 21513, "count": 4 }, + { "startOffset": 21513, "endOffset": 21518, "count": 11 }, + { "startOffset": 21519, "endOffset": 21740, "count": 326 }, + { "startOffset": 21542, "endOffset": 21724, "count": 0 }, + { "startOffset": 21759, "endOffset": 21778, "count": 11 }, + { "startOffset": 21797, "endOffset": 22468, "count": 15 }, + { "startOffset": 21858, "endOffset": 21880, "count": 0 }, + { "startOffset": 21884, "endOffset": 21944, "count": 0 }, + { "startOffset": 21982, "endOffset": 22053, "count": 0 }, + { "startOffset": 22054, "endOffset": 22060, "count": 0 }, + { "startOffset": 22074, "endOffset": 22467, "count": 13 }, + { "startOffset": 22093, "endOffset": 22143, "count": 0 }, + { "startOffset": 22168, "endOffset": 22218, "count": 4 }, + { "startOffset": 22219, "endOffset": 22247, "count": 0 }, + { "startOffset": 22258, "endOffset": 22310, "count": 76 }, + { "startOffset": 22275, "endOffset": 22281, "count": 0 }, + { "startOffset": 22339, "endOffset": 22445, "count": 3 }, + { "startOffset": 22359, "endOffset": 22365, "count": 0 }, + { "startOffset": 22416, "endOffset": 22444, "count": 0 }, + { "startOffset": 22468, "endOffset": 22505, "count": 328 }, + { "startOffset": 22506, "endOffset": 22621, "count": 2881 }, + { "startOffset": 22621, "endOffset": 22633, "count": 1381565 }, + { "startOffset": 22634, "endOffset": 22653, "count": 2780406 }, + { "startOffset": 22653, "endOffset": 22672, "count": 1873649 }, + { "startOffset": 22696, "endOffset": 22711, "count": 0 }, + { "startOffset": 22729, "endOffset": 22744, "count": 0 }, + { "startOffset": 22773, "endOffset": 22775, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "$", + "ranges": [ + { "startOffset": 22844, "endOffset": 25250, "count": 3447 }, + { "startOffset": 22990, "endOffset": 23002, "count": 2882 }, + { "startOffset": 23002, "endOffset": 23009, "count": 565 }, + { "startOffset": 23027, "endOffset": 25240, "count": 565 }, + { "startOffset": 23051, "endOffset": 23442, "count": 110 }, + { "startOffset": 23096, "endOffset": 23325, "count": 175 }, + { "startOffset": 23106, "endOffset": 23137, "count": 0 }, + { "startOffset": 23189, "endOffset": 23219, "count": 85 }, + { "startOffset": 23235, "endOffset": 23247, "count": 110 }, + { "startOffset": 23247, "endOffset": 23277, "count": 65 }, + { "startOffset": 23277, "endOffset": 23289, "count": 0 }, + { "startOffset": 23289, "endOffset": 23312, "count": 65 }, + { "startOffset": 23312, "endOffset": 23324, "count": 0 }, + { "startOffset": 23338, "endOffset": 23351, "count": 0 }, + { "startOffset": 23369, "endOffset": 23382, "count": 0 }, + { "startOffset": 23436, "endOffset": 23442, "count": 0 }, + { "startOffset": 23442, "endOffset": 23494, "count": 9 }, + { "startOffset": 23494, "endOffset": 25049, "count": 446 }, + { "startOffset": 23530, "endOffset": 24218, "count": 0 }, + { "startOffset": 24218, "endOffset": 24266, "count": 31 }, + { "startOffset": 24266, "endOffset": 24287, "count": 56 }, + { "startOffset": 24287, "endOffset": 24451, "count": 358 }, + { "startOffset": 24317, "endOffset": 24345, "count": 159 }, + { "startOffset": 24346, "endOffset": 24429, "count": 159 }, + { "startOffset": 24429, "endOffset": 24451, "count": 199 }, + { "startOffset": 24451, "endOffset": 24460, "count": 0 }, + { "startOffset": 24460, "endOffset": 24475, "count": 1 }, + { "startOffset": 24475, "endOffset": 24490, "count": 0 }, + { "startOffset": 24491, "endOffset": 24504, "count": 287 }, + { "startOffset": 24504, "endOffset": 24634, "count": 87 }, + { "startOffset": 24538, "endOffset": 24568, "count": 0 }, + { "startOffset": 24634, "endOffset": 24710, "count": 200 }, + { "startOffset": 24710, "endOffset": 24749, "count": 0 }, + { "startOffset": 24781, "endOffset": 24992, "count": 200 }, + { "startOffset": 24807, "endOffset": 24859, "count": 0 }, + { "startOffset": 24898, "endOffset": 24984, "count": 0 }, + { "startOffset": 24985, "endOffset": 24992, "count": 0 }, + { "startOffset": 24992, "endOffset": 25018, "count": 200 }, + { "startOffset": 25022, "endOffset": 25030, "count": 200 }, + { "startOffset": 25030, "endOffset": 25049, "count": 0 }, + { "startOffset": 25050, "endOffset": 25098, "count": 119 }, + { "startOffset": 25098, "endOffset": 25118, "count": 118 }, + { "startOffset": 25119, "endOffset": 25229, "count": 118 }, + { "startOffset": 25153, "endOffset": 25161, "count": 85 }, + { "startOffset": 25161, "endOffset": 25165, "count": 33 }, + { "startOffset": 25168, "endOffset": 25229, "count": 292 }, + { "startOffset": 25187, "endOffset": 25195, "count": 118 }, + { "startOffset": 25195, "endOffset": 25229, "count": 174 }, + { "startOffset": 25229, "endOffset": 25240, "count": 1 } + ], + "isBlockCoverage": true + }, + { + "functionName": "B", + "ranges": [ + { "startOffset": 25259, "endOffset": 27339, "count": 2081 }, + { "startOffset": 25398, "endOffset": 25465, "count": 0 }, + { "startOffset": 25481, "endOffset": 25760, "count": 0 }, + { "startOffset": 25779, "endOffset": 25808, "count": 0 }, + { "startOffset": 25845, "endOffset": 26548, "count": 14 }, + { "startOffset": 25973, "endOffset": 25981, "count": 0 }, + { "startOffset": 26026, "endOffset": 26051, "count": 0 }, + { "startOffset": 26138, "endOffset": 26159, "count": 9 }, + { "startOffset": 26159, "endOffset": 26180, "count": 2 }, + { "startOffset": 26180, "endOffset": 26216, "count": 3 }, + { "startOffset": 26217, "endOffset": 26266, "count": 11 }, + { "startOffset": 26266, "endOffset": 26377, "count": 0 }, + { "startOffset": 26377, "endOffset": 26510, "count": 11 }, + { "startOffset": 26510, "endOffset": 26546, "count": 0 }, + { "startOffset": 26548, "endOffset": 26907, "count": 386 }, + { "startOffset": 26563, "endOffset": 26586, "count": 0 }, + { "startOffset": 26608, "endOffset": 26628, "count": 0 }, + { "startOffset": 26658, "endOffset": 26742, "count": 9054 }, + { "startOffset": 26678, "endOffset": 26683, "count": 0 }, + { "startOffset": 26706, "endOffset": 26718, "count": 386 }, + { "startOffset": 26718, "endOffset": 26742, "count": 8668 }, + { "startOffset": 26829, "endOffset": 26842, "count": 0 }, + { "startOffset": 26889, "endOffset": 26906, "count": 0 }, + { "startOffset": 26907, "endOffset": 27036, "count": 1681 }, + { "startOffset": 26921, "endOffset": 26944, "count": 0 }, + { "startOffset": 26962, "endOffset": 26970, "count": 86 }, + { "startOffset": 26970, "endOffset": 27004, "count": 91 }, + { "startOffset": 27004, "endOffset": 27034, "count": 1590 }, + { "startOffset": 27056, "endOffset": 27105, "count": 1590 }, + { "startOffset": 27088, "endOffset": 27099, "count": 1587 }, + { "startOffset": 27099, "endOffset": 27104, "count": 3 }, + { "startOffset": 27122, "endOffset": 27329, "count": 94 }, + { "startOffset": 27135, "endOffset": 27161, "count": 0 }, + { "startOffset": 27187, "endOffset": 27270, "count": 2892 }, + { "startOffset": 27204, "endOffset": 27216, "count": 0 }, + { "startOffset": 27238, "endOffset": 27250, "count": 94 }, + { "startOffset": 27250, "endOffset": 27270, "count": 2798 }, + { "startOffset": 27299, "endOffset": 27328, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "H", + "ranges": [ + { "startOffset": 27348, "endOffset": 28476, "count": 598 }, + { "startOffset": 27455, "endOffset": 27491, "count": 0 }, + { "startOffset": 27530, "endOffset": 27554, "count": 0 }, + { "startOffset": 27599, "endOffset": 27636, "count": 0 }, + { "startOffset": 27662, "endOffset": 27722, "count": 88 }, + { "startOffset": 27722, "endOffset": 27730, "count": 510 }, + { "startOffset": 27742, "endOffset": 27760, "count": 510 }, + { "startOffset": 27760, "endOffset": 27774, "count": 88 }, + { "startOffset": 27774, "endOffset": 27776, "count": 0 }, + { "startOffset": 27776, "endOffset": 27778, "count": 88 }, + { "startOffset": 27806, "endOffset": 27821, "count": 0 }, + { "startOffset": 27821, "endOffset": 28300, "count": 88 }, + { "startOffset": 27882, "endOffset": 27978, "count": 0 }, + { "startOffset": 28012, "endOffset": 28024, "count": 0 }, + { "startOffset": 28088, "endOffset": 28131, "count": 0 }, + { "startOffset": 28198, "endOffset": 28234, "count": 0 }, + { "startOffset": 28235, "endOffset": 28300, "count": 0 }, + { "startOffset": 28300, "endOffset": 28313, "count": 88 }, + { "startOffset": 28313, "endOffset": 28328, "count": 0 }, + { "startOffset": 28328, "endOffset": 28465, "count": 88 }, + { "startOffset": 28346, "endOffset": 28361, "count": 0 }, + { "startOffset": 28379, "endOffset": 28394, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "vt", + "ranges": [ + { "startOffset": 28485, "endOffset": 29450, "count": 15 }, + { "startOffset": 28529, "endOffset": 29130, "count": 0 }, + { "startOffset": 29130, "endOffset": 29185, "count": 4 }, + { "startOffset": 29159, "endOffset": 29163, "count": 0 }, + { "startOffset": 29185, "endOffset": 29255, "count": 0 }, + { "startOffset": 29255, "endOffset": 29291, "count": 1 }, + { "startOffset": 29291, "endOffset": 29417, "count": 0 }, + { "startOffset": 29417, "endOffset": 29428, "count": 10 } + ], + "isBlockCoverage": true + }, + { + "functionName": "Me", + "ranges": [ + { "startOffset": 29460, "endOffset": 29920, "count": 7361 }, + { "startOffset": 29523, "endOffset": 29685, "count": 89873 }, + { "startOffset": 29548, "endOffset": 29560, "count": 0 }, + { "startOffset": 29578, "endOffset": 29599, "count": 2881 }, + { "startOffset": 29599, "endOffset": 29649, "count": 4525 }, + { "startOffset": 29630, "endOffset": 29643, "count": 4480 }, + { "startOffset": 29643, "endOffset": 29649, "count": 45 }, + { "startOffset": 29649, "endOffset": 29672, "count": 94 }, + { "startOffset": 29672, "endOffset": 29680, "count": 82373 }, + { "startOffset": 29681, "endOffset": 29685, "count": 82512 }, + { "startOffset": 29693, "endOffset": 29797, "count": 4480 }, + { "startOffset": 29797, "endOffset": 29919, "count": 2881 }, + { "startOffset": 29888, "endOffset": 29893, "count": 0 }, + { "startOffset": 29894, "endOffset": 29919, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "k", + "ranges": [ + { "startOffset": 29930, "endOffset": 30242, "count": 17622 }, + { "startOffset": 29980, "endOffset": 30204, "count": 21989 }, + { "startOffset": 30020, "endOffset": 30045, "count": 21241 }, + { "startOffset": 30031, "endOffset": 30037, "count": 4248 }, + { "startOffset": 30037, "endOffset": 30045, "count": 16993 }, + { "startOffset": 30045, "endOffset": 30075, "count": 748 }, + { "startOffset": 30061, "endOffset": 30067, "count": 119 }, + { "startOffset": 30067, "endOffset": 30075, "count": 629 }, + { "startOffset": 30075, "endOffset": 30168, "count": 0 }, + { "startOffset": 30168, "endOffset": 30204, "count": 4367 } + ], + "isBlockCoverage": true + }, + { + "functionName": "fe", + "ranges": [ + { "startOffset": 30251, "endOffset": 30580, "count": 612 }, + { "startOffset": 30345, "endOffset": 30352, "count": 431 }, + { "startOffset": 30352, "endOffset": 30356, "count": 181 }, + { "startOffset": 30400, "endOffset": 30410, "count": 0 }, + { "startOffset": 30426, "endOffset": 30428, "count": 598 }, + { "startOffset": 30428, "endOffset": 30430, "count": 14 }, + { "startOffset": 30434, "endOffset": 30440, "count": 598 }, + { "startOffset": 30440, "endOffset": 30442, "count": 14 }, + { "startOffset": 30567, "endOffset": 30579, "count": 598 } + ], + "isBlockCoverage": true + }, + { + "functionName": "N", + "ranges": [ + { "startOffset": 30590, "endOffset": 30897, "count": 21164 }, + { "startOffset": 30656, "endOffset": 30853, "count": 263484 }, + { "startOffset": 30681, "endOffset": 30692, "count": 0 }, + { "startOffset": 30728, "endOffset": 30740, "count": 21164 }, + { "startOffset": 30740, "endOffset": 30757, "count": 242320 }, + { "startOffset": 30757, "endOffset": 30817, "count": 69 }, + { "startOffset": 30780, "endOffset": 30812, "count": 0 }, + { "startOffset": 30817, "endOffset": 30852, "count": 242251 }, + { "startOffset": 30833, "endOffset": 30844, "count": 0 }, + { "startOffset": 30861, "endOffset": 30875, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "$e", + "ranges": [ + { "startOffset": 30906, "endOffset": 31166, "count": 184 }, + { "startOffset": 31002, "endOffset": 31004, "count": 10 }, + { "startOffset": 31004, "endOffset": 31006, "count": 174 }, + { "startOffset": 31010, "endOffset": 31012, "count": 10 }, + { "startOffset": 31012, "endOffset": 31014, "count": 174 }, + { "startOffset": 31028, "endOffset": 31136, "count": 0 }, + { "startOffset": 31149, "endOffset": 31161, "count": 174 } + ], + "isBlockCoverage": true + }, + { + "functionName": "xt", + "ranges": [ + { "startOffset": 31176, "endOffset": 31437, "count": 968 }, + { "startOffset": 31235, "endOffset": 31375, "count": 6633 }, + { "startOffset": 31260, "endOffset": 31271, "count": 0 }, + { "startOffset": 31289, "endOffset": 31318, "count": 0 }, + { "startOffset": 31318, "endOffset": 31339, "count": 968 }, + { "startOffset": 31339, "endOffset": 31362, "count": 129 }, + { "startOffset": 31362, "endOffset": 31370, "count": 5536 }, + { "startOffset": 31371, "endOffset": 31375, "count": 5665 }, + { "startOffset": 31389, "endOffset": 31407, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "he", + "ranges": [ + { "startOffset": 31447, "endOffset": 31682, "count": 328 }, + { "startOffset": 31486, "endOffset": 31668, "count": 8778 }, + { "startOffset": 31537, "endOffset": 31548, "count": 0 }, + { "startOffset": 31566, "endOffset": 31595, "count": 0 }, + { "startOffset": 31595, "endOffset": 31611, "count": 328 }, + { "startOffset": 31611, "endOffset": 31633, "count": 968 }, + { "startOffset": 31633, "endOffset": 31658, "count": 477 }, + { "startOffset": 31658, "endOffset": 31666, "count": 7005 }, + { "startOffset": 31676, "endOffset": 31681, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "Et", + "ranges": [{ "startOffset": 31692, "endOffset": 31925, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "de", + "ranges": [ + { "startOffset": 31935, "endOffset": 32158, "count": 1044 }, + { "startOffset": 32040, "endOffset": 32067, "count": 302641 }, + { "startOffset": 32057, "endOffset": 32066, "count": 0 }, + { "startOffset": 32070, "endOffset": 32122, "count": 302641 }, + { "startOffset": 32087, "endOffset": 32106, "count": 10053 }, + { "startOffset": 32107, "endOffset": 32118, "count": 1044 }, + { "startOffset": 32118, "endOffset": 32122, "count": 301597 } + ], + "isBlockCoverage": true + }, + { + "functionName": "R", + "ranges": [ + { "startOffset": 32168, "endOffset": 32375, "count": 41984 }, + { "startOffset": 32227, "endOffset": 32231, "count": 0 }, + { "startOffset": 32287, "endOffset": 32334, "count": 63056 }, + { "startOffset": 32301, "endOffset": 32317, "count": 56594 }, + { "startOffset": 32317, "endOffset": 32334, "count": 6462 }, + { "startOffset": 32334, "endOffset": 32354, "count": 35522 } + ], + "isBlockCoverage": true + }, + { + "functionName": "ie", + "ranges": [ + { "startOffset": 32384, "endOffset": 32623, "count": 150282 }, + { "startOffset": 32428, "endOffset": 32444, "count": 0 }, + { "startOffset": 32444, "endOffset": 32463, "count": 152 }, + { "startOffset": 32463, "endOffset": 32601, "count": 150130 }, + { "startOffset": 32509, "endOffset": 32513, "count": 12055 }, + { "startOffset": 32513, "endOffset": 32601, "count": 138075 }, + { "startOffset": 32536, "endOffset": 32573, "count": 486 }, + { "startOffset": 32573, "endOffset": 32581, "count": 137589 }, + { "startOffset": 32582, "endOffset": 32601, "count": 137589 } + ], + "isBlockCoverage": true + }, + { + "functionName": "_t", + "ranges": [ + { "startOffset": 32633, "endOffset": 32880, "count": 341 }, + { "startOffset": 32677, "endOffset": 32693, "count": 2 }, + { "startOffset": 32693, "endOffset": 32707, "count": 9 }, + { "startOffset": 32707, "endOffset": 32860, "count": 332 }, + { "startOffset": 32767, "endOffset": 32860, "count": 17 }, + { "startOffset": 32786, "endOffset": 32810, "count": 2 }, + { "startOffset": 32810, "endOffset": 32818, "count": 15 }, + { "startOffset": 32819, "endOffset": 32860, "count": 15 }, + { "startOffset": 32861, "endOffset": 32879, "count": 326 } + ], + "isBlockCoverage": true + }, + { + "functionName": "Ue", + "ranges": [ + { "startOffset": 32890, "endOffset": 33091, "count": 169360 }, + { "startOffset": 32955, "endOffset": 33061, "count": 165027 }, + { "startOffset": 32974, "endOffset": 32983, "count": 0 }, + { "startOffset": 32983, "endOffset": 33004, "count": 29086 }, + { "startOffset": 33004, "endOffset": 33012, "count": 135941 }, + { "startOffset": 33013, "endOffset": 33024, "count": 135941 }, + { "startOffset": 33024, "endOffset": 33057, "count": 13822 }, + { "startOffset": 33057, "endOffset": 33061, "count": 122119 }, + { "startOffset": 33061, "endOffset": 33070, "count": 4333 }, + { "startOffset": 33070, "endOffset": 33090, "count": 155538 } + ], + "isBlockCoverage": true + }, + { + "functionName": "Lt", + "ranges": [{ "startOffset": 33101, "endOffset": 33298, "count": 708 }], + "isBlockCoverage": true + }, + { + "functionName": "P", + "ranges": [ + { "startOffset": 33308, "endOffset": 33497, "count": 620 }, + { "startOffset": 33401, "endOffset": 33408, "count": 404 }, + { "startOffset": 33408, "endOffset": 33412, "count": 216 } + ], + "isBlockCoverage": true + }, + { + "functionName": "_", + "ranges": [ + { "startOffset": 33506, "endOffset": 33659, "count": 17 }, + { "startOffset": 33623, "endOffset": 33650, "count": 2 }, + { "startOffset": 33636, "endOffset": 33640, "count": 0 }, + { "startOffset": 33650, "endOffset": 33654, "count": 15 } + ], + "isBlockCoverage": true + }, + { + "functionName": "At", + "ranges": [ + { "startOffset": 33668, "endOffset": 33826, "count": 3 }, + { "startOffset": 33707, "endOffset": 33803, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "X", + "ranges": [ + { "startOffset": 33836, "endOffset": 33971, "count": 4 }, + { "startOffset": 33924, "endOffset": 33962, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "ge", + "ranges": [ + { "startOffset": 33980, "endOffset": 34137, "count": 235 }, + { "startOffset": 34024, "endOffset": 34028, "count": 0 }, + { "startOffset": 34051, "endOffset": 34081, "count": 162 }, + { "startOffset": 34081, "endOffset": 34089, "count": 73 }, + { "startOffset": 34090, "endOffset": 34116, "count": 73 } + ], + "isBlockCoverage": true + }, + { + "functionName": "be", + "ranges": [ + { "startOffset": 34147, "endOffset": 34291, "count": 2432 }, + { "startOffset": 34229, "endOffset": 34283, "count": 99575 }, + { "startOffset": 34247, "endOffset": 34255, "count": 0 }, + { "startOffset": 34255, "endOffset": 34271, "count": 2299 }, + { "startOffset": 34271, "endOffset": 34282, "count": 97276 } + ], + "isBlockCoverage": true + }, + { + "functionName": "j", + "ranges": [ + { "startOffset": 34301, "endOffset": 34419, "count": 709 }, + { "startOffset": 34333, "endOffset": 34342, "count": 11386 }, + { "startOffset": 34345, "endOffset": 34408, "count": 11124 }, + { "startOffset": 34397, "endOffset": 34408, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "Ot", + "ranges": [ + { "startOffset": 34428, "endOffset": 34558, "count": 612 }, + { "startOffset": 34485, "endOffset": 34504, "count": 598 }, + { "startOffset": 34504, "endOffset": 34523, "count": 0 }, + { "startOffset": 34523, "endOffset": 34546, "count": 14 } + ], + "isBlockCoverage": true + }, + { + "functionName": "Rt", + "ranges": [ + { "startOffset": 34568, "endOffset": 34651, "count": 4 }, + { "startOffset": 34642, "endOffset": 34646, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "se", + "ranges": [ + { "startOffset": 34661, "endOffset": 34774, "count": 764 }, + { "startOffset": 34700, "endOffset": 34709, "count": 0 }, + { "startOffset": 34709, "endOffset": 34751, "count": 122 }, + { "startOffset": 34751, "endOffset": 34762, "count": 642 } + ], + "isBlockCoverage": true + }, + { + "functionName": "pe", + "ranges": [ + { "startOffset": 34784, "endOffset": 34877, "count": 13822 }, + { "startOffset": 34827, "endOffset": 34847, "count": 6521 }, + { "startOffset": 34847, "endOffset": 34868, "count": 193 }, + { "startOffset": 34868, "endOffset": 34872, "count": 13629 } + ], + "isBlockCoverage": true + }, + { + "functionName": "K", + "ranges": [ + { "startOffset": 34887, "endOffset": 34953, "count": 169552 }, + { "startOffset": 34929, "endOffset": 34933, "count": 194 }, + { "startOffset": 34933, "endOffset": 34948, "count": 169358 } + ], + "isBlockCoverage": true + }, + { + "functionName": "It", + "ranges": [ + { "startOffset": 34962, "endOffset": 35041, "count": 620 }, + { "startOffset": 35015, "endOffset": 35031, "count": 446 }, + { "startOffset": 35031, "endOffset": 35036, "count": 174 } + ], + "isBlockCoverage": true + }, + { + "functionName": "Nt", + "ranges": [ + { "startOffset": 35051, "endOffset": 35130, "count": 612 }, + { "startOffset": 35120, "endOffset": 35125, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "Mt", + "ranges": [ + { "startOffset": 35140, "endOffset": 35218, "count": 620 }, + { "startOffset": 35192, "endOffset": 35208, "count": 446 }, + { "startOffset": 35208, "endOffset": 35213, "count": 174 } + ], + "isBlockCoverage": true + }, + { + "functionName": "$t", + "ranges": [ + { "startOffset": 35228, "endOffset": 35307, "count": 612 }, + { "startOffset": 35281, "endOffset": 35297, "count": 88 }, + { "startOffset": 35297, "endOffset": 35302, "count": 524 } + ], + "isBlockCoverage": true + }, + { + "functionName": "Ut", + "ranges": [ + { "startOffset": 35317, "endOffset": 35395, "count": 612 }, + { "startOffset": 35385, "endOffset": 35390, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "jt", + "ranges": [ + { "startOffset": 35405, "endOffset": 35490, "count": 1320 }, + { "startOffset": 35452, "endOffset": 35459, "count": 612 }, + { "startOffset": 35459, "endOffset": 35463, "count": 708 } + ], + "isBlockCoverage": true + }, + { + "functionName": "Dt", + "ranges": [ + { "startOffset": 35500, "endOffset": 35585, "count": 1328 }, + { "startOffset": 35547, "endOffset": 35554, "count": 620 }, + { "startOffset": 35554, "endOffset": 35558, "count": 708 } + ], + "isBlockCoverage": true + }, + { + "functionName": "M", + "ranges": [{ "startOffset": 35595, "endOffset": 35663, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "W", + "ranges": [{ "startOffset": 35672, "endOffset": 35737, "count": 33343 }], + "isBlockCoverage": true + }, + { + "functionName": "Y", + "ranges": [{ "startOffset": 35746, "endOffset": 35803, "count": 12507 }], + "isBlockCoverage": true + }, + { + "functionName": "Tt", + "ranges": [{ "startOffset": 35812, "endOffset": 35868, "count": 612 }], + "isBlockCoverage": true + }, + { + "functionName": "Ft", + "ranges": [{ "startOffset": 35878, "endOffset": 35934, "count": 620 }], + "isBlockCoverage": true + }, + { + "functionName": "je", + "ranges": [{ "startOffset": 35944, "endOffset": 36002, "count": 242251 }], + "isBlockCoverage": true + }, + { + "functionName": "Bt", + "ranges": [{ "startOffset": 36012, "endOffset": 36062, "count": 612 }], + "isBlockCoverage": true + }, + { + "functionName": "Pt", + "ranges": [{ "startOffset": 36072, "endOffset": 36122, "count": 620 }], + "isBlockCoverage": true + }, + { + "functionName": "Wt", + "ranges": [{ "startOffset": 36133, "endOffset": 36177, "count": 612 }], + "isBlockCoverage": true + }, + { + "functionName": "qt", + "ranges": [{ "startOffset": 36188, "endOffset": 36216, "count": 708 }], + "isBlockCoverage": true + }, + { + "functionName": "Jt", + "ranges": [{ "startOffset": 36227, "endOffset": 36269, "count": 612 }], + "isBlockCoverage": true + }, + { + "functionName": "Gt", + "ranges": [{ "startOffset": 36280, "endOffset": 36316, "count": 708 }], + "isBlockCoverage": true + }, + { + "functionName": "zt", + "ranges": [{ "startOffset": 36327, "endOffset": 36363, "count": 708 }], + "isBlockCoverage": true + }, + { + "functionName": "Ht", + "ranges": [{ "startOffset": 36374, "endOffset": 36403, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Xt", + "ranges": [{ "startOffset": 36414, "endOffset": 36461, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "ve", + "ranges": [ + { "startOffset": 37222, "endOffset": 37421, "count": 609 }, + { "startOffset": 37263, "endOffset": 37394, "count": 15883 }, + { "startOffset": 37275, "endOffset": 37280, "count": 0 }, + { "startOffset": 37314, "endOffset": 37320, "count": 609 }, + { "startOffset": 37320, "endOffset": 37326, "count": 15274 }, + { "startOffset": 37326, "endOffset": 37356, "count": 0 }, + { "startOffset": 37356, "endOffset": 37393, "count": 15274 }, + { "startOffset": 37383, "endOffset": 37388, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "br", + "ranges": [{ "startOffset": 37431, "endOffset": 38195, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "xe", + "ranges": [{ "startOffset": 38205, "endOffset": 38468, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ze", + "ranges": [{ "startOffset": 38478, "endOffset": 38515, "count": 15274 }], + "isBlockCoverage": true + }, + { + "functionName": "D", + "ranges": [{ "startOffset": 38525, "endOffset": 38656, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 38697, "endOffset": 38823, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 38758, "endOffset": 38808, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 38838, "endOffset": 38863, "count": 708 }, + { "startOffset": 38847, "endOffset": 38855, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 38881, "endOffset": 38978, "count": 563 }, + { "startOffset": 38909, "endOffset": 38932, "count": 368 }, + { "startOffset": 38933, "endOffset": 38942, "count": 0 }, + { "startOffset": 38962, "endOffset": 38977, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 38999, "endOffset": 39084, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 39120, "endOffset": 39429, "count": 188 }, + { "startOffset": 39135, "endOffset": 39169, "count": 3 }, + { "startOffset": 39169, "endOffset": 39206, "count": 185 }, + { "startOffset": 39199, "endOffset": 39206, "count": 40 }, + { "startOffset": 39206, "endOffset": 39266, "count": 145 }, + { "startOffset": 39266, "endOffset": 39428, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 39232, "endOffset": 39241, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 39461, "endOffset": 39531, "count": 290 }, + { "startOffset": 39523, "endOffset": 39530, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 39553, "endOffset": 39559, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 39573, "endOffset": 39603, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 39636, "endOffset": 39663, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 39663, "endOffset": 39742, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "kr", + "ranges": [{ "startOffset": 39743, "endOffset": 40012, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 39868, "endOffset": 39936, "count": 9057 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 39951, "endOffset": 40010, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [ + { "startOffset": 40012, "endOffset": 40306, "count": 293 }, + { "startOffset": 40045, "endOffset": 40054, "count": 0 }, + { "startOffset": 40103, "endOffset": 40110, "count": 3 }, + { "startOffset": 40110, "endOffset": 40171, "count": 290 }, + { "startOffset": 40171, "endOffset": 40282, "count": 0 }, + { "startOffset": 40282, "endOffset": 40305, "count": 290 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 40083, "endOffset": 40095, "count": 1229034 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 40198, "endOffset": 40266, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 40267, "endOffset": 40273, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 40306, "endOffset": 40451, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "expireDiskCache", + "ranges": [ + { "startOffset": 40451, "endOffset": 40593, "count": 1 }, + { "startOffset": 40513, "endOffset": 40592, "count": 9057 }, + { "startOffset": 40523, "endOffset": 40592, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "removeOldCacheDirectory", + "ranges": [ + { "startOffset": 40593, "endOffset": 40849, "count": 1 }, + { "startOffset": 40689, "endOffset": 40840, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 40682, "endOffset": 40688, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "decode", + "ranges": [{ "startOffset": 41171, "endOffset": 41247, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "decode", + "ranges": [{ "startOffset": 41250, "endOffset": 41334, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Cr", + "ranges": [ + { "startOffset": 41336, "endOffset": 41700, "count": 3 }, + { "startOffset": 41392, "endOffset": 41672, "count": 6 }, + { "startOffset": 41454, "endOffset": 41647, "count": 949 }, + { "startOffset": 41491, "endOffset": 41499, "count": 0 }, + { "startOffset": 41566, "endOffset": 41608, "count": 12 }, + { "startOffset": 41608, "endOffset": 41629, "count": 937 }, + { "startOffset": 41630, "endOffset": 41636, "count": 0 }, + { "startOffset": 41648, "endOffset": 41655, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "Sr", + "ranges": [ + { "startOffset": 41715, "endOffset": 41782, "count": 6 }, + { "startOffset": 41770, "endOffset": 41781, "count": 3 } + ], + "isBlockCoverage": true + }, + { + "functionName": "ee", + "ranges": [ + { "startOffset": 41798, "endOffset": 41960, "count": 3808 }, + { "startOffset": 41837, "endOffset": 41890, "count": 4794 }, + { "startOffset": 41929, "endOffset": 41949, "count": 291 } + ], + "isBlockCoverage": true + }, + { + "functionName": "tt", + "ranges": [ + { "startOffset": 41982, "endOffset": 42037, "count": 1898 }, + { "startOffset": 42012, "endOffset": 42015, "count": 3 }, + { "startOffset": 42015, "endOffset": 42036, "count": 1895 } + ], + "isBlockCoverage": true + }, + { + "functionName": "vr", + "ranges": [{ "startOffset": 42056, "endOffset": 42082, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "xr", + "ranges": [{ "startOffset": 42095, "endOffset": 42129, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Er", + "ranges": [ + { "startOffset": 42154, "endOffset": 42630, "count": 3 }, + { "startOffset": 42290, "endOffset": 42594, "count": 6 }, + { "startOffset": 42310, "endOffset": 42352, "count": 3 }, + { "startOffset": 42318, "endOffset": 42341, "count": 0 }, + { "startOffset": 42366, "endOffset": 42593, "count": 3 }, + { "startOffset": 42401, "endOffset": 42592, "count": 949 }, + { "startOffset": 42418, "endOffset": 42462, "count": 0 }, + { "startOffset": 42466, "endOffset": 42479, "count": 946 }, + { "startOffset": 42571, "endOffset": 42590, "count": 12 } + ], + "isBlockCoverage": true + }, + { + "functionName": "te", + "ranges": [ + { "startOffset": 42645, "endOffset": 42787, "count": 3808 }, + { "startOffset": 42706, "endOffset": 42714, "count": 291 }, + { "startOffset": 42714, "endOffset": 42719, "count": 3517 }, + { "startOffset": 42722, "endOffset": 42767, "count": 4794 }, + { "startOffset": 42744, "endOffset": 42753, "count": 986 } + ], + "isBlockCoverage": true + }, + { + "functionName": "Or", + "ranges": [{ "startOffset": 42982, "endOffset": 43015, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Rr", + "ranges": [{ "startOffset": 43037, "endOffset": 43078, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "rt", + "ranges": [{ "startOffset": 43106, "endOffset": 43146, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "Ir", + "ranges": [{ "startOffset": 43169, "endOffset": 43213, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "nt", + "ranges": [{ "startOffset": 43231, "endOffset": 43269, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ce", + "ranges": [ + { "startOffset": 43288, "endOffset": 43389, "count": 3 }, + { "startOffset": 43364, "endOffset": 43369, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "Nr", + "ranges": [{ "startOffset": 43414, "endOffset": 43521, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "it", + "ranges": [{ "startOffset": 43542, "endOffset": 43636, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "st", + "ranges": [ + { "startOffset": 43652, "endOffset": 43970, "count": 3 }, + { "startOffset": 43676, "endOffset": 43729, "count": 0 }, + { "startOffset": 43810, "endOffset": 43967, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "Mr", + "ranges": [{ "startOffset": 43987, "endOffset": 44081, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "$r", + "ranges": [{ "startOffset": 44107, "endOffset": 44189, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ot", + "ranges": [ + { "startOffset": 44208, "endOffset": 44509, "count": 3 }, + { "startOffset": 44302, "endOffset": 44421, "count": 36 }, + { "startOffset": 44322, "endOffset": 44337, "count": 0 }, + { "startOffset": 44366, "endOffset": 44407, "count": 0 }, + { "startOffset": 44450, "endOffset": 44462, "count": 36 }, + { "startOffset": 44468, "endOffset": 44488, "count": 0 }, + { "startOffset": 44489, "endOffset": 44499, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "Ur", + "ranges": [ + { "startOffset": 44531, "endOffset": 45016, "count": 6 }, + { "startOffset": 44553, "endOffset": 44557, "count": 3 }, + { "startOffset": 44558, "endOffset": 44598, "count": 3 }, + { "startOffset": 44598, "endOffset": 44605, "count": 0 }, + { "startOffset": 44606, "endOffset": 44791, "count": 0 }, + { "startOffset": 44791, "endOffset": 44832, "count": 3 }, + { "startOffset": 44832, "endOffset": 44933, "count": 0 }, + { "startOffset": 44933, "endOffset": 44956, "count": 3 }, + { "startOffset": 44956, "endOffset": 45014, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "at", + "ranges": [ + { "startOffset": 45034, "endOffset": 45096, "count": 6 }, + { "startOffset": 45059, "endOffset": 45087, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "jr", + "ranges": [ + { "startOffset": 45112, "endOffset": 45191, "count": 3 }, + { "startOffset": 45142, "endOffset": 45190, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "Dr", + "ranges": [{ "startOffset": 45223, "endOffset": 45358, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ct", + "ranges": [{ "startOffset": 45376, "endOffset": 45458, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Tr", + "ranges": [{ "startOffset": 45490, "endOffset": 45571, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Fr", + "ranges": [{ "startOffset": 45588, "endOffset": 45640, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Br", + "ranges": [{ "startOffset": 45661, "endOffset": 45695, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Pr", + "ranges": [{ "startOffset": 45728, "endOffset": 45849, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Wr", + "ranges": [{ "startOffset": 45870, "endOffset": 45937, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "qr", + "ranges": [{ "startOffset": 45956, "endOffset": 46016, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "Jr", + "ranges": [{ "startOffset": 46038, "endOffset": 46255, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 46293, "endOffset": 46319, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "ut", + "ranges": [ + { "startOffset": 46319, "endOffset": 46911, "count": 3 }, + { "startOffset": 46385, "endOffset": 46394, "count": 0 }, + { "startOffset": 46403, "endOffset": 46417, "count": 0 }, + { "startOffset": 46528, "endOffset": 46532, "count": 0 }, + { "startOffset": 46792, "endOffset": 46837, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 46699, "endOffset": 46713, "count": 3 }, + { "startOffset": 46706, "endOffset": 46710, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "Ln", + "ranges": [{ "startOffset": 46912, "endOffset": 46936, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lt", + "ranges": [{ "startOffset": 46951, "endOffset": 47022, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "Gr", + "ranges": [{ "startOffset": 47046, "endOffset": 47170, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "zr", + "ranges": [{ "startOffset": 47191, "endOffset": 47283, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 47321, "endOffset": 47347, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Ae", + "ranges": [{ "startOffset": 47347, "endOffset": 47406, "count": 9 }], + "isBlockCoverage": true + }, + { + "functionName": "An", + "ranges": [{ "startOffset": 47407, "endOffset": 47431, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ft", + "ranges": [{ "startOffset": 47446, "endOffset": 47484, "count": 1910 }], + "isBlockCoverage": true + }, + { + "functionName": "re", + "ranges": [ + { "startOffset": 47496, "endOffset": 47608, "count": 1910 }, + { "startOffset": 47543, "endOffset": 47552, "count": 1900 }, + { "startOffset": 47552, "endOffset": 47607, "count": 10 } + ], + "isBlockCoverage": true + }, + { + "functionName": "Hr", + "ranges": [{ "startOffset": 47620, "endOffset": 47781, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 47842, "endOffset": 47870, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Vr", + "ranges": [{ "startOffset": 47870, "endOffset": 48044, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "On", + "ranges": [{ "startOffset": 48045, "endOffset": 48069, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 48093, "endOffset": 48132, "count": 949 }], + "isBlockCoverage": true + }, + { + "functionName": "tn", + "ranges": [{ "startOffset": 48152, "endOffset": 48226, "count": 949 }], + "isBlockCoverage": true + }, + { + "functionName": "rn", + "ranges": [{ "startOffset": 48251, "endOffset": 48379, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "dt", + "ranges": [{ "startOffset": 48397, "endOffset": 48639, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "nn", + "ranges": [{ "startOffset": 48660, "endOffset": 48757, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "sn", + "ranges": [ + { "startOffset": 48778, "endOffset": 49044, "count": 949 }, + { "startOffset": 48894, "endOffset": 48928, "count": 0 }, + { "startOffset": 48947, "endOffset": 48955, "count": 12 }, + { "startOffset": 48955, "endOffset": 48958, "count": 937 }, + { "startOffset": 48974, "endOffset": 48987, "count": 3 }, + { "startOffset": 49020, "endOffset": 49032, "count": 12 }, + { "startOffset": 49032, "endOffset": 49042, "count": 937 } + ], + "isBlockCoverage": true + }, + { + "functionName": "on", + "ranges": [ + { "startOffset": 49071, "endOffset": 49136, "count": 949 }, + { "startOffset": 49116, "endOffset": 49124, "count": 6 } + ], + "isBlockCoverage": true + }, + { + "functionName": "an", + "ranges": [ + { "startOffset": 49152, "endOffset": 49250, "count": 949 }, + { "startOffset": 49209, "endOffset": 49241, "count": 946 } + ], + "isBlockCoverage": true + }, + { + "functionName": "gt", + "ranges": [ + { "startOffset": 49273, "endOffset": 49338, "count": 949 }, + { "startOffset": 49319, "endOffset": 49331, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "cn", + "ranges": [ + { "startOffset": 49353, "endOffset": 49458, "count": 3 }, + { "startOffset": 49439, "endOffset": 49440, "count": 0 }, + { "startOffset": 49443, "endOffset": 49457, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "un", + "ranges": [{ "startOffset": 49488, "endOffset": 49539, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ln", + "ranges": [ + { "startOffset": 49562, "endOffset": 49704, "count": 949 }, + { "startOffset": 49596, "endOffset": 49605, "count": 3 }, + { "startOffset": 49605, "endOffset": 49639, "count": 946 }, + { "startOffset": 49639, "endOffset": 49642, "count": 0 }, + { "startOffset": 49642, "endOffset": 49703, "count": 946 }, + { "startOffset": 49663, "endOffset": 49674, "count": 632 }, + { "startOffset": 49674, "endOffset": 49703, "count": 12 }, + { "startOffset": 49693, "endOffset": 49699, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "pt", + "ranges": [{ "startOffset": 49762, "endOffset": 49846, "count": 950 }], + "isBlockCoverage": true + }, + { + "functionName": "wt", + "ranges": [{ "startOffset": 49868, "endOffset": 49943, "count": 6 }], + "isBlockCoverage": true + }, + { + "functionName": "mt", + "ranges": [{ "startOffset": 49958, "endOffset": 50001, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "hn", + "ranges": [{ "startOffset": 50019, "endOffset": 50063, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "dn", + "ranges": [ + { "startOffset": 50086, "endOffset": 50490, "count": 3 }, + { "startOffset": 50200, "endOffset": 50481, "count": 6 }, + { "startOffset": 50241, "endOffset": 50480, "count": 949 }, + { "startOffset": 50336, "endOffset": 50344, "count": 12 }, + { "startOffset": 50344, "endOffset": 50347, "count": 937 }, + { "startOffset": 50357, "endOffset": 50365, "count": 0 }, + { "startOffset": 50467, "endOffset": 50479, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "kt", + "ranges": [ + { "startOffset": 50512, "endOffset": 50709, "count": 949 }, + { "startOffset": 50588, "endOffset": 50708, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "gn", + "ranges": [ + { "startOffset": 50737, "endOffset": 50782, "count": 3 }, + { "startOffset": 50777, "endOffset": 50781, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "bn", + "ranges": [ + { "startOffset": 50798, "endOffset": 51133, "count": 3 }, + { "startOffset": 50887, "endOffset": 51060, "count": 0 }, + { "startOffset": 51109, "endOffset": 51124, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 50833, "endOffset": 50848, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "yt", + "ranges": [{ "startOffset": 51160, "endOffset": 51514, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 51252, "endOffset": 51497, "count": 3 }, + { "startOffset": 51296, "endOffset": 51300, "count": 0 }, + { "startOffset": 51384, "endOffset": 51413, "count": 0 }, + { "startOffset": 51431, "endOffset": 51433, "count": 0 }, + { "startOffset": 51440, "endOffset": 51445, "count": 0 }, + { "startOffset": 51458, "endOffset": 51460, "count": 0 }, + { "startOffset": 51462, "endOffset": 51476, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 51537, "endOffset": 51564, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "pn", + "ranges": [ + { "startOffset": 51564, "endOffset": 51841, "count": 3 }, + { "startOffset": 51606, "endOffset": 51612, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "toString", + "ranges": [{ "startOffset": 51841, "endOffset": 51880, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Ct", + "ranges": [{ "startOffset": 51881, "endOffset": 51981, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 52010, "endOffset": 52153, "count": 3 }, + { "startOffset": 52059, "endOffset": 52121, "count": 6 }, + { "startOffset": 52081, "endOffset": 52120, "count": 3 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 52142, "endOffset": 52150, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 52184, "endOffset": 52338, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 52517, "endOffset": 52530, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 52644, "endOffset": 52972, "count": 3 }, + { "startOffset": 52734, "endOffset": 52768, "count": 0 }, + { "startOffset": 52779, "endOffset": 52836, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 52844, "endOffset": 52971, "count": 3 }, + { "startOffset": 52872, "endOffset": 52943, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 52994, "endOffset": 53064, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 53092, "endOffset": 53199, "count": 1 }, + { "startOffset": 53188, "endOffset": 53191, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 53222, "endOffset": 53868, "count": 293 }, + { "startOffset": 53269, "endOffset": 53315, "count": 0 }, + { "startOffset": 53362, "endOffset": 53370, "count": 0 }, + { "startOffset": 53525, "endOffset": 53649, "count": 1 }, + { "startOffset": 53732, "endOffset": 53865, "count": 3 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 53745, "endOffset": 53833, "count": 3 }, + { "startOffset": 53800, "endOffset": 53821, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 53834, "endOffset": 53851, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 53891, "endOffset": 54176, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 54195, "endOffset": 54462, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "765", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/tsx/dist/node-features-Bdn6JLJo.cjs", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 757, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "s", + "ranges": [{ "startOffset": 47, "endOffset": 91, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 102, "endOffset": 195, "count": 1 }, + { "startOffset": 137, "endOffset": 184, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 274, "endOffset": 380, "count": 1 }, + { "startOffset": 312, "endOffset": 371, "count": 2 }, + { "startOffset": 343, "endOffset": 356, "count": 1 }, + { "startOffset": 357, "endOffset": 370, "count": 1 }, + { "startOffset": 371, "endOffset": 379, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "766", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/tsx/dist/client-D3mGB526.cjs", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 626, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "t", + "ranges": [{ "startOffset": 47, "endOffset": 91, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 179, "endOffset": 440, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 195, "endOffset": 439, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 258, "endOffset": 403, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 418, "endOffset": 427, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 470, "endOffset": 484, "count": 816 }], + "isBlockCoverage": true + }, + { + "functionName": "f.then.r", + "ranges": [ + { "startOffset": 507, "endOffset": 552, "count": 1 }, + { "startOffset": 516, "endOffset": 538, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 553, "endOffset": 577, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "767", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/tsx/dist/index-BWFBUo6r.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 1181, "count": 1 }, + { "startOffset": 124, "endOffset": 129, "count": 0 }, + { "startOffset": 147, "endOffset": 154, "count": 0 }, + { "startOffset": 179, "endOffset": 182, "count": 0 }, + { "startOffset": 338, "endOffset": 343, "count": 0 }, + { "startOffset": 374, "endOffset": 550, "count": 0 }, + { "startOffset": 602, "endOffset": 615, "count": 0 }, + { "startOffset": 620, "endOffset": 676, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "p", + "ranges": [{ "startOffset": 47, "endOffset": 91, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 500, "endOffset": 521, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "e", + "ranges": [{ "startOffset": 711, "endOffset": 869, "count": 9 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 808, "endOffset": 868, "count": 3 }, + { "startOffset": 863, "endOffset": 868, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "768", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/function-tests/tests/support/hooks.ts", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1818, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 134, "endOffset": 727, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "769", + "url": "node:internal/source_map/source_map_cache_map", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3883, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 320, "endOffset": 345, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1417, "endOffset": 1983, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "#cleanup", + "ranges": [{ "startOffset": 1463, "endOffset": 1912, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 2355, "endOffset": 2670, "count": 355 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2483, "endOffset": 2529, "count": 710 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [ + { "startOffset": 2805, "endOffset": 3033, "count": 102 }, + { "startOffset": 2900, "endOffset": 2907, "count": 34 }, + { "startOffset": 2949, "endOffset": 2970, "count": 68 }, + { "startOffset": 2970, "endOffset": 3032, "count": 34 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get size", + "ranges": [{ "startOffset": 3209, "endOffset": 3262, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3266, "endOffset": 3792, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "770", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/.pikku/pikku-bootstrap.gen.ts", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 4706, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 126, "endOffset": 2287, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "771", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/.pikku/rpc/pikku-rpc-wirings-meta.internal.gen.ts", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1980, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 146, "endOffset": 1165, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 421, "endOffset": 698, "count": 1 }, + { "startOffset": 476, "endOffset": 502, "count": 0 }, + { "startOffset": 543, "endOffset": 687, "count": 34 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 609, "endOffset": 622, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toESM", + "ranges": [ + { "startOffset": 711, "endOffset": 899, "count": 1 }, + { "startOffset": 781, "endOffset": 784, "count": 0 }, + { "startOffset": 886, "endOffset": 893, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "772", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/internal.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1749, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 119, "endOffset": 1218, "count": 1 }, + { "startOffset": 1157, "endOffset": 1215, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 325, "endOffset": 415, "count": 1 }, + { "startOffset": 360, "endOffset": 414, "count": 3 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 432, "endOffset": 709, "count": 1 }, + { "startOffset": 487, "endOffset": 513, "count": 0 }, + { "startOffset": 554, "endOffset": 698, "count": 3 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 620, "endOffset": 633, "count": 21 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 727, "endOffset": 788, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "httpRouter", + "ranges": [{ "startOffset": 851, "endOffset": 884, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pikkuState", + "ranges": [{ "startOffset": 896, "endOffset": 929, "count": 21 }], + "isBlockCoverage": true + }, + { + "functionName": "resetPikkuState", + "ranges": [{ "startOffset": 946, "endOffset": 984, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "773", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/pikku-state.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 14052, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 122, "endOffset": 4149, "count": 1 }, + { "startOffset": 3988, "endOffset": 4146, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 326, "endOffset": 392, "count": 8 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 406, "endOffset": 496, "count": 1 }, + { "startOffset": 441, "endOffset": 495, "count": 7 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 513, "endOffset": 790, "count": 1 }, + { "startOffset": 568, "endOffset": 594, "count": 0 }, + { "startOffset": 635, "endOffset": 779, "count": 7 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 701, "endOffset": 714, "count": 413 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 808, "endOffset": 869, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "addPackageServiceFactories", + "ranges": [{ "startOffset": 954, "endOffset": 984, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getAllPackageStates", + "ranges": [{ "startOffset": 1005, "endOffset": 1028, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getCreateWireServices", + "ranges": [{ "startOffset": 1051, "endOffset": 1076, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getSingletonServices", + "ranges": [{ "startOffset": 1098, "endOffset": 1122, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "initializePikkuState", + "ranges": [{ "startOffset": 1144, "endOffset": 1168, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pikkuState", + "ranges": [{ "startOffset": 1180, "endOffset": 1194, "count": 413 }], + "isBlockCoverage": true + }, + { + "functionName": "resetPikkuState", + "ranges": [{ "startOffset": 1211, "endOffset": 1230, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 1365, "endOffset": 1475, "count": 832 }, + { "startOffset": 1402, "endOffset": 1440, "count": 1 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 1523, "endOffset": 1856, "count": 413 }, + { "startOffset": 1595, "endOffset": 1607, "count": 273 }, + { "startOffset": 1659, "endOffset": 1702, "count": 1 }, + { "startOffset": 1786, "endOffset": 1821, "count": 22 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1908, "endOffset": 2915, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2977, "endOffset": 3101, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 3155, "endOffset": 3412, "count": 1 }, + { "startOffset": 3218, "endOffset": 3224, "count": 0 }, + { "startOffset": 3319, "endOffset": 3411, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3527, "endOffset": 3677, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3737, "endOffset": 3808, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3874, "endOffset": 3956, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "774", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/wirings/http/routers/http-router.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1640, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 143, "endOffset": 1097, "count": 1 }, + { "startOffset": 1063, "endOffset": 1094, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 349, "endOffset": 439, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 456, "endOffset": 733, "count": 1 }, + { "startOffset": 511, "endOffset": 537, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 644, "endOffset": 657, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 751, "endOffset": 812, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "httpRouter", + "ranges": [{ "startOffset": 881, "endOffset": 895, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "775", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/wirings/http/routers/path-to-regex.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 10822, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 145, "endOffset": 3171, "count": 1 }, + { "startOffset": 3130, "endOffset": 3168, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 349, "endOffset": 415, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 429, "endOffset": 519, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 536, "endOffset": 813, "count": 1 }, + { "startOffset": 591, "endOffset": 617, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 724, "endOffset": 737, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 831, "endOffset": 892, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "PathToRegexRouter", + "ranges": [{ "startOffset": 972, "endOffset": 993, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1181, "endOffset": 1221, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1221, "endOffset": 1284, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "reset", + "ranges": [{ "startOffset": 1285, "endOffset": 1372, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "initialize", + "ranges": [{ "startOffset": 1372, "endOffset": 2552, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "match", + "ranges": [{ "startOffset": 2552, "endOffset": 3128, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "776", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/path-to-regexp/dist/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 14528, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "NOOP_VALUE", + "ranges": [{ "startOffset": 316, "endOffset": 332, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "escapeText", + "ranges": [{ "startOffset": 542, "endOffset": 624, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "escape", + "ranges": [{ "startOffset": 672, "endOffset": 752, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "TokenData", + "ranges": [{ "startOffset": 811, "endOffset": 924, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "PathError", + "ranges": [{ "startOffset": 1074, "endOffset": 1344, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parse", + "ranges": [{ "startOffset": 1424, "endOffset": 4509, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "compile", + "ranges": [{ "startOffset": 4575, "endOffset": 5093, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "tokensToFunction", + "ranges": [{ "startOffset": 5094, "endOffset": 5422, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "tokenToFunction", + "ranges": [{ "startOffset": 5488, "endOffset": 7223, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "match", + "ranges": [{ "startOffset": 7275, "endOffset": 8159, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pathToRegexp", + "ranges": [{ "startOffset": 8232, "endOffset": 9325, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "flatten", + "ranges": [{ "startOffset": 9400, "endOffset": 9820, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toRegExpSource", + "ranges": [{ "startOffset": 9895, "endOffset": 12761, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "negate", + "ranges": [{ "startOffset": 12820, "endOffset": 13190, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stringifyTokens", + "ranges": [{ "startOffset": 13251, "endOffset": 14012, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stringify", + "ranges": [{ "startOffset": 14065, "endOffset": 14137, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stringifyName", + "ranges": [{ "startOffset": 14222, "endOffset": 14494, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "777", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/.pikku/agent/pikku-agent-wirings-meta.gen.ts", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2049, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 141, "endOffset": 1158, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 416, "endOffset": 693, "count": 1 }, + { "startOffset": 471, "endOffset": 497, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 604, "endOffset": 617, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toESM", + "ranges": [ + { "startOffset": 706, "endOffset": 894, "count": 1 }, + { "startOffset": 776, "endOffset": 779, "count": 0 }, + { "startOffset": 881, "endOffset": 888, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "778", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/.pikku/http/pikku-http-wirings-meta.gen.ts", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1998, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 139, "endOffset": 1135, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 414, "endOffset": 691, "count": 1 }, + { "startOffset": 469, "endOffset": 495, "count": 0 }, + { "startOffset": 536, "endOffset": 680, "count": 7 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 602, "endOffset": 615, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toESM", + "ranges": [ + { "startOffset": 704, "endOffset": 892, "count": 1 }, + { "startOffset": 774, "endOffset": 777, "count": 0 }, + { "startOffset": 879, "endOffset": 886, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "779", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/.pikku/scheduler/pikku-schedulers-wirings-meta.gen.ts", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2351, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 150, "endOffset": 1368, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 425, "endOffset": 702, "count": 2 }, + { "startOffset": 480, "endOffset": 506, "count": 0 }, + { "startOffset": 547, "endOffset": 691, "count": 1 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 613, "endOffset": 626, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toESM", + "ranges": [ + { "startOffset": 715, "endOffset": 903, "count": 1 }, + { "startOffset": 785, "endOffset": 788, "count": 0 }, + { "startOffset": 890, "endOffset": 897, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 921, "endOffset": 982, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "780", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/.pikku/trigger/pikku-trigger-wirings-meta.gen.ts", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2277, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 145, "endOffset": 1346, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 420, "endOffset": 697, "count": 2 }, + { "startOffset": 475, "endOffset": 501, "count": 0 }, + { "startOffset": 542, "endOffset": 686, "count": 1 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 608, "endOffset": 621, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toESM", + "ranges": [ + { "startOffset": 710, "endOffset": 898, "count": 1 }, + { "startOffset": 780, "endOffset": 783, "count": 0 }, + { "startOffset": 885, "endOffset": 892, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 916, "endOffset": 977, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "781", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/.pikku/trigger/pikku-trigger-sources-meta.gen.ts", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2050, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 145, "endOffset": 1159, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 420, "endOffset": 697, "count": 1 }, + { "startOffset": 475, "endOffset": 501, "count": 0 }, + { "startOffset": 542, "endOffset": 686, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 608, "endOffset": 621, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toESM", + "ranges": [ + { "startOffset": 710, "endOffset": 898, "count": 1 }, + { "startOffset": 780, "endOffset": 783, "count": 0 }, + { "startOffset": 885, "endOffset": 892, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "782", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/.pikku/function/pikku-functions-meta.gen.ts", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1982, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 140, "endOffset": 1131, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 415, "endOffset": 692, "count": 1 }, + { "startOffset": 470, "endOffset": 496, "count": 0 }, + { "startOffset": 537, "endOffset": 681, "count": 43 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 603, "endOffset": 616, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toESM", + "ranges": [ + { "startOffset": 705, "endOffset": 893, "count": 1 }, + { "startOffset": 775, "endOffset": 778, "count": 0 }, + { "startOffset": 880, "endOffset": 887, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "783", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/.pikku/queue/pikku-queue-workers-wirings-meta.gen.ts", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2060, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 149, "endOffset": 1173, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 424, "endOffset": 701, "count": 1 }, + { "startOffset": 479, "endOffset": 505, "count": 0 }, + { "startOffset": 546, "endOffset": 690, "count": 5 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 612, "endOffset": 625, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toESM", + "ranges": [ + { "startOffset": 714, "endOffset": 902, "count": 1 }, + { "startOffset": 784, "endOffset": 787, "count": 0 }, + { "startOffset": 889, "endOffset": 896, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "784", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/.pikku/channel/pikku-channels-meta.gen.ts", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1980, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 138, "endOffset": 1125, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 413, "endOffset": 690, "count": 1 }, + { "startOffset": 468, "endOffset": 494, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 601, "endOffset": 614, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toESM", + "ranges": [ + { "startOffset": 703, "endOffset": 891, "count": 1 }, + { "startOffset": 773, "endOffset": 776, "count": 0 }, + { "startOffset": 878, "endOffset": 885, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "785", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/.pikku/mcp/pikku-mcp-wirings-meta.gen.ts", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2625, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 137, "endOffset": 1370, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 412, "endOffset": 689, "count": 1 }, + { "startOffset": 467, "endOffset": 493, "count": 0 }, + { "startOffset": 534, "endOffset": 678, "count": 3 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 600, "endOffset": 613, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toESM", + "ranges": [ + { "startOffset": 702, "endOffset": 890, "count": 1 }, + { "startOffset": 772, "endOffset": 775, "count": 0 }, + { "startOffset": 877, "endOffset": 884, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "786", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/.pikku/cli/pikku-cli-wirings-meta.gen.ts", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1956, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 137, "endOffset": 1129, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 412, "endOffset": 689, "count": 1 }, + { "startOffset": 467, "endOffset": 493, "count": 0 }, + { "startOffset": 534, "endOffset": 678, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 600, "endOffset": 613, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toESM", + "ranges": [ + { "startOffset": 702, "endOffset": 890, "count": 1 }, + { "startOffset": 772, "endOffset": 775, "count": 0 }, + { "startOffset": 877, "endOffset": 884, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "787", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/.pikku/middleware/pikku-middleware.gen.ts", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 923, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 138, "endOffset": 264, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "788", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/middleware/cors.middleware.ts", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2023, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 130, "endOffset": 1296, "count": 1 }, + { "startOffset": 1262, "endOffset": 1293, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 347, "endOffset": 413, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 427, "endOffset": 517, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 534, "endOffset": 811, "count": 1 }, + { "startOffset": 589, "endOffset": 615, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 722, "endOffset": 735, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 829, "endOffset": 890, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "globalCors", + "ranges": [{ "startOffset": 967, "endOffset": 981, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1161, "endOffset": 1246, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "789", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/wirings/http/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3146, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 129, "endOffset": 2119, "count": 1 }, + { "startOffset": 1918, "endOffset": 2116, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 335, "endOffset": 425, "count": 1 }, + { "startOffset": 370, "endOffset": 424, "count": 12 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 442, "endOffset": 719, "count": 1 }, + { "startOffset": 497, "endOffset": 523, "count": 0 }, + { "startOffset": 564, "endOffset": 708, "count": 12 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 630, "endOffset": 643, "count": 10 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 737, "endOffset": 798, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "PikkuFetchHTTPRequest", + "ranges": [{ "startOffset": 864, "endOffset": 921, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "PikkuFetchHTTPResponse", + "ranges": [{ "startOffset": 945, "endOffset": 1004, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addHTTPMiddleware", + "ranges": [{ "startOffset": 1023, "endOffset": 1063, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "addHTTPPermission", + "ranges": [{ "startOffset": 1082, "endOffset": 1122, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "applyWebResponse", + "ranges": [{ "startOffset": 1140, "endOffset": 1179, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "defineHTTPRoutes", + "ranges": [{ "startOffset": 1197, "endOffset": 1236, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "fetch", + "ranges": [{ "startOffset": 1243, "endOffset": 1271, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fetchData", + "ranges": [{ "startOffset": 1282, "endOffset": 1314, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "logRoutes", + "ranges": [{ "startOffset": 1325, "endOffset": 1361, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toWebRequest", + "ranges": [{ "startOffset": 1375, "endOffset": 1410, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "wireHTTP", + "ranges": [{ "startOffset": 1420, "endOffset": 1451, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "wireHTTPRoutes", + "ranges": [{ "startOffset": 1467, "endOffset": 1504, "count": 4 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "790", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/wirings/http/pikku-fetch-http-request.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 15120, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 148, "endOffset": 4033, "count": 1 }, + { "startOffset": 3988, "endOffset": 4030, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 352, "endOffset": 418, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 432, "endOffset": 522, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 539, "endOffset": 816, "count": 1 }, + { "startOffset": 594, "endOffset": 620, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 727, "endOffset": 740, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 834, "endOffset": 895, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "PikkuFetchHTTPRequest", + "ranges": [{ "startOffset": 1001, "endOffset": 1026, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1249, "endOffset": 1293, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1293, "endOffset": 1325, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "PikkuFetchHTTPRequest", + "ranges": [{ "startOffset": 1326, "endOffset": 1399, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "method", + "ranges": [{ "startOffset": 1399, "endOffset": 1449, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "path", + "ranges": [{ "startOffset": 1449, "endOffset": 1482, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "json", + "ranges": [{ "startOffset": 1482, "endOffset": 1516, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "arrayBuffer", + "ranges": [{ "startOffset": 1516, "endOffset": 1564, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "headers", + "ranges": [{ "startOffset": 1564, "endOffset": 1632, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "header", + "ranges": [{ "startOffset": 1632, "endOffset": 1709, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cookie", + "ranges": [{ "startOffset": 1709, "endOffset": 1941, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "params", + "ranges": [{ "startOffset": 1941, "endOffset": 1970, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setParams", + "ranges": [{ "startOffset": 1970, "endOffset": 2008, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "query", + "ranges": [{ "startOffset": 2008, "endOffset": 2084, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "data", + "ranges": [{ "startOffset": 2084, "endOffset": 2544, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "body", + "ranges": [{ "startOffset": 2544, "endOffset": 3605, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "valuesAreEquivalent", + "ranges": [{ "startOffset": 3606, "endOffset": 3669, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "coerce", + "ranges": [{ "startOffset": 3719, "endOffset": 3963, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "791", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/picoquery/lib/main.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1805, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 112, "endOffset": 1286, "count": 1 }, + { "startOffset": 1221, "endOffset": 1283, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 318, "endOffset": 408, "count": 1 }, + { "startOffset": 353, "endOffset": 407, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 425, "endOffset": 702, "count": 3 }, + { "startOffset": 480, "endOffset": 506, "count": 0 }, + { "startOffset": 547, "endOffset": 691, "count": 10 }, + { "startOffset": 576, "endOffset": 590, "count": 9 }, + { "startOffset": 591, "endOffset": 691, "count": 9 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 613, "endOffset": 626, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__reExport", + "ranges": [{ "startOffset": 718, "endOffset": 834, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 852, "endOffset": 913, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "parse", + "ranges": [{ "startOffset": 963, "endOffset": 985, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stringify", + "ranges": [{ "startOffset": 996, "endOffset": 1026, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "792", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/picoquery/lib/parse.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 23695, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 113, "endOffset": 6344, "count": 1 }, + { "startOffset": 6269, "endOffset": 6341, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 317, "endOffset": 383, "count": 5 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 397, "endOffset": 487, "count": 1 }, + { "startOffset": 432, "endOffset": 486, "count": 3 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 504, "endOffset": 781, "count": 1 }, + { "startOffset": 559, "endOffset": 585, "count": 0 }, + { "startOffset": 626, "endOffset": 770, "count": 3 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 692, "endOffset": 705, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 799, "endOffset": 860, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "numberKeyDeserializer", + "ranges": [{ "startOffset": 928, "endOffset": 953, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "numberValueDeserializer", + "ranges": [{ "startOffset": 978, "endOffset": 1005, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parse", + "ranges": [{ "startOffset": 1012, "endOffset": 1021, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1263, "endOffset": 1351, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1414, "endOffset": 1508, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1577, "endOffset": 1589, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "computeKeySlice", + "ranges": [{ "startOffset": 1635, "endOffset": 1915, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parse", + "ranges": [{ "startOffset": 1957, "endOffset": 6246, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "793", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/picoquery/lib/object-util.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 10083, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 119, "endOffset": 3400, "count": 1 }, + { "startOffset": 3347, "endOffset": 3397, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 323, "endOffset": 389, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 403, "endOffset": 493, "count": 1 }, + { "startOffset": 438, "endOffset": 492, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 510, "endOffset": 787, "count": 1 }, + { "startOffset": 565, "endOffset": 591, "count": 0 }, + { "startOffset": 632, "endOffset": 776, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 698, "endOffset": 711, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 805, "endOffset": 866, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "getDeepObject", + "ranges": [{ "startOffset": 938, "endOffset": 955, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stringifyObject", + "ranges": [{ "startOffset": 972, "endOffset": 991, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isPrototypeKey", + "ranges": [{ "startOffset": 1135, "endOffset": 1237, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getDeepObject", + "ranges": [{ "startOffset": 1277, "endOffset": 1623, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stringifyObject", + "ranges": [{ "startOffset": 1774, "endOffset": 3304, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "794", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/picoquery/lib/shared.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 4582, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 114, "endOffset": 2075, "count": 1 }, + { "startOffset": 1985, "endOffset": 2072, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 318, "endOffset": 384, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 398, "endOffset": 488, "count": 1 }, + { "startOffset": 433, "endOffset": 487, "count": 3 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 505, "endOffset": 782, "count": 1 }, + { "startOffset": 560, "endOffset": 586, "count": 0 }, + { "startOffset": 627, "endOffset": 771, "count": 3 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 693, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 800, "endOffset": 861, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "defaultOptions", + "ranges": [{ "startOffset": 924, "endOffset": 942, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "defaultShouldSerializeObject", + "ranges": [{ "startOffset": 972, "endOffset": 1004, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "defaultValueSerializer", + "ranges": [{ "startOffset": 1028, "endOffset": 1054, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1188, "endOffset": 1538, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1607, "endOffset": 1640, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1699, "endOffset": 1703, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "795", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/picoquery/lib/string-util.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 8879, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 119, "endOffset": 2268, "count": 1 }, + { "startOffset": 2232, "endOffset": 2265, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 323, "endOffset": 389, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 403, "endOffset": 493, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 510, "endOffset": 787, "count": 1 }, + { "startOffset": 565, "endOffset": 591, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 698, "endOffset": 711, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 805, "endOffset": 866, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "encodeString", + "ranges": [{ "startOffset": 937, "endOffset": 953, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 1044, "endOffset": 1099, "count": 256 }, + { "startOffset": 1061, "endOffset": 1065, "count": 16 }, + { "startOffset": 1065, "endOffset": 1068, "count": 240 } + ], + "isBlockCoverage": true + }, + { + "functionName": "encodeString", + "ranges": [{ "startOffset": 1389, "endOffset": 2195, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "796", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/picoquery/lib/decode-uri-component.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 12340, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 128, "endOffset": 3193, "count": 1 }, + { "startOffset": 3151, "endOffset": 3190, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 332, "endOffset": 398, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 412, "endOffset": 502, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 519, "endOffset": 796, "count": 1 }, + { "startOffset": 574, "endOffset": 600, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 707, "endOffset": 720, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 814, "endOffset": 875, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "decodeURIComponent", + "ranges": [{ "startOffset": 970, "endOffset": 992, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "decodeURIComponent", + "ranges": [{ "startOffset": 1898, "endOffset": 2857, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hexCodeToInt", + "ranges": [{ "startOffset": 3037, "endOffset": 3114, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "797", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/picoquery/lib/stringify.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2350, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 117, "endOffset": 1283, "count": 1 }, + { "startOffset": 1250, "endOffset": 1280, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 321, "endOffset": 387, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 401, "endOffset": 491, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 508, "endOffset": 785, "count": 1 }, + { "startOffset": 563, "endOffset": 589, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 696, "endOffset": 709, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 803, "endOffset": 864, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "stringify", + "ranges": [{ "startOffset": 928, "endOffset": 941, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stringify", + "ranges": [{ "startOffset": 1042, "endOffset": 1219, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "798", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/cookie/dist/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 12004, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3317, "endOffset": 3410, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "C", + "ranges": [{ "startOffset": 3339, "endOffset": 3354, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseCookie", + "ranges": [{ "startOffset": 3572, "endOffset": 4475, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stringifyCookie", + "ranges": [{ "startOffset": 4539, "endOffset": 5169, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stringifySetCookie", + "ranges": [{ "startOffset": 5170, "endOffset": 8113, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseSetCookie", + "ranges": [{ "startOffset": 8268, "endOffset": 10733, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "endIndex", + "ranges": [{ "startOffset": 10800, "endOffset": 10916, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "eqIndex", + "ranges": [{ "startOffset": 10983, "endOffset": 11096, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "valueSlice", + "ranges": [{ "startOffset": 11151, "endOffset": 11598, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "decode", + "ranges": [{ "startOffset": 11676, "endOffset": 11851, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isDate", + "ranges": [{ "startOffset": 11893, "endOffset": 11970, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "799", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/errors/errors.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 38559, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 124, "endOffset": 14908, "count": 1 }, + { "startOffset": 14047, "endOffset": 14905, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 328, "endOffset": 394, "count": 40 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 408, "endOffset": 498, "count": 1 }, + { "startOffset": 443, "endOffset": 497, "count": 40 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 515, "endOffset": 792, "count": 1 }, + { "startOffset": 570, "endOffset": 596, "count": 0 }, + { "startOffset": 637, "endOffset": 781, "count": 40 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 703, "endOffset": 716, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 810, "endOffset": 871, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "AIProviderAuthError", + "ranges": [{ "startOffset": 939, "endOffset": 962, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "AIProviderNotConfiguredError", + "ranges": [{ "startOffset": 992, "endOffset": 1024, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "BadGatewayError", + "ranges": [{ "startOffset": 1041, "endOffset": 1060, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "BadRequestError", + "ranges": [{ "startOffset": 1077, "endOffset": 1096, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ConflictError", + "ranges": [{ "startOffset": 1111, "endOffset": 1128, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ExpectationFailedError", + "ranges": [{ "startOffset": 1152, "endOffset": 1178, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ForbiddenError", + "ranges": [{ "startOffset": 1194, "endOffset": 1212, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "GatewayTimeoutError", + "ranges": [{ "startOffset": 1233, "endOffset": 1256, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "GoneError", + "ranges": [{ "startOffset": 1267, "endOffset": 1280, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "HTTPVersionNotSupportedError", + "ranges": [{ "startOffset": 1310, "endOffset": 1342, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "InternalServerError", + "ranges": [{ "startOffset": 1363, "endOffset": 1386, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "InvalidMiddlewareWireError", + "ranges": [{ "startOffset": 1414, "endOffset": 1444, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "InvalidOriginError", + "ranges": [{ "startOffset": 1464, "endOffset": 1486, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "InvalidSessionError", + "ranges": [{ "startOffset": 1507, "endOffset": 1530, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "LengthRequiredError", + "ranges": [{ "startOffset": 1551, "endOffset": 1574, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "LocalEnvironmentOnlyError", + "ranges": [{ "startOffset": 1601, "endOffset": 1630, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "LockedError", + "ranges": [{ "startOffset": 1643, "endOffset": 1658, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "MaxComputeTimeReachedError", + "ranges": [{ "startOffset": 1686, "endOffset": 1716, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "MethodNotAllowedError", + "ranges": [{ "startOffset": 1739, "endOffset": 1764, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "MissingCredentialError", + "ranges": [{ "startOffset": 1788, "endOffset": 1814, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "MissingSchemaError", + "ranges": [{ "startOffset": 1834, "endOffset": 1856, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "MissingServiceError", + "ranges": [{ "startOffset": 1877, "endOffset": 1900, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "MissingSessionError", + "ranges": [{ "startOffset": 1921, "endOffset": 1944, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "NotAcceptableError", + "ranges": [{ "startOffset": 1964, "endOffset": 1986, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "NotFoundError", + "ranges": [{ "startOffset": 2001, "endOffset": 2018, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "NotImplementedError", + "ranges": [{ "startOffset": 2039, "endOffset": 2062, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "PayloadTooLargeError", + "ranges": [{ "startOffset": 2084, "endOffset": 2108, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "PaymentRequiredError", + "ranges": [{ "startOffset": 2130, "endOffset": 2154, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "PikkuMissingMetaError", + "ranges": [{ "startOffset": 2177, "endOffset": 2202, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "PreconditionFailedError", + "ranges": [{ "startOffset": 2227, "endOffset": 2254, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ProxyAuthenticationRequiredError", + "ranges": [{ "startOffset": 2288, "endOffset": 2324, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "RangeNotSatisfiableError", + "ranges": [{ "startOffset": 2350, "endOffset": 2378, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ReadonlySessionError", + "ranges": [{ "startOffset": 2400, "endOffset": 2424, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "RequestTimeoutError", + "ranges": [{ "startOffset": 2445, "endOffset": 2468, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ServiceUnavailableError", + "ranges": [{ "startOffset": 2493, "endOffset": 2520, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "TooManyRequestsError", + "ranges": [{ "startOffset": 2542, "endOffset": 2566, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "URITooLongError", + "ranges": [{ "startOffset": 2583, "endOffset": 2602, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "UnauthorizedError", + "ranges": [{ "startOffset": 2621, "endOffset": 2642, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "UnprocessableContentError", + "ranges": [{ "startOffset": 2669, "endOffset": 2698, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "UnsupportedMediaTypeError", + "ranges": [{ "startOffset": 2725, "endOffset": 2754, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2929, "endOffset": 2978, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3192, "endOffset": 3236, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3412, "endOffset": 3454, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3642, "endOffset": 3690, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3896, "endOffset": 3934, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4192, "endOffset": 4232, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4299, "endOffset": 4341, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4408, "endOffset": 4450, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4874, "endOffset": 4917, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5142, "endOffset": 5179, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5392, "endOffset": 5437, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5437, "endOffset": 5444, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "MissingCredentialError", + "ranges": [{ "startOffset": 5445, "endOffset": 5629, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5819, "endOffset": 5862, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6064, "endOffset": 6105, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6326, "endOffset": 6362, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6565, "endOffset": 6609, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6835, "endOffset": 6876, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 7147, "endOffset": 7202, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 7427, "endOffset": 7469, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 7641, "endOffset": 7677, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 7906, "endOffset": 7938, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8165, "endOffset": 8207, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8456, "endOffset": 8502, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8741, "endOffset": 8784, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8995, "endOffset": 9033, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9263, "endOffset": 9311, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9535, "endOffset": 9582, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9826, "endOffset": 9871, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 10101, "endOffset": 10149, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 10464, "endOffset": 10498, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 10759, "endOffset": 10802, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 11029, "endOffset": 11071, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 11290, "endOffset": 11332, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 11545, "endOffset": 11583, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 11831, "endOffset": 11877, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 12084, "endOffset": 12126, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 12388, "endOffset": 12439, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 12675, "endOffset": 12724, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 12968, "endOffset": 13009, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 13234, "endOffset": 13285, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "AIProviderNotConfiguredError", + "ranges": [{ "startOffset": 13285, "endOffset": 13436, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 13718, "endOffset": 13760, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "AIProviderAuthError", + "ranges": [{ "startOffset": 13760, "endOffset": 13883, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "800", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/errors/error-handler.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 5128, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 131, "endOffset": 1985, "count": 1 }, + { "startOffset": 1915, "endOffset": 1982, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 335, "endOffset": 401, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 415, "endOffset": 505, "count": 1 }, + { "startOffset": 450, "endOffset": 504, "count": 4 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 522, "endOffset": 799, "count": 1 }, + { "startOffset": 577, "endOffset": 603, "count": 0 }, + { "startOffset": 644, "endOffset": 788, "count": 4 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 710, "endOffset": 723, "count": 95 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 817, "endOffset": 878, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "PikkuError", + "ranges": [{ "startOffset": 951, "endOffset": 965, "count": 51 }], + "isBlockCoverage": true + }, + { + "functionName": "addError", + "ranges": [{ "startOffset": 975, "endOffset": 987, "count": 44 }], + "isBlockCoverage": true + }, + { + "functionName": "addErrors", + "ranges": [{ "startOffset": 998, "endOffset": 1011, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getErrorResponse", + "ranges": [{ "startOffset": 1029, "endOffset": 1049, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1186, "endOffset": 1219, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "PikkuError", + "ranges": [{ "startOffset": 1219, "endOffset": 1324, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1347, "endOffset": 1474, "count": 44 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1510, "endOffset": 1572, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1616, "endOffset": 1893, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "801", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/wirings/http/pikku-fetch-http-response.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 11578, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 149, "endOffset": 3411, "count": 1 }, + { "startOffset": 3365, "endOffset": 3408, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 353, "endOffset": 419, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 433, "endOffset": 523, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 540, "endOffset": 817, "count": 1 }, + { "startOffset": 595, "endOffset": 621, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 728, "endOffset": 741, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 835, "endOffset": 896, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "PikkuFetchHTTPResponse", + "ranges": [{ "startOffset": 1005, "endOffset": 1031, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1162, "endOffset": 1207, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1207, "endOffset": 1313, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "setMode", + "ranges": [{ "startOffset": 1314, "endOffset": 1408, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get statusCode", + "ranges": [{ "startOffset": 1408, "endOffset": 1449, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "status", + "ranges": [{ "startOffset": 1449, "endOffset": 1496, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cookie", + "ranges": [{ "startOffset": 1496, "endOffset": 1571, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "header", + "ranges": [{ "startOffset": 1571, "endOffset": 1736, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "arrayBuffer", + "ranges": [{ "startOffset": 1736, "endOffset": 1893, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "json", + "ranges": [{ "startOffset": 1893, "endOffset": 2067, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "text", + "ranges": [{ "startOffset": 2067, "endOffset": 2212, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "html", + "ranges": [{ "startOffset": 2212, "endOffset": 2356, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "send", + "ranges": [{ "startOffset": 2356, "endOffset": 2395, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "redirect", + "ranges": [{ "startOffset": 2395, "endOffset": 2677, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "close", + "ranges": [{ "startOffset": 2677, "endOffset": 2727, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toResponse", + "ranges": [{ "startOffset": 2727, "endOffset": 3034, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createStream", + "ranges": [{ "startOffset": 3034, "endOffset": 3363, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "802", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/wirings/http/log-http-routes.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3072, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 139, "endOffset": 1493, "count": 1 }, + { "startOffset": 1460, "endOffset": 1490, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 343, "endOffset": 409, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 423, "endOffset": 513, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 530, "endOffset": 807, "count": 1 }, + { "startOffset": 585, "endOffset": 611, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 718, "endOffset": 731, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 825, "endOffset": 886, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "logRoutes", + "ranges": [{ "startOffset": 962, "endOffset": 975, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1109, "endOffset": 1445, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "803", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/wirings/http/http-runner.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 46036, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 135, "endOffset": 10681, "count": 1 }, + { "startOffset": 10571, "endOffset": 10678, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 339, "endOffset": 405, "count": 10 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 419, "endOffset": 509, "count": 1 }, + { "startOffset": 454, "endOffset": 508, "count": 7 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 526, "endOffset": 803, "count": 1 }, + { "startOffset": 581, "endOffset": 607, "count": 0 }, + { "startOffset": 648, "endOffset": 792, "count": 7 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 714, "endOffset": 727, "count": 18 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 821, "endOffset": 882, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "addHTTPMiddleware", + "ranges": [{ "startOffset": 958, "endOffset": 979, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "addHTTPPermission", + "ranges": [{ "startOffset": 998, "endOffset": 1019, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createHTTPWire", + "ranges": [{ "startOffset": 1035, "endOffset": 1053, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fetch", + "ranges": [{ "startOffset": 1060, "endOffset": 1069, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fetchData", + "ranges": [{ "startOffset": 1080, "endOffset": 1093, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pikkuFetch", + "ranges": [{ "startOffset": 1105, "endOffset": 1119, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "wireHTTP", + "ranges": [{ "startOffset": 1129, "endOffset": 1141, "count": 17 }], + "isBlockCoverage": true + }, + { + "functionName": "extractHeadersFromRequest", + "ranges": [{ "startOffset": 2054, "endOffset": 2260, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2353, "endOffset": 2532, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2585, "endOffset": 2768, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 2812, "endOffset": 3507, "count": 17 }, + { "startOffset": 2971, "endOffset": 3152, "count": 0 }, + { "startOffset": 3354, "endOffset": 3393, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3550, "endOffset": 4004, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4053, "endOffset": 4202, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4247, "endOffset": 7788, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 7824, "endOffset": 8011, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8045, "endOffset": 8219, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8257, "endOffset": 10556, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "804", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/utils.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 11636, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 116, "endOffset": 3709, "count": 1 }, + { "startOffset": 3591, "endOffset": 3706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 320, "endOffset": 386, "count": 7 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 400, "endOffset": 490, "count": 1 }, + { "startOffset": 435, "endOffset": 489, "count": 6 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 507, "endOffset": 784, "count": 1 }, + { "startOffset": 562, "endOffset": 588, "count": 0 }, + { "startOffset": 629, "endOffset": 773, "count": 6 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 695, "endOffset": 708, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 802, "endOffset": 863, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "closeWireServices", + "ranges": [{ "startOffset": 927, "endOffset": 948, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createWeakUID", + "ranges": [{ "startOffset": 963, "endOffset": 980, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "freezeDedupe", + "ranges": [{ "startOffset": 994, "endOffset": 1010, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "getTagGroups", + "ranges": [{ "startOffset": 1024, "endOffset": 1040, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isSerializable", + "ranges": [{ "startOffset": 1056, "endOffset": 1074, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stopSingletonServices", + "ranges": [{ "startOffset": 1097, "endOffset": 1122, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1250, "endOffset": 1420, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1528, "endOffset": 1564, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1610, "endOffset": 1907, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1952, "endOffset": 2240, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 2319, "endOffset": 2566, "count": 4 }, + { "startOffset": 2368, "endOffset": 2565, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2608, "endOffset": 2812, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2863, "endOffset": 3564, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "805", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/services/user-session-service.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 6632, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 140, "endOffset": 2769, "count": 1 }, + { "startOffset": 2662, "endOffset": 2766, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 344, "endOffset": 410, "count": 19 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 424, "endOffset": 514, "count": 1 }, + { "startOffset": 459, "endOffset": 513, "count": 3 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 531, "endOffset": 808, "count": 1 }, + { "startOffset": 586, "endOffset": 612, "count": 0 }, + { "startOffset": 653, "endOffset": 797, "count": 3 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 719, "endOffset": 732, "count": 8 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 826, "endOffset": 887, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "PikkuSessionService", + "ranges": [{ "startOffset": 983, "endOffset": 1006, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "createFunctionSessionWireProps", + "ranges": [{ "startOffset": 1038, "endOffset": 1072, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "createMiddlewareSessionWireProps", + "ranges": [{ "startOffset": 1106, "endOffset": 1142, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1229, "endOffset": 1271, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1271, "endOffset": 1332, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "PikkuSessionService", + "ranges": [{ "startOffset": 1333, "endOffset": 1390, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "setPikkuUserId", + "ranges": [{ "startOffset": 1390, "endOffset": 1429, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getPikkuUserId", + "ranges": [{ "startOffset": 1429, "endOffset": 1470, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setInitial", + "ranges": [{ "startOffset": 1470, "endOffset": 1511, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "freezeInitial", + "ranges": [{ "startOffset": 1511, "endOffset": 1599, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 1599, "endOffset": 1759, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "clear", + "ranges": [{ "startOffset": 1759, "endOffset": 1907, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1907, "endOffset": 1933, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createMiddlewareSessionWireProps", + "ranges": [{ "startOffset": 1934, "endOffset": 2195, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createFunctionSessionWireProps", + "ranges": [{ "startOffset": 2271, "endOffset": 2589, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2377, "endOffset": 2394, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2429, "endOffset": 2448, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2483, "endOffset": 2500, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2540, "endOffset": 2566, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "806", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/handle-error.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 6419, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 123, "endOffset": 2136, "count": 1 }, + { "startOffset": 2097, "endOffset": 2133, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 327, "endOffset": 393, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 407, "endOffset": 497, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 514, "endOffset": 791, "count": 1 }, + { "startOffset": 569, "endOffset": 595, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 702, "endOffset": 715, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 809, "endOffset": 870, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "handleHTTPError", + "ranges": [{ "startOffset": 946, "endOffset": 965, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1192, "endOffset": 2076, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "807", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/env.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1570, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 114, "endOffset": 1095, "count": 1 }, + { "startOffset": 1059, "endOffset": 1092, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 318, "endOffset": 384, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 398, "endOffset": 488, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 505, "endOffset": 782, "count": 1 }, + { "startOffset": 560, "endOffset": 586, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 693, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 800, "endOffset": 861, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "isProduction", + "ranges": [{ "startOffset": 916, "endOffset": 932, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1002, "endOffset": 1041, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "808", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/function/function-runner.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 38909, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 135, "endOffset": 11238, "count": 1 }, + { "startOffset": 11132, "endOffset": 11235, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 339, "endOffset": 405, "count": 13 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 419, "endOffset": 509, "count": 1 }, + { "startOffset": 454, "endOffset": 508, "count": 5 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 526, "endOffset": 803, "count": 1 }, + { "startOffset": 581, "endOffset": 607, "count": 0 }, + { "startOffset": 648, "endOffset": 792, "count": 5 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 714, "endOffset": 727, "count": 105 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 821, "endOffset": 882, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "addFunction", + "ranges": [{ "startOffset": 960, "endOffset": 975, "count": 101 }], + "isBlockCoverage": true + }, + { + "functionName": "getAllFunctionNames", + "ranges": [{ "startOffset": 996, "endOffset": 1019, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getFunctionNames", + "ranges": [{ "startOffset": 1037, "endOffset": 1057, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "runPikkuFunc", + "ranges": [{ "startOffset": 1071, "endOffset": 1087, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "runPikkuFuncDirectly", + "ranges": [{ "startOffset": 1109, "endOffset": 1133, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolveSession", + "ranges": [ + { "startOffset": 1919, "endOffset": 2442, "count": 4 }, + { "startOffset": 2079, "endOffset": 2231, "count": 0 }, + { "startOffset": 2307, "endOffset": 2441, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2524, "endOffset": 2738, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2814, "endOffset": 3256, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3339, "endOffset": 4189, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4254, "endOffset": 4390, "count": 101 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4436, "endOffset": 4576, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4630, "endOffset": 5110, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5168, "endOffset": 5592, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 5643, "endOffset": 11114, "count": 4 }, + { "startOffset": 6249, "endOffset": 6545, "count": 0 }, + { "startOffset": 6560, "endOffset": 6612, "count": 0 }, + { "startOffset": 6625, "endOffset": 6682, "count": 0 }, + { "startOffset": 6725, "endOffset": 6798, "count": 0 }, + { "startOffset": 6882, "endOffset": 7059, "count": 0 }, + { "startOffset": 7307, "endOffset": 7437, "count": 0 }, + { "startOffset": 7841, "endOffset": 7936, "count": 0 }, + { "startOffset": 10957, "endOffset": 11083, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 7910, "endOffset": 7933, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 8022, "endOffset": 10673, "count": 4 }, + { "startOffset": 8126, "endOffset": 8395, "count": 0 }, + { "startOffset": 8500, "endOffset": 8581, "count": 0 }, + { "startOffset": 8582, "endOffset": 9037, "count": 0 }, + { "startOffset": 9047, "endOffset": 9077, "count": 0 }, + { "startOffset": 9078, "endOffset": 9124, "count": 0 }, + { "startOffset": 9245, "endOffset": 9333, "count": 0 }, + { "startOffset": 9579, "endOffset": 9876, "count": 0 }, + { "startOffset": 9942, "endOffset": 9984, "count": 0 }, + { "startOffset": 10012, "endOffset": 10095, "count": 0 }, + { "startOffset": 10546, "endOffset": 10582, "count": 0 }, + { "startOffset": 10583, "endOffset": 10671, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "resolvedWire.setSession", + "ranges": [{ "startOffset": 8203, "endOffset": 8227, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolvedWire.clearSession", + "ranges": [{ "startOffset": 8254, "endOffset": 8280, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolvedWire.getSession", + "ranges": [{ "startOffset": 8305, "endOffset": 8329, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolvedWire.hasSessionChanged", + "ranges": [{ "startOffset": 8361, "endOffset": 8394, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 10200, "endOffset": 10423, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "809", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/middleware-runner.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 19015, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 128, "endOffset": 4772, "count": 1 }, + { "startOffset": 4659, "endOffset": 4769, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 332, "endOffset": 398, "count": 9 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 412, "endOffset": 502, "count": 1 }, + { "startOffset": 447, "endOffset": 501, "count": 5 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 519, "endOffset": 796, "count": 1 }, + { "startOffset": 574, "endOffset": 600, "count": 0 }, + { "startOffset": 641, "endOffset": 785, "count": 5 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 707, "endOffset": 720, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 814, "endOffset": 875, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "addGlobalMiddleware", + "ranges": [{ "startOffset": 965, "endOffset": 988, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addTagMiddleware", + "ranges": [{ "startOffset": 1006, "endOffset": 1026, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "clearMiddlewareCache", + "ranges": [{ "startOffset": 1048, "endOffset": 1072, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "combineMiddleware", + "ranges": [{ "startOffset": 1091, "endOffset": 1112, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "runMiddleware", + "ranges": [{ "startOffset": 1127, "endOffset": 1144, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1391, "endOffset": 1467, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1521, "endOffset": 1617, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1559, "endOffset": 1615, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1663, "endOffset": 2063, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2113, "endOffset": 2273, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2326, "endOffset": 2493, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2547, "endOffset": 2704, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2761, "endOffset": 2912, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3099, "endOffset": 3176, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 3232, "endOffset": 4636, "count": 4 }, + { "startOffset": 3383, "endOffset": 3551, "count": 2 }, + { "startOffset": 3552, "endOffset": 3579, "count": 0 }, + { "startOffset": 3579, "endOffset": 3606, "count": 2 }, + { "startOffset": 3606, "endOffset": 4127, "count": 0 }, + { "startOffset": 4127, "endOffset": 4145, "count": 2 }, + { "startOffset": 4145, "endOffset": 4179, "count": 0 }, + { "startOffset": 4179, "endOffset": 4206, "count": 2 }, + { "startOffset": 4206, "endOffset": 4450, "count": 0 }, + { "startOffset": 4450, "endOffset": 4468, "count": 2 }, + { "startOffset": 4468, "endOffset": 4502, "count": 0 }, + { "startOffset": 4502, "endOffset": 4635, "count": 2 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "810", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/wirings/channel/channel-middleware-runner.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 10205, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 152, "endOffset": 3742, "count": 1 }, + { "startOffset": 3619, "endOffset": 3739, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 356, "endOffset": 422, "count": 5 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 436, "endOffset": 526, "count": 1 }, + { "startOffset": 471, "endOffset": 525, "count": 4 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 543, "endOffset": 820, "count": 1 }, + { "startOffset": 598, "endOffset": 624, "count": 0 }, + { "startOffset": 665, "endOffset": 809, "count": 4 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 731, "endOffset": 744, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 838, "endOffset": 899, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "addChannelMiddleware", + "ranges": [{ "startOffset": 1006, "endOffset": 1030, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "clearChannelMiddlewareCache", + "ranges": [{ "startOffset": 1059, "endOffset": 1090, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "combineChannelMiddleware", + "ranges": [{ "startOffset": 1116, "endOffset": 1144, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "wrapChannelWithMiddleware", + "ranges": [{ "startOffset": 1171, "endOffset": 1200, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1398, "endOffset": 1572, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1637, "endOffset": 1775, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1879, "endOffset": 1974, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 2044, "endOffset": 2863, "count": 4 }, + { "startOffset": 2208, "endOffset": 2301, "count": 2 }, + { "startOffset": 2301, "endOffset": 2684, "count": 0 }, + { "startOffset": 2684, "endOffset": 2709, "count": 2 }, + { "startOffset": 2709, "endOffset": 2750, "count": 0 }, + { "startOffset": 2750, "endOffset": 2862, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "wrapChannelWithMiddleware", + "ranges": [{ "startOffset": 2892, "endOffset": 3556, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "811", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/permissions.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 27567, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 122, "endOffset": 6488, "count": 1 }, + { "startOffset": 6370, "endOffset": 6485, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 326, "endOffset": 392, "count": 8 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 406, "endOffset": 496, "count": 1 }, + { "startOffset": 441, "endOffset": 495, "count": 5 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 513, "endOffset": 790, "count": 1 }, + { "startOffset": 568, "endOffset": 594, "count": 0 }, + { "startOffset": 635, "endOffset": 779, "count": 5 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 701, "endOffset": 714, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 808, "endOffset": 869, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "addGlobalPermission", + "ranges": [{ "startOffset": 947, "endOffset": 970, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addTagPermission", + "ranges": [{ "startOffset": 988, "endOffset": 1008, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "checkAuthPermissions", + "ranges": [{ "startOffset": 1030, "endOffset": 1054, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "clearPermissionsCache", + "ranges": [{ "startOffset": 1077, "endOffset": 1102, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "runPermissions", + "ranges": [{ "startOffset": 1118, "endOffset": 1136, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1357, "endOffset": 1810, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1865, "endOffset": 2082, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2136, "endOffset": 2451, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2505, "endOffset": 2726, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2923, "endOffset": 3018, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3076, "endOffset": 4807, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4858, "endOffset": 5476, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5529, "endOffset": 6344, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "812", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/schema.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 14359, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 117, "endOffset": 4620, "count": 1 }, + { "startOffset": 4515, "endOffset": 4617, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 321, "endOffset": 387, "count": 7 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 401, "endOffset": 491, "count": 1 }, + { "startOffset": 436, "endOffset": 490, "count": 5 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 508, "endOffset": 785, "count": 1 }, + { "startOffset": 563, "endOffset": 589, "count": 0 }, + { "startOffset": 630, "endOffset": 774, "count": 5 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 696, "endOffset": 709, "count": 156 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 803, "endOffset": 864, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "addSchema", + "ranges": [{ "startOffset": 922, "endOffset": 935, "count": 152 }], + "isBlockCoverage": true + }, + { + "functionName": "coerceTopLevelDataFromSchema", + "ranges": [{ "startOffset": 965, "endOffset": 997, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "compileAllSchemas", + "ranges": [{ "startOffset": 1016, "endOffset": 1037, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getSchema", + "ranges": [{ "startOffset": 1048, "endOffset": 1061, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "validateSchema", + "ranges": [{ "startOffset": 1077, "endOffset": 1095, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 1264, "endOffset": 1325, "count": 4 }, + { "startOffset": 1295, "endOffset": 1320, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 1362, "endOffset": 1510, "count": 152 }, + { "startOffset": 1421, "endOffset": 1428, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1547, "endOffset": 1653, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1698, "endOffset": 2225, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2285, "endOffset": 2979, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3050, "endOffset": 3554, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 3615, "endOffset": 4495, "count": 4 }, + { "startOffset": 3711, "endOffset": 3904, "count": 0 }, + { "startOffset": 4082, "endOffset": 4399, "count": 0 }, + { "startOffset": 4488, "endOffset": 4492, "count": 2 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "813", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/version.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3691, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 118, "endOffset": 1792, "count": 1 }, + { "startOffset": 1720, "endOffset": 1789, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 322, "endOffset": 388, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 402, "endOffset": 492, "count": 1 }, + { "startOffset": 437, "endOffset": 491, "count": 3 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 509, "endOffset": 786, "count": 1 }, + { "startOffset": 564, "endOffset": 590, "count": 0 }, + { "startOffset": 631, "endOffset": 775, "count": 3 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 697, "endOffset": 710, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 804, "endOffset": 865, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "formatVersionedId", + "ranges": [{ "startOffset": 933, "endOffset": 954, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isVersionedId", + "ranges": [{ "startOffset": 969, "endOffset": 986, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseVersionedId", + "ranges": [{ "startOffset": 1004, "endOffset": 1024, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "formatVersionedId", + "ranges": [{ "startOffset": 1101, "endOffset": 1196, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseVersionedId", + "ranges": [{ "startOffset": 1242, "endOffset": 1567, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isVersionedId", + "ranges": [{ "startOffset": 1611, "endOffset": 1681, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "814", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/services/credential-wire-service.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 8830, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 143, "endOffset": 3367, "count": 1 }, + { "startOffset": 3243, "endOffset": 3364, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 347, "endOffset": 413, "count": 15 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 427, "endOffset": 517, "count": 1 }, + { "startOffset": 462, "endOffset": 516, "count": 3 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 534, "endOffset": 811, "count": 1 }, + { "startOffset": 589, "endOffset": 615, "count": 0 }, + { "startOffset": 656, "endOffset": 800, "count": 3 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 722, "endOffset": 735, "count": 8 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 829, "endOffset": 890, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "PikkuCredentialWireService", + "ranges": [{ "startOffset": 999, "endOffset": 1029, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "createMiddlewareCredentialWireProps", + "ranges": [{ "startOffset": 1066, "endOffset": 1105, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createWireServicesCredentialWireProps", + "ranges": [{ "startOffset": 1144, "endOffset": 1185, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1337, "endOffset": 1386, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1386, "endOffset": 1448, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "PikkuCredentialWireService", + "ranges": [{ "startOffset": 1449, "endOffset": 1541, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 1541, "endOffset": 1586, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1586, "endOffset": 1709, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getAll", + "ranges": [{ "startOffset": 1709, "endOffset": 1807, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getScoped", + "ranges": [{ "startOffset": 1807, "endOffset": 2082, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lazyLoad", + "ranges": [{ "startOffset": 2082, "endOffset": 2192, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "doLoad", + "ranges": [{ "startOffset": 2192, "endOffset": 2565, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createMiddlewareCredentialWireProps", + "ranges": [{ "startOffset": 2566, "endOffset": 2718, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createWireServicesCredentialWireProps", + "ranges": [{ "startOffset": 2800, "endOffset": 3156, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2904, "endOffset": 2948, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2987, "endOffset": 3017, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3057, "endOffset": 3136, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "815", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/services/pikku-user-id.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3013, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 133, "endOffset": 1462, "count": 1 }, + { "startOffset": 1412, "endOffset": 1459, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 337, "endOffset": 403, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 417, "endOffset": 507, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 524, "endOffset": 801, "count": 1 }, + { "startOffset": 579, "endOffset": 605, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 712, "endOffset": 725, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 819, "endOffset": 880, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "defaultPikkuUserIdResolver", + "ranges": [{ "startOffset": 969, "endOffset": 999, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 1093, "endOffset": 1380, "count": 4 }, + { "startOffset": 1120, "endOffset": 1144, "count": 0 }, + { "startOffset": 1181, "endOffset": 1223, "count": 0 }, + { "startOffset": 1224, "endOffset": 1246, "count": 0 }, + { "startOffset": 1259, "endOffset": 1272, "count": 0 }, + { "startOffset": 1273, "endOffset": 1303, "count": 0 }, + { "startOffset": 1319, "endOffset": 1332, "count": 0 }, + { "startOffset": 1333, "endOffset": 1366, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "816", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/wirings/rpc/rpc-runner.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 34900, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 133, "endOffset": 9309, "count": 1 }, + { "startOffset": 9202, "endOffset": 9306, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 337, "endOffset": 403, "count": 9 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 417, "endOffset": 507, "count": 1 }, + { "startOffset": 452, "endOffset": 506, "count": 5 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 524, "endOffset": 801, "count": 1 }, + { "startOffset": 579, "endOffset": 605, "count": 0 }, + { "startOffset": 646, "endOffset": 790, "count": 5 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 712, "endOffset": 725, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 819, "endOffset": 880, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "ContextAwareRPCService", + "ranges": [{ "startOffset": 959, "endOffset": 985, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "PikkuRPCService", + "ranges": [{ "startOffset": 1002, "endOffset": 1021, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "RPCNotFoundError", + "ranges": [{ "startOffset": 1039, "endOffset": 1059, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolveNamespace", + "ranges": [{ "startOffset": 1077, "endOffset": 1097, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "rpcService", + "ranges": [{ "startOffset": 1109, "endOffset": 1123, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1667, "endOffset": 1706, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1706, "endOffset": 1713, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "RPCNotFoundError", + "ranges": [{ "startOffset": 1714, "endOffset": 1800, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1945, "endOffset": 2384, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 2439, "endOffset": 2986, "count": 4 }, + { "startOffset": 2483, "endOffset": 2680, "count": 0 }, + { "startOffset": 2780, "endOffset": 2892, "count": 0 }, + { "startOffset": 2904, "endOffset": 2941, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3040, "endOffset": 3085, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3085, "endOffset": 3118, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "ContextAwareRPCService", + "ranges": [{ "startOffset": 3119, "endOffset": 3259, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "rpcExposed", + "ranges": [ + { "startOffset": 3259, "endOffset": 3735, "count": 4 }, + { "startOffset": 3334, "endOffset": 3493, "count": 0 }, + { "startOffset": 3596, "endOffset": 3634, "count": 0 }, + { "startOffset": 3658, "endOffset": 3698, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "rpc", + "ranges": [ + { "startOffset": 3735, "endOffset": 4677, "count": 4 }, + { "startOffset": 3788, "endOffset": 3795, "count": 0 }, + { "startOffset": 3848, "endOffset": 3897, "count": 0 }, + { "startOffset": 3932, "endOffset": 4077, "count": 0 }, + { "startOffset": 4377, "endOffset": 4676, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4308, "endOffset": 4316, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "invokeAddonFunction", + "ranges": [{ "startOffset": 4677, "endOffset": 5429, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "rpcWithWire", + "ranges": [{ "startOffset": 5429, "endOffset": 6294, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "startWorkflow", + "ranges": [{ "startOffset": 6294, "endOffset": 6774, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get agent", + "ranges": [{ "startOffset": 6774, "endOffset": 8081, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "remote", + "ranges": [{ "startOffset": 8081, "endOffset": 8497, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8520, "endOffset": 8558, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "getContextRPCService", + "ranges": [ + { "startOffset": 8558, "endOffset": 9163, "count": 4 }, + { "startOffset": 8746, "endOffset": 8783, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get agent", + "ranges": [{ "startOffset": 9073, "endOffset": 9109, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "817", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/wirings/ai-agent/ai-agent-runner.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 64555, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 143, "endOffset": 16548, "count": 1 }, + { "startOffset": 16496, "endOffset": 16545, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 347, "endOffset": 413, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 427, "endOffset": 517, "count": 1 }, + { "startOffset": 462, "endOffset": 516, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 534, "endOffset": 811, "count": 1 }, + { "startOffset": 589, "endOffset": 615, "count": 0 }, + { "startOffset": 656, "endOffset": 800, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 722, "endOffset": 735, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 829, "endOffset": 890, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "resumeAIAgentSync", + "ranges": [{ "startOffset": 974, "endOffset": 995, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "runAIAgent", + "ranges": [{ "startOffset": 1007, "endOffset": 1021, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stripNulls", + "ranges": [{ "startOffset": 1470, "endOffset": 1730, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "runAIAgent", + "ranges": [{ "startOffset": 1762, "endOffset": 7452, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resumeAIAgentSync", + "ranges": [{ "startOffset": 7484, "endOffset": 10424, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "continueAfterToolResultSync", + "ranges": [{ "startOffset": 10470, "endOffset": 16429, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "818", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/wirings/ai-agent/ai-agent-memory.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 24520, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 143, "endOffset": 7317, "count": 1 }, + { "startOffset": 7136, "endOffset": 7314, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 347, "endOffset": 413, "count": 10 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 427, "endOffset": 517, "count": 1 }, + { "startOffset": 462, "endOffset": 516, "count": 8 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 534, "endOffset": 811, "count": 1 }, + { "startOffset": 589, "endOffset": 615, "count": 0 }, + { "startOffset": 656, "endOffset": 800, "count": 8 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 722, "endOffset": 735, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 829, "endOffset": 890, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "buildWorkingMemoryPrompt", + "ranges": [{ "startOffset": 981, "endOffset": 1009, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "deepMergeWorkingMemory", + "ranges": [{ "startOffset": 1033, "endOffset": 1059, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "loadContextMessages", + "ranges": [{ "startOffset": 1080, "endOffset": 1103, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseWorkingMemory", + "ranges": [{ "startOffset": 1123, "endOffset": 1145, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolveMemoryServices", + "ranges": [{ "startOffset": 1168, "endOffset": 1193, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "saveMessages", + "ranges": [{ "startOffset": 1207, "endOffset": 1223, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stripWorkingMemoryTags", + "ranges": [{ "startOffset": 1247, "endOffset": 1273, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "trimMessages", + "ranges": [{ "startOffset": 1287, "endOffset": 1303, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolveMemoryServices", + "ranges": [{ "startOffset": 1395, "endOffset": 1603, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "deepMergeWorkingMemory", + "ranges": [{ "startOffset": 1657, "endOffset": 2062, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "buildWorkingMemoryPrompt", + "ranges": [{ "startOffset": 2118, "endOffset": 2886, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "loadContextMessages", + "ranges": [{ "startOffset": 2946, "endOffset": 3383, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "saveMessages", + "ranges": [{ "startOffset": 3433, "endOffset": 4871, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "trimMessages", + "ranges": [{ "startOffset": 4907, "endOffset": 5471, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "sanitizeToolMessages", + "ranges": [{ "startOffset": 5507, "endOffset": 6270, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "estimateTokens", + "ranges": [{ "startOffset": 6322, "endOffset": 6691, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseWorkingMemory", + "ranges": [{ "startOffset": 6731, "endOffset": 6916, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stripWorkingMemoryTags", + "ranges": [{ "startOffset": 6964, "endOffset": 7079, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "819", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/wirings/ai-agent/ai-agent-prepare.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 59749, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 144, "endOffset": 16430, "count": 1 }, + { "startOffset": 16251, "endOffset": 16427, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 348, "endOffset": 414, "count": 8 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 428, "endOffset": 518, "count": 1 }, + { "startOffset": 463, "endOffset": 517, "count": 8 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 535, "endOffset": 812, "count": 1 }, + { "startOffset": 590, "endOffset": 616, "count": 0 }, + { "startOffset": 657, "endOffset": 801, "count": 8 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 723, "endOffset": 736, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 830, "endOffset": 891, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "ToolApprovalRequired", + "ranges": [{ "startOffset": 980, "endOffset": 1004, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ToolCredentialRequired", + "ranges": [{ "startOffset": 1028, "endOffset": 1054, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "buildInstructions", + "ranges": [{ "startOffset": 1073, "endOffset": 1094, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "buildToolDefs", + "ranges": [{ "startOffset": 1109, "endOffset": 1126, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createScopedChannel", + "ranges": [{ "startOffset": 1147, "endOffset": 1170, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getAddonCredentialRequirements", + "ranges": [{ "startOffset": 1202, "endOffset": 1236, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "prepareAgentRun", + "ranges": [{ "startOffset": 1253, "endOffset": 1272, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolveAgent", + "ranges": [{ "startOffset": 1286, "endOffset": 1302, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2085, "endOffset": 2128, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2128, "endOffset": 2198, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "ToolApprovalRequired", + "ranges": [{ "startOffset": 2199, "endOffset": 2523, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2593, "endOffset": 2638, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2638, "endOffset": 2703, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "ToolCredentialRequired", + "ranges": [{ "startOffset": 2704, "endOffset": 3013, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getAddonCredentialRequirements", + "ranges": [{ "startOffset": 3014, "endOffset": 3654, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3752, "endOffset": 4623, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "buildInstructions", + "ranges": [{ "startOffset": 4640, "endOffset": 5863, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createScopedChannel", + "ranges": [{ "startOffset": 5909, "endOffset": 6915, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "buildToolDefs", + "ranges": [{ "startOffset": 6965, "endOffset": 13412, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "prepareAgentRun", + "ranges": [{ "startOffset": 13450, "endOffset": 16208, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "820", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/wirings/ai-agent/ai-agent-stream.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 87980, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 143, "endOffset": 23153, "count": 1 }, + { "startOffset": 23038, "endOffset": 23150, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 347, "endOffset": 413, "count": 11 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 427, "endOffset": 517, "count": 1 }, + { "startOffset": 462, "endOffset": 516, "count": 5 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 534, "endOffset": 811, "count": 1 }, + { "startOffset": 589, "endOffset": 615, "count": 0 }, + { "startOffset": 656, "endOffset": 800, "count": 5 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 722, "endOffset": 735, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 829, "endOffset": 890, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "appendStepMessages", + "ranges": [{ "startOffset": 975, "endOffset": 997, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "checkForApprovals", + "ranges": [{ "startOffset": 1016, "endOffset": 1037, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "checkForCredentialRequests", + "ranges": [{ "startOffset": 1065, "endOffset": 1095, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resumeAIAgent", + "ranges": [{ "startOffset": 1110, "endOffset": 1127, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "streamAIAgent", + "ranges": [{ "startOffset": 1142, "endOffset": 1159, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createPersistingChannel", + "ranges": [{ "startOffset": 1637, "endOffset": 3453, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "postStreamCleanup", + "ranges": [{ "startOffset": 3511, "endOffset": 4865, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "runStreamStepLoop", + "ranges": [{ "startOffset": 4911, "endOffset": 6492, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "checkForApprovals", + "ranges": [{ "startOffset": 6538, "endOffset": 7376, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "checkForCredentialRequests", + "ranges": [{ "startOffset": 7422, "endOffset": 7881, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "appendStepMessages", + "ranges": [{ "startOffset": 7945, "endOffset": 8597, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "handleApprovals", + "ranges": [{ "startOffset": 8645, "endOffset": 9466, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "handleCredentialRequests", + "ranges": [{ "startOffset": 9508, "endOffset": 10019, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "streamAIAgent", + "ranges": [{ "startOffset": 10079, "endOffset": 14417, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resumeAIAgent", + "ranges": [{ "startOffset": 14455, "endOffset": 18900, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "continueAfterToolResult", + "ranges": [{ "startOffset": 18938, "endOffset": 22979, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "821", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/wirings/ai-agent/ai-agent-model-config.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 4907, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 149, "endOffset": 2064, "count": 1 }, + { "startOffset": 2022, "endOffset": 2061, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 353, "endOffset": 419, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 433, "endOffset": 523, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 540, "endOffset": 817, "count": 1 }, + { "startOffset": 595, "endOffset": 621, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 728, "endOffset": 741, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 835, "endOffset": 896, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "resolveModelConfig", + "ranges": [{ "startOffset": 993, "endOffset": 1015, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolveModelConfig", + "ranges": [{ "startOffset": 1132, "endOffset": 1973, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "822", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/wirings/http/web-request.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 12307, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 135, "endOffset": 3492, "count": 1 }, + { "startOffset": 3439, "endOffset": 3489, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 339, "endOffset": 405, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 419, "endOffset": 509, "count": 1 }, + { "startOffset": 454, "endOffset": 508, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 526, "endOffset": 803, "count": 1 }, + { "startOffset": 581, "endOffset": 607, "count": 0 }, + { "startOffset": 648, "endOffset": 792, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 714, "endOffset": 727, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 821, "endOffset": 882, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "applyWebResponse", + "ranges": [{ "startOffset": 957, "endOffset": 977, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toWebRequest", + "ranges": [{ "startOffset": 991, "endOffset": 1007, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toWebRequest", + "ranges": [{ "startOffset": 1059, "endOffset": 2246, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "collectSetCookieHeaders", + "ranges": [{ "startOffset": 2358, "endOffset": 2782, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "applyWebResponse", + "ranges": [{ "startOffset": 2840, "endOffset": 3394, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "823", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/wirings/http/http-routes.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 11437, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 135, "endOffset": 3182, "count": 1 }, + { "startOffset": 3127, "endOffset": 3179, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 339, "endOffset": 405, "count": 7 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 419, "endOffset": 509, "count": 1 }, + { "startOffset": 454, "endOffset": 508, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 526, "endOffset": 803, "count": 1 }, + { "startOffset": 581, "endOffset": 607, "count": 0 }, + { "startOffset": 648, "endOffset": 792, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 714, "endOffset": 727, "count": 7 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 821, "endOffset": 882, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "defineHTTPRoutes", + "ranges": [{ "startOffset": 957, "endOffset": 977, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "wireHTTPRoutes", + "ranges": [{ "startOffset": 993, "endOffset": 1011, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "defineHTTPRoutes", + "ranges": [ + { "startOffset": 1114, "endOffset": 1318, "count": 3 }, + { "startOffset": 1288, "endOffset": 1317, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 1390, "endOffset": 1559, "count": 4 }, + { "startOffset": 1460, "endOffset": 1517, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1476, "endOffset": 1515, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "processRouteMap", + "ranges": [ + { "startOffset": 1578, "endOffset": 1899, "count": 7 }, + { "startOffset": 1665, "endOffset": 1898, "count": 18 }, + { "startOffset": 1690, "endOffset": 1725, "count": 15 }, + { "startOffset": 1725, "endOffset": 1897, "count": 3 }, + { "startOffset": 1856, "endOffset": 1897, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "mergeGroupConfig", + "ranges": [ + { "startOffset": 1941, "endOffset": 2226, "count": 3 }, + { "startOffset": 2078, "endOffset": 2082, "count": 2 }, + { "startOffset": 2161, "endOffset": 2174, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "registerRoute", + "ranges": [ + { "startOffset": 2270, "endOffset": 2747, "count": 15 }, + { "startOffset": 2511, "endOffset": 2515, "count": 6 }, + { "startOffset": 2572, "endOffset": 2576, "count": 6 } + ], + "isBlockCoverage": true + }, + { + "functionName": "isRouteConfig", + "ranges": [ + { "startOffset": 2785, "endOffset": 2911, "count": 21 }, + { "startOffset": 2877, "endOffset": 2910, "count": 15 } + ], + "isBlockCoverage": true + }, + { + "functionName": "isRouteContract", + "ranges": [{ "startOffset": 2949, "endOffset": 3084, "count": 3 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "824", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/middleware/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3278, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 127, "endOffset": 2159, "count": 1 }, + { "startOffset": 1954, "endOffset": 2156, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 333, "endOffset": 423, "count": 1 }, + { "startOffset": 368, "endOffset": 422, "count": 12 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 440, "endOffset": 717, "count": 1 }, + { "startOffset": 495, "endOffset": 521, "count": 0 }, + { "startOffset": 562, "endOffset": 706, "count": 12 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 628, "endOffset": 641, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 735, "endOffset": 796, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "addGlobalMiddleware", + "ranges": [{ "startOffset": 872, "endOffset": 920, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addGlobalPermission", + "ranges": [{ "startOffset": 941, "endOffset": 983, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addTagMiddleware", + "ranges": [{ "startOffset": 1001, "endOffset": 1046, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addTagPermission", + "ranges": [{ "startOffset": 1064, "endOffset": 1103, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "authAPIKey", + "ranges": [{ "startOffset": 1115, "endOffset": 1148, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "authBearer", + "ranges": [{ "startOffset": 1160, "endOffset": 1193, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "authCookie", + "ranges": [{ "startOffset": 1205, "endOffset": 1238, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cors", + "ranges": [{ "startOffset": 1244, "endOffset": 1264, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "pikkuRemoteAuthMiddleware", + "ranges": [{ "startOffset": 1291, "endOffset": 1339, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "runMiddleware", + "ranges": [{ "startOffset": 1354, "endOffset": 1396, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "telemetryInner", + "ranges": [{ "startOffset": 1412, "endOffset": 1447, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "telemetryOuter", + "ranges": [{ "startOffset": 1463, "endOffset": 1498, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "825", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/middleware/auth-apikey.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 4233, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 133, "endOffset": 1562, "count": 1 }, + { "startOffset": 1528, "endOffset": 1559, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 339, "endOffset": 429, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 446, "endOffset": 723, "count": 1 }, + { "startOffset": 501, "endOffset": 527, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 634, "endOffset": 647, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 741, "endOffset": 802, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "authAPIKey", + "ranges": [{ "startOffset": 871, "endOffset": 885, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1055, "endOffset": 1525, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "826", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/types/core.types.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 4931, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 127, "endOffset": 1916, "count": 1 }, + { "startOffset": 1783, "endOffset": 1913, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 331, "endOffset": 397, "count": 5 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 411, "endOffset": 501, "count": 1 }, + { "startOffset": 446, "endOffset": 500, "count": 5 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 518, "endOffset": 795, "count": 1 }, + { "startOffset": 573, "endOffset": 599, "count": 0 }, + { "startOffset": 640, "endOffset": 784, "count": 5 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 706, "endOffset": 719, "count": 8 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 813, "endOffset": 874, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "pikkuAIMiddleware", + "ranges": [{ "startOffset": 948, "endOffset": 969, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pikkuChannelMiddleware", + "ranges": [{ "startOffset": 993, "endOffset": 1019, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pikkuChannelMiddlewareFactory", + "ranges": [{ "startOffset": 1050, "endOffset": 1083, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pikkuMiddleware", + "ranges": [{ "startOffset": 1100, "endOffset": 1119, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "pikkuMiddlewareFactory", + "ranges": [{ "startOffset": 1143, "endOffset": 1169, "count": 6 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 1249, "endOffset": 1413, "count": 2 }, + { "startOffset": 1296, "endOffset": 1364, "count": 1 }, + { "startOffset": 1364, "endOffset": 1401, "count": 0 }, + { "startOffset": 1401, "endOffset": 1412, "count": 1 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1469, "endOffset": 1494, "count": 6 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1557, "endOffset": 1588, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1658, "endOffset": 1683, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1748, "endOffset": 1760, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "827", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/middleware/auth-cookie.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 6359, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 133, "endOffset": 1976, "count": 1 }, + { "startOffset": 1942, "endOffset": 1973, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 339, "endOffset": 429, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 446, "endOffset": 723, "count": 1 }, + { "startOffset": 501, "endOffset": 527, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 634, "endOffset": 647, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 741, "endOffset": 802, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "authCookie", + "ranges": [{ "startOffset": 871, "endOffset": 885, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1105, "endOffset": 1939, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "828", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/time-utils.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 8438, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 121, "endOffset": 2915, "count": 1 }, + { "startOffset": 2795, "endOffset": 2912, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 325, "endOffset": 391, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 405, "endOffset": 495, "count": 1 }, + { "startOffset": 440, "endOffset": 494, "count": 4 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 512, "endOffset": 789, "count": 1 }, + { "startOffset": 567, "endOffset": 593, "count": 0 }, + { "startOffset": 634, "endOffset": 778, "count": 4 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 700, "endOffset": 713, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 807, "endOffset": 868, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "getDurationInMilliseconds", + "ranges": [{ "startOffset": 950, "endOffset": 979, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getRelativeTimeOffset", + "ranges": [{ "startOffset": 1002, "endOffset": 1027, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getRelativeTimeOffsetFromNow", + "ranges": [{ "startOffset": 1057, "endOffset": 1089, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseDurationString", + "ranges": [{ "startOffset": 1110, "endOffset": 1133, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1331, "endOffset": 1395, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1463, "endOffset": 1542, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1614, "endOffset": 1709, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1772, "endOffset": 2770, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "829", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/middleware/auth-bearer.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 6317, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 133, "endOffset": 2054, "count": 1 }, + { "startOffset": 2020, "endOffset": 2051, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 337, "endOffset": 403, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 417, "endOffset": 507, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 524, "endOffset": 801, "count": 1 }, + { "startOffset": 579, "endOffset": 605, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 712, "endOffset": 725, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 819, "endOffset": 880, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "authBearer", + "ranges": [{ "startOffset": 949, "endOffset": 963, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1151, "endOffset": 1294, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1378, "endOffset": 2017, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "830", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/middleware/remote-auth.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 6780, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 133, "endOffset": 2481, "count": 1 }, + { "startOffset": 2432, "endOffset": 2478, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 339, "endOffset": 429, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 446, "endOffset": 723, "count": 1 }, + { "startOffset": 501, "endOffset": 527, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 634, "endOffset": 647, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 741, "endOffset": 802, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "pikkuRemoteAuthMiddleware", + "ranges": [{ "startOffset": 886, "endOffset": 915, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1196, "endOffset": 2429, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "831", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/crypto-utils.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 17745, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 123, "endOffset": 5586, "count": 1 }, + { "startOffset": 5462, "endOffset": 5583, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 327, "endOffset": 393, "count": 17 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 407, "endOffset": 497, "count": 1 }, + { "startOffset": 442, "endOffset": 496, "count": 8 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 514, "endOffset": 791, "count": 1 }, + { "startOffset": 569, "endOffset": 595, "count": 0 }, + { "startOffset": 636, "endOffset": 780, "count": 8 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 702, "endOffset": 715, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 809, "endOffset": 870, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "decryptJSON", + "ranges": [{ "startOffset": 942, "endOffset": 957, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "encryptJSON", + "ranges": [{ "startOffset": 970, "endOffset": 985, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "envelopeDecrypt", + "ranges": [{ "startOffset": 1002, "endOffset": 1021, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "envelopeEncrypt", + "ranges": [{ "startOffset": 1038, "endOffset": 1057, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "envelopeRewrap", + "ranges": [{ "startOffset": 1073, "endOffset": 1091, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "generateDEK", + "ranges": [{ "startOffset": 1104, "endOffset": 1119, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "unwrapDEK", + "ranges": [{ "startOffset": 1130, "endOffset": 1143, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "wrapDEK", + "ranges": [{ "startOffset": 1152, "endOffset": 1163, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1299, "endOffset": 1419, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1459, "endOffset": 1648, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1691, "endOffset": 1925, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1967, "endOffset": 2059, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2102, "endOffset": 2229, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2270, "endOffset": 2456, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2495, "endOffset": 3025, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3066, "endOffset": 3435, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3477, "endOffset": 3610, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3652, "endOffset": 3750, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3787, "endOffset": 3850, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3885, "endOffset": 3944, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3986, "endOffset": 4468, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4515, "endOffset": 4908, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4956, "endOffset": 5124, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5173, "endOffset": 5288, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5336, "endOffset": 5442, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "832", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/middleware/cors.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 8629, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 126, "endOffset": 2442, "count": 1 }, + { "startOffset": 2414, "endOffset": 2439, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 330, "endOffset": 396, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 410, "endOffset": 500, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 517, "endOffset": 794, "count": 1 }, + { "startOffset": 572, "endOffset": 598, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 705, "endOffset": 718, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 812, "endOffset": 873, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "cors", + "ranges": [{ "startOffset": 922, "endOffset": 930, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 1087, "endOffset": 2411, "count": 1 }, + { "startOffset": 1276, "endOffset": 1377, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1518, "endOffset": 2400, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "833", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/middleware/telemetry.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 10221, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 131, "endOffset": 2706, "count": 1 }, + { "startOffset": 2653, "endOffset": 2703, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 335, "endOffset": 401, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 415, "endOffset": 505, "count": 1 }, + { "startOffset": 450, "endOffset": 504, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 522, "endOffset": 799, "count": 1 }, + { "startOffset": 577, "endOffset": 603, "count": 0 }, + { "startOffset": 644, "endOffset": 788, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 710, "endOffset": 723, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 817, "endOffset": 878, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "telemetryInner", + "ranges": [{ "startOffset": 947, "endOffset": 965, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "telemetryOuter", + "ranges": [{ "startOffset": 981, "endOffset": 999, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1171, "endOffset": 1928, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1996, "endOffset": 2650, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "834", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/.pikku/agent/pikku-agent-wirings.gen.ts", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1201, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 136, "endOffset": 430, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "835", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/wirings/ai-agent/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3202, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 133, "endOffset": 2215, "count": 1 }, + { "startOffset": 1994, "endOffset": 2212, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 339, "endOffset": 429, "count": 1 }, + { "startOffset": 374, "endOffset": 428, "count": 14 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 446, "endOffset": 723, "count": 1 }, + { "startOffset": 501, "endOffset": 527, "count": 0 }, + { "startOffset": 568, "endOffset": 712, "count": 14 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 634, "endOffset": 647, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 741, "endOffset": 802, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "ToolApprovalRequired", + "ranges": [{ "startOffset": 875, "endOffset": 923, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ToolCredentialRequired", + "ranges": [{ "startOffset": 947, "endOffset": 997, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addAIAgent", + "ranges": [{ "startOffset": 1009, "endOffset": 1048, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "agent", + "ranges": [{ "startOffset": 1055, "endOffset": 1088, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "agentApprove", + "ranges": [{ "startOffset": 1102, "endOffset": 1142, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "agentResume", + "ranges": [{ "startOffset": 1155, "endOffset": 1194, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "agentStream", + "ranges": [{ "startOffset": 1207, "endOffset": 1246, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "approveAIAgent", + "ranges": [{ "startOffset": 1262, "endOffset": 1305, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getAIAgents", + "ranges": [{ "startOffset": 1318, "endOffset": 1358, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getAIAgentsMeta", + "ranges": [{ "startOffset": 1375, "endOffset": 1419, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resumeAIAgent", + "ranges": [{ "startOffset": 1434, "endOffset": 1474, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resumeAIAgentSync", + "ranges": [{ "startOffset": 1493, "endOffset": 1537, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "runAIAgent", + "ranges": [{ "startOffset": 1549, "endOffset": 1586, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "streamAIAgent", + "ranges": [{ "startOffset": 1601, "endOffset": 1641, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "836", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/wirings/ai-agent/ai-agent-helpers.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 5038, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 144, "endOffset": 2071, "count": 1 }, + { "startOffset": 2005, "endOffset": 2068, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 348, "endOffset": 414, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 428, "endOffset": 518, "count": 1 }, + { "startOffset": 463, "endOffset": 517, "count": 4 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 535, "endOffset": 812, "count": 1 }, + { "startOffset": 590, "endOffset": 616, "count": 0 }, + { "startOffset": 657, "endOffset": 801, "count": 4 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 723, "endOffset": 736, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 830, "endOffset": 891, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "agent", + "ranges": [{ "startOffset": 965, "endOffset": 974, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "agentApprove", + "ranges": [{ "startOffset": 988, "endOffset": 1004, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "agentResume", + "ranges": [{ "startOffset": 1017, "endOffset": 1032, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "agentStream", + "ranges": [{ "startOffset": 1045, "endOffset": 1060, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "agent", + "ranges": [{ "startOffset": 1117, "endOffset": 1239, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "agentStream", + "ranges": [{ "startOffset": 1261, "endOffset": 1586, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "agentResume", + "ranges": [{ "startOffset": 1620, "endOffset": 1789, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "agentApprove", + "ranges": [{ "startOffset": 1823, "endOffset": 1968, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "837", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/wirings/ai-agent/ai-agent-registry.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 8121, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 145, "endOffset": 3138, "count": 1 }, + { "startOffset": 3061, "endOffset": 3135, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 349, "endOffset": 415, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 429, "endOffset": 519, "count": 1 }, + { "startOffset": 464, "endOffset": 518, "count": 4 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 536, "endOffset": 813, "count": 1 }, + { "startOffset": 591, "endOffset": 617, "count": 0 }, + { "startOffset": 658, "endOffset": 802, "count": 4 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 724, "endOffset": 737, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 831, "endOffset": 892, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "addAIAgent", + "ranges": [{ "startOffset": 973, "endOffset": 987, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "approveAIAgent", + "ranges": [{ "startOffset": 1003, "endOffset": 1021, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getAIAgents", + "ranges": [{ "startOffset": 1034, "endOffset": 1049, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getAIAgentsMeta", + "ranges": [{ "startOffset": 1066, "endOffset": 1085, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 1222, "endOffset": 1721, "count": 1 }, + { "startOffset": 1396, "endOffset": 1533, "count": 0 }, + { "startOffset": 1635, "endOffset": 1693, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "approveAIAgent", + "ranges": [{ "startOffset": 1736, "endOffset": 2790, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2855, "endOffset": 2923, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2968, "endOffset": 3040, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "838", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/functions/kanban.agent.ts", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3047, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 126, "endOffset": 1664, "count": 1 }, + { "startOffset": 1629, "endOffset": 1661, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 345, "endOffset": 435, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 452, "endOffset": 729, "count": 1 }, + { "startOffset": 507, "endOffset": 533, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 640, "endOffset": 653, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 747, "endOffset": 808, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "kanbanAgent", + "ranges": [{ "startOffset": 880, "endOffset": 895, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "839", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/.pikku/agent/pikku-agent-types.gen.ts", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 6606, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 134, "endOffset": 1855, "count": 1 }, + { "startOffset": 1758, "endOffset": 1852, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 338, "endOffset": 404, "count": 6 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 418, "endOffset": 508, "count": 1 }, + { "startOffset": 453, "endOffset": 507, "count": 6 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 525, "endOffset": 802, "count": 1 }, + { "startOffset": 580, "endOffset": 606, "count": 0 }, + { "startOffset": 647, "endOffset": 791, "count": 6 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 713, "endOffset": 726, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 820, "endOffset": 881, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "agent", + "ranges": [{ "startOffset": 965, "endOffset": 974, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "agentApprove", + "ranges": [{ "startOffset": 988, "endOffset": 1004, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "agentResume", + "ranges": [{ "startOffset": 1017, "endOffset": 1032, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "agentStream", + "ranges": [{ "startOffset": 1045, "endOffset": 1060, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pikkuAIAgent", + "ranges": [{ "startOffset": 1074, "endOffset": 1090, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "pikkuAIMiddleware", + "ranges": [{ "startOffset": 1109, "endOffset": 1130, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1271, "endOffset": 1294, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1342, "endOffset": 1354, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1395, "endOffset": 1451, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1486, "endOffset": 1548, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1589, "endOffset": 1635, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1677, "endOffset": 1740, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "840", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/.pikku/pikku-types.gen.ts", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 4215, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 122, "endOffset": 2380, "count": 1 }, + { "startOffset": 1871, "endOffset": 2377, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 331, "endOffset": 608, "count": 21 }, + { "startOffset": 386, "endOffset": 412, "count": 0 }, + { "startOffset": 453, "endOffset": 597, "count": 114 }, + { "startOffset": 482, "endOffset": 496, "count": 95 }, + { "startOffset": 497, "endOffset": 597, "count": 95 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 519, "endOffset": 532, "count": 68 }], + "isBlockCoverage": true + }, + { + "functionName": "__reExport", + "ranges": [{ "startOffset": 624, "endOffset": 740, "count": 10 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 758, "endOffset": 819, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "841", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/.pikku/function/pikku-function-types.gen.ts", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 41034, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 140, "endOffset": 4447, "count": 1 }, + { "startOffset": 4120, "endOffset": 4444, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 344, "endOffset": 410, "count": 21 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 424, "endOffset": 514, "count": 1 }, + { "startOffset": 459, "endOffset": 513, "count": 19 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 531, "endOffset": 808, "count": 1 }, + { "startOffset": 586, "endOffset": 612, "count": 0 }, + { "startOffset": 653, "endOffset": 797, "count": 19 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 719, "endOffset": 732, "count": 38 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 826, "endOffset": 887, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "addGlobalMiddleware", + "ranges": [{ "startOffset": 991, "endOffset": 1014, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addGlobalPermission", + "ranges": [{ "startOffset": 1035, "endOffset": 1058, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addTagMiddleware", + "ranges": [{ "startOffset": 1076, "endOffset": 1096, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addTagPermission", + "ranges": [{ "startOffset": 1114, "endOffset": 1134, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pikkuApprovalDescription", + "ranges": [{ "startOffset": 1160, "endOffset": 1188, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pikkuAuth", + "ranges": [{ "startOffset": 1199, "endOffset": 1212, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pikkuConfig", + "ranges": [{ "startOffset": 1225, "endOffset": 1240, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "pikkuFunc", + "ranges": [{ "startOffset": 1251, "endOffset": 1264, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pikkuListFunc", + "ranges": [{ "startOffset": 1279, "endOffset": 1296, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pikkuMiddleware", + "ranges": [{ "startOffset": 1313, "endOffset": 1332, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pikkuMiddlewareFactory", + "ranges": [{ "startOffset": 1356, "endOffset": 1382, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pikkuPermission", + "ranges": [{ "startOffset": 1399, "endOffset": 1418, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pikkuPermissionFactory", + "ranges": [{ "startOffset": 1442, "endOffset": 1468, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pikkuServices", + "ranges": [{ "startOffset": 1483, "endOffset": 1500, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "pikkuSessionlessFunc", + "ranges": [{ "startOffset": 1522, "endOffset": 1546, "count": 32 }], + "isBlockCoverage": true + }, + { + "functionName": "pikkuVoidFunc", + "ranges": [{ "startOffset": 1561, "endOffset": 1578, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pikkuWireServices", + "ranges": [{ "startOffset": 1597, "endOffset": 1618, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ref", + "ranges": [{ "startOffset": 1623, "endOffset": 1630, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "wireAddon", + "ranges": [{ "startOffset": 1641, "endOffset": 1665, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1961, "endOffset": 2039, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2082, "endOffset": 2131, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2174, "endOffset": 2252, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2308, "endOffset": 2333, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2396, "endOffset": 2421, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2486, "endOffset": 2501, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pikkuFunc", + "ranges": [{ "startOffset": 2530, "endOffset": 2599, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2656, "endOffset": 2690, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pikkuSessionlessFunc", + "ranges": [ + { "startOffset": 2708, "endOffset": 2788, "count": 32 }, + { "startOffset": 2775, "endOffset": 2782, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2867, "endOffset": 2918, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2953, "endOffset": 3054, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2982, "endOffset": 3044, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3087, "endOffset": 3097, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3140, "endOffset": 3334, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3154, "endOffset": 3333, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3383, "endOffset": 3575, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3627, "endOffset": 3706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3760, "endOffset": 3832, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3886, "endOffset": 3967, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4021, "endOffset": 4095, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "842", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/function/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2135, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 125, "endOffset": 1516, "count": 1 }, + { "startOffset": 1387, "endOffset": 1513, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 331, "endOffset": 421, "count": 1 }, + { "startOffset": 366, "endOffset": 420, "count": 6 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 438, "endOffset": 715, "count": 1 }, + { "startOffset": 493, "endOffset": 519, "count": 0 }, + { "startOffset": 560, "endOffset": 704, "count": 6 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 626, "endOffset": 639, "count": 71 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 733, "endOffset": 794, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "addFunction", + "ranges": [{ "startOffset": 858, "endOffset": 896, "count": 71 }], + "isBlockCoverage": true + }, + { + "functionName": "getAllFunctionNames", + "ranges": [{ "startOffset": 917, "endOffset": 963, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pikkuApprovalDescription", + "ranges": [{ "startOffset": 989, "endOffset": 1040, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pikkuAuth", + "ranges": [{ "startOffset": 1051, "endOffset": 1087, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pikkuPermission", + "ranges": [{ "startOffset": 1104, "endOffset": 1146, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pikkuPermissionFactory", + "ranges": [{ "startOffset": 1170, "endOffset": 1219, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "843", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/function/functions.types.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 5916, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 135, "endOffset": 1837, "count": 1 }, + { "startOffset": 1740, "endOffset": 1834, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 339, "endOffset": 405, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 419, "endOffset": 509, "count": 1 }, + { "startOffset": 454, "endOffset": 508, "count": 4 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 526, "endOffset": 803, "count": 1 }, + { "startOffset": 581, "endOffset": 607, "count": 0 }, + { "startOffset": 648, "endOffset": 792, "count": 4 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 714, "endOffset": 727, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 821, "endOffset": 882, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "pikkuApprovalDescription", + "ranges": [{ "startOffset": 973, "endOffset": 1001, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pikkuAuth", + "ranges": [{ "startOffset": 1012, "endOffset": 1025, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pikkuPermission", + "ranges": [{ "startOffset": 1042, "endOffset": 1061, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pikkuPermissionFactory", + "ranges": [{ "startOffset": 1085, "endOffset": 1111, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1196, "endOffset": 1274, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1330, "endOffset": 1355, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1420, "endOffset": 1435, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1487, "endOffset": 1725, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "844", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/wirings/rpc/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1789, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 128, "endOffset": 1254, "count": 1 }, + { "startOffset": 1177, "endOffset": 1251, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 334, "endOffset": 424, "count": 1 }, + { "startOffset": 369, "endOffset": 423, "count": 4 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 441, "endOffset": 718, "count": 1 }, + { "startOffset": 496, "endOffset": 522, "count": 0 }, + { "startOffset": 563, "endOffset": 707, "count": 4 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 629, "endOffset": 642, "count": 5 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 736, "endOffset": 797, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "PikkuRPCService", + "ranges": [{ "startOffset": 855, "endOffset": 892, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "RPCNotFoundError", + "ranges": [{ "startOffset": 910, "endOffset": 948, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "rpcService", + "ranges": [{ "startOffset": 960, "endOffset": 992, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "wireAddon", + "ranges": [{ "startOffset": 1003, "endOffset": 1034, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "845", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/wirings/rpc/wire-addon.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2279, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 133, "endOffset": 1312, "count": 1 }, + { "startOffset": 1279, "endOffset": 1309, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 337, "endOffset": 403, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 417, "endOffset": 507, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 524, "endOffset": 801, "count": 1 }, + { "startOffset": 579, "endOffset": 605, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 712, "endOffset": 725, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 819, "endOffset": 880, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "wireAddon", + "ranges": [{ "startOffset": 946, "endOffset": 959, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1088, "endOffset": 1264, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "846", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/.pikku/http/pikku-http-types.gen.ts", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 10268, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 132, "endOffset": 1937, "count": 1 }, + { "startOffset": 1837, "endOffset": 1934, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 336, "endOffset": 402, "count": 5 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 416, "endOffset": 506, "count": 1 }, + { "startOffset": 451, "endOffset": 505, "count": 5 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 523, "endOffset": 800, "count": 1 }, + { "startOffset": 578, "endOffset": 604, "count": 0 }, + { "startOffset": 645, "endOffset": 789, "count": 5 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 711, "endOffset": 724, "count": 9 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 818, "endOffset": 879, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "addHTTPMiddleware", + "ranges": [{ "startOffset": 973, "endOffset": 994, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addHTTPPermission", + "ranges": [{ "startOffset": 1013, "endOffset": 1034, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "defineHTTPRoutes", + "ranges": [{ "startOffset": 1052, "endOffset": 1072, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "wireHTTP", + "ranges": [{ "startOffset": 1082, "endOffset": 1094, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "wireHTTPRoutes", + "ranges": [{ "startOffset": 1110, "endOffset": 1128, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1255, "endOffset": 1305, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1349, "endOffset": 1446, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1499, "endOffset": 1578, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "defineHTTPRoutes", + "ranges": [{ "startOffset": 1600, "endOffset": 1697, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1769, "endOffset": 1817, "count": 4 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "847", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/.pikku/channel/pikku-channel-types.gen.ts", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 13249, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 138, "endOffset": 2610, "count": 1 }, + { "startOffset": 2407, "endOffset": 2607, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 342, "endOffset": 408, "count": 8 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 422, "endOffset": 512, "count": 1 }, + { "startOffset": 457, "endOffset": 511, "count": 8 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 529, "endOffset": 806, "count": 1 }, + { "startOffset": 584, "endOffset": 610, "count": 0 }, + { "startOffset": 651, "endOffset": 795, "count": 8 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 717, "endOffset": 730, "count": 7 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 824, "endOffset": 885, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "addChannelMiddleware", + "ranges": [{ "startOffset": 988, "endOffset": 1012, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "defineChannelRoutes", + "ranges": [{ "startOffset": 1033, "endOffset": 1056, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pikkuChannelConnectionFunc", + "ranges": [{ "startOffset": 1084, "endOffset": 1114, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "pikkuChannelDisconnectionFunc", + "ranges": [{ "startOffset": 1145, "endOffset": 1178, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "pikkuChannelFunc", + "ranges": [{ "startOffset": 1196, "endOffset": 1216, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "pikkuChannelMiddleware", + "ranges": [{ "startOffset": 1240, "endOffset": 1266, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pikkuChannelMiddlewareFactory", + "ranges": [{ "startOffset": 1297, "endOffset": 1330, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "wireChannel", + "ranges": [{ "startOffset": 1343, "endOffset": 1358, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 1512, "endOffset": 1563, "count": 1 }, + { "startOffset": 1557, "endOffset": 1562, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 1637, "endOffset": 1688, "count": 1 }, + { "startOffset": 1682, "endOffset": 1687, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "pikkuChannelFunc", + "ranges": [ + { "startOffset": 1722, "endOffset": 1798, "count": 4 }, + { "startOffset": 1792, "endOffset": 1797, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1867, "endOffset": 1917, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "defineChannelRoutes", + "ranges": [{ "startOffset": 1933, "endOffset": 2023, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2109, "endOffset": 2140, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2210, "endOffset": 2235, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2303, "endOffset": 2381, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "848", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/wirings/channel/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3376, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 132, "endOffset": 2245, "count": 1 }, + { "startOffset": 2039, "endOffset": 2242, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 338, "endOffset": 428, "count": 1 }, + { "startOffset": 373, "endOffset": 427, "count": 10 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 445, "endOffset": 722, "count": 1 }, + { "startOffset": 500, "endOffset": 526, "count": 0 }, + { "startOffset": 567, "endOffset": 711, "count": 10 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 633, "endOffset": 646, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 740, "endOffset": 801, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "ChannelStore", + "ranges": [{ "startOffset": 864, "endOffset": 901, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "EventHubStore", + "ranges": [{ "startOffset": 916, "endOffset": 955, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "PikkuAbstractChannelHandler", + "ranges": [{ "startOffset": 984, "endOffset": 1053, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addChannelMiddleware", + "ranges": [{ "startOffset": 1075, "endOffset": 1132, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "combineChannelMiddleware", + "ranges": [{ "startOffset": 1158, "endOffset": 1219, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "defineChannelRoutes", + "ranges": [{ "startOffset": 1240, "endOffset": 1292, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "logChannels", + "ranges": [{ "startOffset": 1305, "endOffset": 1340, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "openChannel", + "ranges": [{ "startOffset": 1353, "endOffset": 1390, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "wireChannel", + "ranges": [{ "startOffset": 1403, "endOffset": 1440, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "wrapChannelWithMiddleware", + "ranges": [{ "startOffset": 1467, "endOffset": 1529, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "849", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/wirings/channel/channel-runner.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 13231, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 141, "endOffset": 4356, "count": 1 }, + { "startOffset": 4309, "endOffset": 4353, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 345, "endOffset": 411, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 425, "endOffset": 515, "count": 1 }, + { "startOffset": 460, "endOffset": 514, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 532, "endOffset": 809, "count": 1 }, + { "startOffset": 587, "endOffset": 613, "count": 0 }, + { "startOffset": 654, "endOffset": 798, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 720, "endOffset": 733, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 827, "endOffset": 888, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "openChannel", + "ranges": [{ "startOffset": 964, "endOffset": 979, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "wireChannel", + "ranges": [{ "startOffset": 992, "endOffset": 1007, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 1376, "endOffset": 2696, "count": 1 }, + { "startOffset": 1523, "endOffset": 1662, "count": 0 }, + { "startOffset": 1960, "endOffset": 1994, "count": 0 }, + { "startOffset": 1995, "endOffset": 2152, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 2256, "endOffset": 2607, "count": 1 }, + { "startOffset": 2360, "endOffset": 2367, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 2399, "endOffset": 2605, "count": 4 }, + { "startOffset": 2481, "endOffset": 2488, "count": 0 }, + { "startOffset": 2582, "endOffset": 2590, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2750, "endOffset": 3314, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3368, "endOffset": 4292, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "850", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/wirings/channel/log-channels.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2907, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 139, "endOffset": 1460, "count": 1 }, + { "startOffset": 1425, "endOffset": 1457, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 343, "endOffset": 409, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 423, "endOffset": 513, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 530, "endOffset": 807, "count": 1 }, + { "startOffset": 585, "endOffset": 611, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 718, "endOffset": 731, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 825, "endOffset": 886, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "logChannels", + "ranges": [{ "startOffset": 958, "endOffset": 973, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1106, "endOffset": 1408, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "851", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/wirings/channel/pikku-abstract-channel-handler.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 4509, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 157, "endOffset": 1914, "count": 1 }, + { "startOffset": 1863, "endOffset": 1911, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 361, "endOffset": 427, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 441, "endOffset": 531, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 548, "endOffset": 825, "count": 1 }, + { "startOffset": 603, "endOffset": 629, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 736, "endOffset": 749, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 843, "endOffset": 904, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "PikkuAbstractChannelHandler", + "ranges": [{ "startOffset": 1028, "endOffset": 1059, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1164, "endOffset": 1214, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1214, "endOffset": 1255, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "PikkuAbstractChannelHandler", + "ranges": [{ "startOffset": 1256, "endOffset": 1386, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getChannel", + "ranges": [{ "startOffset": 1386, "endOffset": 1782, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "open", + "ranges": [{ "startOffset": 1782, "endOffset": 1820, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "close", + "ranges": [{ "startOffset": 1820, "endOffset": 1861, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "852", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/wirings/channel/channel-store.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1567, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 140, "endOffset": 1124, "count": 1 }, + { "startOffset": 1088, "endOffset": 1121, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 344, "endOffset": 410, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 424, "endOffset": 514, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 531, "endOffset": 808, "count": 1 }, + { "startOffset": 586, "endOffset": 612, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 719, "endOffset": 732, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 826, "endOffset": 887, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "ChannelStore", + "ranges": [{ "startOffset": 962, "endOffset": 978, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1051, "endOffset": 1086, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "853", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/wirings/channel/eventhub-store.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1580, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 141, "endOffset": 1133, "count": 1 }, + { "startOffset": 1096, "endOffset": 1130, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 345, "endOffset": 411, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 425, "endOffset": 515, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 532, "endOffset": 809, "count": 1 }, + { "startOffset": 587, "endOffset": 613, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 720, "endOffset": 733, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 827, "endOffset": 888, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "EventHubStore", + "ranges": [{ "startOffset": 966, "endOffset": 983, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1058, "endOffset": 1094, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "854", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/wirings/channel/define-channel-routes.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2438, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 148, "endOffset": 1223, "count": 1 }, + { "startOffset": 1180, "endOffset": 1220, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 352, "endOffset": 418, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 432, "endOffset": 522, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 539, "endOffset": 816, "count": 1 }, + { "startOffset": 594, "endOffset": 620, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 727, "endOffset": 740, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 834, "endOffset": 895, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "defineChannelRoutes", + "ranges": [{ "startOffset": 993, "endOffset": 1016, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "defineChannelRoutes", + "ranges": [{ "startOffset": 1078, "endOffset": 1129, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "855", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/.pikku/trigger/pikku-trigger-types.gen.ts", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 9753, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 138, "endOffset": 1634, "count": 1 }, + { "startOffset": 1564, "endOffset": 1631, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 342, "endOffset": 408, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 422, "endOffset": 512, "count": 1 }, + { "startOffset": 457, "endOffset": 511, "count": 3 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 529, "endOffset": 806, "count": 1 }, + { "startOffset": 584, "endOffset": 610, "count": 0 }, + { "startOffset": 651, "endOffset": 795, "count": 3 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 717, "endOffset": 730, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 824, "endOffset": 885, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "pikkuTriggerFunc", + "ranges": [{ "startOffset": 984, "endOffset": 1004, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "wireTrigger", + "ranges": [{ "startOffset": 1017, "endOffset": 1032, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "wireTriggerSource", + "ranges": [{ "startOffset": 1051, "endOffset": 1072, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pikkuTriggerFunc", + "ranges": [{ "startOffset": 1186, "endOffset": 1321, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1390, "endOffset": 1440, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1487, "endOffset": 1541, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "856", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/wirings/trigger/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1840, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 132, "endOffset": 1285, "count": 1 }, + { "startOffset": 1212, "endOffset": 1282, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 338, "endOffset": 428, "count": 1 }, + { "startOffset": 373, "endOffset": 427, "count": 3 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 445, "endOffset": 722, "count": 1 }, + { "startOffset": 500, "endOffset": 526, "count": 0 }, + { "startOffset": 567, "endOffset": 711, "count": 3 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 633, "endOffset": 646, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 740, "endOffset": 801, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "PikkuTriggerService", + "ranges": [{ "startOffset": 871, "endOffset": 923, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "wireTrigger", + "ranges": [{ "startOffset": 936, "endOffset": 973, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "wireTriggerSource", + "ranges": [{ "startOffset": 992, "endOffset": 1035, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "857", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/wirings/trigger/trigger-runner.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 11003, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 141, "endOffset": 3940, "count": 1 }, + { "startOffset": 3837, "endOffset": 3937, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 345, "endOffset": 411, "count": 5 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 425, "endOffset": 515, "count": 1 }, + { "startOffset": 460, "endOffset": 514, "count": 5 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 532, "endOffset": 809, "count": 1 }, + { "startOffset": 587, "endOffset": 613, "count": 0 }, + { "startOffset": 654, "endOffset": 798, "count": 5 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 720, "endOffset": 733, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 827, "endOffset": 888, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "getRegisteredTriggers", + "ranges": [{ "startOffset": 974, "endOffset": 999, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getTriggerMeta", + "ranges": [{ "startOffset": 1015, "endOffset": 1033, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setupTrigger", + "ranges": [{ "startOffset": 1047, "endOffset": 1063, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "wireTrigger", + "ranges": [{ "startOffset": 1076, "endOffset": 1091, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "wireTriggerSource", + "ranges": [{ "startOffset": 1110, "endOffset": 1131, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 1390, "endOffset": 1848, "count": 1 }, + { "startOffset": 1521, "endOffset": 1660, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1895, "endOffset": 2539, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setupTrigger", + "ranges": [{ "startOffset": 2561, "endOffset": 3552, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3623, "endOffset": 3695, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3749, "endOffset": 3817, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "858", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/wirings/trigger/pikku-trigger-service.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 9373, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 148, "endOffset": 3242, "count": 1 }, + { "startOffset": 3199, "endOffset": 3239, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 352, "endOffset": 418, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 432, "endOffset": 522, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 539, "endOffset": 816, "count": 1 }, + { "startOffset": 594, "endOffset": 620, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 727, "endOffset": 740, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 834, "endOffset": 895, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "PikkuTriggerService", + "ranges": [{ "startOffset": 993, "endOffset": 1016, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1270, "endOffset": 1312, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1312, "endOffset": 1334, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "stop", + "ranges": [{ "startOffset": 1335, "endOffset": 1671, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getTriggerTargets", + "ranges": [{ "startOffset": 1671, "endOffset": 2066, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getTriggerSources", + "ranges": [{ "startOffset": 2066, "endOffset": 2159, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setupTriggerInstance", + "ranges": [{ "startOffset": 2159, "endOffset": 2277, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "onTriggerFire", + "ranges": [{ "startOffset": 2277, "endOffset": 3197, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "859", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/.pikku/scheduler/pikku-scheduler-types.gen.ts", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2964, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 142, "endOffset": 1257, "count": 1 }, + { "startOffset": 1220, "endOffset": 1254, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 346, "endOffset": 412, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 426, "endOffset": 516, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 533, "endOffset": 810, "count": 1 }, + { "startOffset": 588, "endOffset": 614, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 721, "endOffset": 734, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 828, "endOffset": 889, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "wireScheduler", + "ranges": [{ "startOffset": 989, "endOffset": 1006, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1153, "endOffset": 1201, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "860", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/wirings/scheduler/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1918, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 134, "endOffset": 1347, "count": 1 }, + { "startOffset": 1261, "endOffset": 1344, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 340, "endOffset": 430, "count": 1 }, + { "startOffset": 375, "endOffset": 429, "count": 4 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 447, "endOffset": 724, "count": 1 }, + { "startOffset": 502, "endOffset": 528, "count": 0 }, + { "startOffset": 569, "endOffset": 713, "count": 4 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 635, "endOffset": 648, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 742, "endOffset": 803, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "getScheduledTasks", + "ranges": [{ "startOffset": 875, "endOffset": 920, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "logSchedulers", + "ranges": [{ "startOffset": 935, "endOffset": 974, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "runScheduledTask", + "ranges": [{ "startOffset": 992, "endOffset": 1036, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "wireScheduler", + "ranges": [{ "startOffset": 1051, "endOffset": 1092, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "861", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/wirings/scheduler/scheduler-runner.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 12332, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 145, "endOffset": 4493, "count": 1 }, + { "startOffset": 4421, "endOffset": 4490, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 349, "endOffset": 415, "count": 5 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 429, "endOffset": 519, "count": 1 }, + { "startOffset": 464, "endOffset": 518, "count": 3 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 536, "endOffset": 813, "count": 1 }, + { "startOffset": 591, "endOffset": 617, "count": 0 }, + { "startOffset": 658, "endOffset": 802, "count": 3 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 724, "endOffset": 737, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 831, "endOffset": 892, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "getScheduledTasks", + "ranges": [{ "startOffset": 978, "endOffset": 999, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "runScheduledTask", + "ranges": [{ "startOffset": 1017, "endOffset": 1037, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "wireScheduler", + "ranges": [{ "startOffset": 1052, "endOffset": 1069, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 1428, "endOffset": 2175, "count": 1 }, + { "startOffset": 1567, "endOffset": 1719, "count": 0 }, + { "startOffset": 2058, "endOffset": 2131, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2266, "endOffset": 2315, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "ScheduledTaskNotFoundError", + "ranges": [{ "startOffset": 2315, "endOffset": 2378, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2451, "endOffset": 2499, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "ScheduledTaskSkippedError", + "ranges": [{ "startOffset": 2499, "endOffset": 2642, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "runScheduledTask", + "ranges": [{ "startOffset": 2643, "endOffset": 4252, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4327, "endOffset": 4398, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "862", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/wirings/scheduler/log-schedulers.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3059, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 143, "endOffset": 1520, "count": 1 }, + { "startOffset": 1483, "endOffset": 1517, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 347, "endOffset": 413, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 427, "endOffset": 517, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 534, "endOffset": 811, "count": 1 }, + { "startOffset": 589, "endOffset": 615, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 722, "endOffset": 735, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 829, "endOffset": 890, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "logSchedulers", + "ranges": [{ "startOffset": 968, "endOffset": 985, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1122, "endOffset": 1464, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "863", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/.pikku/queue/pikku-queue-types.gen.ts", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2930, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 134, "endOffset": 1251, "count": 1 }, + { "startOffset": 1212, "endOffset": 1248, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 338, "endOffset": 404, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 418, "endOffset": 508, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 525, "endOffset": 802, "count": 1 }, + { "startOffset": 580, "endOffset": 606, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 713, "endOffset": 726, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 820, "endOffset": 881, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "wireQueueWorker", + "ranges": [{ "startOffset": 975, "endOffset": 994, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1131, "endOffset": 1191, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "864", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/wirings/queue/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2662, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 130, "endOffset": 1763, "count": 1 }, + { "startOffset": 1593, "endOffset": 1760, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 336, "endOffset": 426, "count": 1 }, + { "startOffset": 371, "endOffset": 425, "count": 8 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 443, "endOffset": 720, "count": 1 }, + { "startOffset": 498, "endOffset": 524, "count": 0 }, + { "startOffset": 565, "endOffset": 709, "count": 8 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 631, "endOffset": 644, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 738, "endOffset": 799, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "QueueJobDiscardedError", + "ranges": [{ "startOffset": 868, "endOffset": 914, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "QueueJobFailedError", + "ranges": [{ "startOffset": 935, "endOffset": 978, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getQueueWorkers", + "ranges": [{ "startOffset": 995, "endOffset": 1034, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "registerQueueWorkers", + "ranges": [{ "startOffset": 1056, "endOffset": 1109, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "removeQueueWorker", + "ranges": [{ "startOffset": 1128, "endOffset": 1169, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "runQueueJob", + "ranges": [{ "startOffset": 1182, "endOffset": 1217, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "validateWorkerConfig", + "ranges": [{ "startOffset": 1239, "endOffset": 1293, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "wireQueueWorker", + "ranges": [{ "startOffset": 1310, "endOffset": 1349, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "865", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/wirings/queue/queue-runner.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 15854, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 137, "endOffset": 5335, "count": 1 }, + { "startOffset": 5207, "endOffset": 5332, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 341, "endOffset": 407, "count": 7 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 421, "endOffset": 511, "count": 1 }, + { "startOffset": 456, "endOffset": 510, "count": 6 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 528, "endOffset": 805, "count": 1 }, + { "startOffset": 583, "endOffset": 609, "count": 0 }, + { "startOffset": 650, "endOffset": 794, "count": 6 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 716, "endOffset": 729, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 823, "endOffset": 884, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "QueueJobDiscardedError", + "ranges": [{ "startOffset": 967, "endOffset": 993, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "QueueJobFailedError", + "ranges": [{ "startOffset": 1014, "endOffset": 1037, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getQueueWorkers", + "ranges": [{ "startOffset": 1054, "endOffset": 1073, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "removeQueueWorker", + "ranges": [{ "startOffset": 1092, "endOffset": 1113, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "runQueueJob", + "ranges": [{ "startOffset": 1126, "endOffset": 1141, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "wireQueueWorker", + "ranges": [{ "startOffset": 1158, "endOffset": 1177, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1546, "endOffset": 1593, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "QueueWorkerNotFoundError", + "ranges": [{ "startOffset": 1593, "endOffset": 1655, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1722, "endOffset": 1764, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "QueueJobFailedError", + "ranges": [{ "startOffset": 1764, "endOffset": 1883, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1953, "endOffset": 1998, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "QueueJobDiscardedError", + "ranges": [{ "startOffset": 1998, "endOffset": 2123, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 2153, "endOffset": 2803, "count": 1 }, + { "startOffset": 2294, "endOffset": 2442, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "getQueueWorkers", + "ranges": [{ "startOffset": 2823, "endOffset": 2920, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "removeQueueWorker", + "ranges": [{ "startOffset": 2962, "endOffset": 3214, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "runQueueJob", + "ranges": [{ "startOffset": 3260, "endOffset": 5172, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "866", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/wirings/queue/validate-worker-config.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 6012, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 147, "endOffset": 2081, "count": 1 }, + { "startOffset": 2037, "endOffset": 2078, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 351, "endOffset": 417, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 431, "endOffset": 521, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 538, "endOffset": 815, "count": 1 }, + { "startOffset": 593, "endOffset": 619, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 726, "endOffset": 739, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 833, "endOffset": 894, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "validateWorkerConfig", + "ranges": [{ "startOffset": 995, "endOffset": 1019, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "validateWorkerConfig", + "ranges": [{ "startOffset": 1082, "endOffset": 1984, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "867", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/wirings/queue/register-queue-helper.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 5454, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 146, "endOffset": 2147, "count": 1 }, + { "startOffset": 2103, "endOffset": 2144, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 350, "endOffset": 416, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 430, "endOffset": 520, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 537, "endOffset": 814, "count": 1 }, + { "startOffset": 592, "endOffset": 618, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 725, "endOffset": 738, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 832, "endOffset": 893, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "registerQueueWorkers", + "ranges": [{ "startOffset": 992, "endOffset": 1016, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "registerQueueWorkers", + "ranges": [{ "startOffset": 1204, "endOffset": 2050, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "868", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/.pikku/mcp/pikku-mcp-types.gen.ts", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 12170, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 130, "endOffset": 1939, "count": 1 }, + { "startOffset": 1829, "endOffset": 1936, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 334, "endOffset": 400, "count": 5 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 414, "endOffset": 504, "count": 1 }, + { "startOffset": 449, "endOffset": 503, "count": 5 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 521, "endOffset": 798, "count": 1 }, + { "startOffset": 576, "endOffset": 602, "count": 0 }, + { "startOffset": 643, "endOffset": 787, "count": 5 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 709, "endOffset": 722, "count": 6 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 816, "endOffset": 877, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "pikkuMCPPromptFunc", + "ranges": [{ "startOffset": 970, "endOffset": 992, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "pikkuMCPResourceFunc", + "ranges": [{ "startOffset": 1014, "endOffset": 1038, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "pikkuMCPToolFunc", + "ranges": [{ "startOffset": 1056, "endOffset": 1076, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "wireMCPPrompt", + "ranges": [{ "startOffset": 1091, "endOffset": 1108, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "wireMCPResource", + "ranges": [{ "startOffset": 1125, "endOffset": 1144, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1275, "endOffset": 1333, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1380, "endOffset": 1432, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "pikkuMCPPromptFunc", + "ranges": [ + { "startOffset": 1450, "endOffset": 1528, "count": 1 }, + { "startOffset": 1522, "endOffset": 1527, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "pikkuMCPToolFunc", + "ranges": [ + { "startOffset": 1576, "endOffset": 1652, "count": 2 }, + { "startOffset": 1639, "endOffset": 1646, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "pikkuMCPResourceFunc", + "ranges": [ + { "startOffset": 1696, "endOffset": 1776, "count": 1 }, + { "startOffset": 1770, "endOffset": 1775, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "869", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/wirings/mcp/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2557, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 128, "endOffset": 1766, "count": 1 }, + { "startOffset": 1591, "endOffset": 1763, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 334, "endOffset": 424, "count": 1 }, + { "startOffset": 369, "endOffset": 423, "count": 10 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 441, "endOffset": 718, "count": 1 }, + { "startOffset": 496, "endOffset": 522, "count": 0 }, + { "startOffset": 563, "endOffset": 707, "count": 10 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 629, "endOffset": 642, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 736, "endOffset": 797, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "MCPEndpointRegistry", + "ranges": [{ "startOffset": 859, "endOffset": 911, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "MCPError", + "ranges": [{ "startOffset": 921, "endOffset": 951, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getMCPPromptsMeta", + "ranges": [{ "startOffset": 970, "endOffset": 1010, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getMCPResourcesMeta", + "ranges": [{ "startOffset": 1031, "endOffset": 1073, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getMCPToolsMeta", + "ranges": [{ "startOffset": 1090, "endOffset": 1128, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "runMCPPrompt", + "ranges": [{ "startOffset": 1142, "endOffset": 1176, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "runMCPResource", + "ranges": [{ "startOffset": 1192, "endOffset": 1228, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "runMCPTool", + "ranges": [{ "startOffset": 1240, "endOffset": 1272, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "wireMCPPrompt", + "ranges": [{ "startOffset": 1287, "endOffset": 1322, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "wireMCPResource", + "ranges": [{ "startOffset": 1339, "endOffset": 1376, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "870", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/wirings/mcp/mcp-endpoint-registry.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 11423, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 144, "endOffset": 3396, "count": 1 }, + { "startOffset": 3353, "endOffset": 3393, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 348, "endOffset": 414, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 428, "endOffset": 518, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 535, "endOffset": 812, "count": 1 }, + { "startOffset": 590, "endOffset": 616, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 723, "endOffset": 736, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 830, "endOffset": 891, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "MCPEndpointRegistry", + "ranges": [{ "startOffset": 989, "endOffset": 1012, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1100, "endOffset": 1142, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1142, "endOffset": 1234, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "loadFromMCPJson", + "ranges": [{ "startOffset": 1235, "endOffset": 2100, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setResourcesMeta", + "ranges": [{ "startOffset": 2100, "endOffset": 2147, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setToolsMeta", + "ranges": [{ "startOffset": 2147, "endOffset": 2186, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setPromptsMeta", + "ranges": [{ "startOffset": 2186, "endOffset": 2229, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getTools", + "ranges": [{ "startOffset": 2229, "endOffset": 2306, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getResources", + "ranges": [{ "startOffset": 2306, "endOffset": 2364, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getPrompts", + "ranges": [{ "startOffset": 2364, "endOffset": 2418, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getTool", + "ranges": [{ "startOffset": 2418, "endOffset": 2460, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getResource", + "ranges": [{ "startOffset": 2460, "endOffset": 2510, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getPrompt", + "ranges": [{ "startOffset": 2510, "endOffset": 2556, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hasResource", + "ranges": [{ "startOffset": 2556, "endOffset": 2608, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hasTool", + "ranges": [{ "startOffset": 2608, "endOffset": 2652, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hasPrompt", + "ranges": [{ "startOffset": 2652, "endOffset": 2700, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "enableTools", + "ranges": [{ "startOffset": 2700, "endOffset": 2901, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "enablePrompts", + "ranges": [{ "startOffset": 2901, "endOffset": 3118, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "enableResources", + "ranges": [{ "startOffset": 3118, "endOffset": 3351, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "871", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/wirings/mcp/mcp-runner.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 25138, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 133, "endOffset": 8219, "count": 1 }, + { "startOffset": 8034, "endOffset": 8216, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 337, "endOffset": 403, "count": 12 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 417, "endOffset": 507, "count": 1 }, + { "startOffset": 452, "endOffset": 506, "count": 11 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 524, "endOffset": 801, "count": 1 }, + { "startOffset": 579, "endOffset": 605, "count": 0 }, + { "startOffset": 646, "endOffset": 790, "count": 11 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 712, "endOffset": 725, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 819, "endOffset": 880, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "MCPError", + "ranges": [{ "startOffset": 945, "endOffset": 957, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getMCPPrompts", + "ranges": [{ "startOffset": 972, "endOffset": 989, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getMCPPromptsMeta", + "ranges": [{ "startOffset": 1008, "endOffset": 1029, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getMCPResources", + "ranges": [{ "startOffset": 1046, "endOffset": 1065, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getMCPResourcesMeta", + "ranges": [{ "startOffset": 1086, "endOffset": 1109, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getMCPToolsMeta", + "ranges": [{ "startOffset": 1126, "endOffset": 1145, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "runMCPPrompt", + "ranges": [{ "startOffset": 1159, "endOffset": 1175, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "runMCPResource", + "ranges": [{ "startOffset": 1191, "endOffset": 1209, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "runMCPTool", + "ranges": [{ "startOffset": 1221, "endOffset": 1235, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "wireMCPPrompt", + "ranges": [{ "startOffset": 1250, "endOffset": 1267, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "wireMCPResource", + "ranges": [{ "startOffset": 1284, "endOffset": 1303, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1807, "endOffset": 1838, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1838, "endOffset": 1843, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "MCPError", + "ranges": [{ "startOffset": 1844, "endOffset": 1965, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 1995, "endOffset": 2615, "count": 1 }, + { "startOffset": 2164, "endOffset": 2311, "count": 0 }, + { "startOffset": 2504, "endOffset": 2572, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 2662, "endOffset": 3247, "count": 1 }, + { "startOffset": 2818, "endOffset": 2962, "count": 0 }, + { "startOffset": 3144, "endOffset": 3209, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "runMCPResource", + "ranges": [{ "startOffset": 3265, "endOffset": 4186, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "runMCPTool", + "ranges": [{ "startOffset": 4226, "endOffset": 4430, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "runMCPPrompt", + "ranges": [{ "startOffset": 4462, "endOffset": 4755, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "runMCPPikkuFunc", + "ranges": [{ "startOffset": 4791, "endOffset": 7389, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 7460, "endOffset": 7529, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 7582, "endOffset": 7655, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 7708, "endOffset": 7777, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 7824, "endOffset": 7891, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 7940, "endOffset": 8011, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "872", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/.pikku/cli/pikku-cli-types.gen.ts", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 8372, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 130, "endOffset": 1585, "count": 1 }, + { "startOffset": 1505, "endOffset": 1582, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 334, "endOffset": 400, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 414, "endOffset": 504, "count": 1 }, + { "startOffset": 449, "endOffset": 503, "count": 4 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 521, "endOffset": 798, "count": 1 }, + { "startOffset": 576, "endOffset": 602, "count": 0 }, + { "startOffset": 643, "endOffset": 787, "count": 4 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 709, "endOffset": 722, "count": 6 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 816, "endOffset": 877, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "defineCLICommands", + "ranges": [{ "startOffset": 969, "endOffset": 990, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pikkuCLICommand", + "ranges": [{ "startOffset": 1007, "endOffset": 1026, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "pikkuCLIRender", + "ranges": [{ "startOffset": 1042, "endOffset": 1060, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "wireCLI", + "ranges": [{ "startOffset": 1069, "endOffset": 1080, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1210, "endOffset": 1233, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1273, "endOffset": 1307, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1348, "endOffset": 1371, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1422, "endOffset": 1482, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "873", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/wirings/cli/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2318, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 128, "endOffset": 1611, "count": 1 }, + { "startOffset": 1475, "endOffset": 1608, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 334, "endOffset": 424, "count": 1 }, + { "startOffset": 369, "endOffset": 423, "count": 8 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 441, "endOffset": 718, "count": 1 }, + { "startOffset": 496, "endOffset": 522, "count": 0 }, + { "startOffset": 563, "endOffset": 707, "count": 8 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 629, "endOffset": 642, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 736, "endOffset": 797, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "CLIError", + "ranges": [{ "startOffset": 848, "endOffset": 878, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "defineCLICommands", + "ranges": [{ "startOffset": 897, "endOffset": 945, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "executeCLI", + "ranges": [{ "startOffset": 957, "endOffset": 989, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "generateCommandHelp", + "ranges": [{ "startOffset": 1010, "endOffset": 1055, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseCLIArguments", + "ranges": [{ "startOffset": 1074, "endOffset": 1117, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pikkuCLIRender", + "ranges": [{ "startOffset": 1133, "endOffset": 1169, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "runCLICommand", + "ranges": [{ "startOffset": 1184, "endOffset": 1219, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "wireCLI", + "ranges": [{ "startOffset": 1228, "endOffset": 1257, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "874", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/wirings/cli/cli-runner.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 39304, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 133, "endOffset": 10253, "count": 1 }, + { "startOffset": 10173, "endOffset": 10250, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 337, "endOffset": 403, "count": 9 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 417, "endOffset": 507, "count": 1 }, + { "startOffset": 452, "endOffset": 506, "count": 5 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 524, "endOffset": 801, "count": 1 }, + { "startOffset": 579, "endOffset": 605, "count": 0 }, + { "startOffset": 646, "endOffset": 790, "count": 5 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 712, "endOffset": 725, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 819, "endOffset": 880, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "CLIError", + "ranges": [{ "startOffset": 945, "endOffset": 957, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "executeCLI", + "ranges": [{ "startOffset": 969, "endOffset": 983, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pikkuCLIRender", + "ranges": [{ "startOffset": 999, "endOffset": 1017, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "runCLICommand", + "ranges": [{ "startOffset": 1032, "endOffset": 1049, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "wireCLI", + "ranges": [{ "startOffset": 1058, "endOffset": 1069, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1539, "endOffset": 1570, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1570, "endOffset": 1578, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "CLIError", + "ranges": [{ "startOffset": 1579, "endOffset": 1670, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1704, "endOffset": 1757, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 1802, "endOffset": 2393, "count": 1 }, + { "startOffset": 1874, "endOffset": 1878, "count": 0 }, + { "startOffset": 1915, "endOffset": 2057, "count": 0 }, + { "startOffset": 2128, "endOffset": 2132, "count": 0 }, + { "startOffset": 2182, "endOffset": 2203, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "unwrapFunc", + "ranges": [ + { "startOffset": 2405, "endOffset": 2723, "count": 2 }, + { "startOffset": 2465, "endOffset": 2487, "count": 0 }, + { "startOffset": 2708, "endOffset": 2722, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "registerCLICommands", + "ranges": [ + { "startOffset": 2755, "endOffset": 4352, "count": 1 }, + { "startOffset": 2966, "endOffset": 4351, "count": 2 }, + { "startOffset": 3113, "endOffset": 3166, "count": 0 }, + { "startOffset": 3219, "endOffset": 3457, "count": 0 }, + { "startOffset": 3519, "endOffset": 3523, "count": 1 }, + { "startOffset": 3523, "endOffset": 3526, "count": 0 }, + { "startOffset": 3718, "endOffset": 3755, "count": 1 }, + { "startOffset": 3862, "endOffset": 4009, "count": 0 }, + { "startOffset": 4277, "endOffset": 4350, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "pluckCLIData", + "ranges": [{ "startOffset": 4402, "endOffset": 5157, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "runCLICommand", + "ranges": [{ "startOffset": 5193, "endOffset": 7974, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8040, "endOffset": 8067, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "executeCLI", + "ranges": [{ "startOffset": 8086, "endOffset": 10140, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "875", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/services/local-variables.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3682, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 135, "endOffset": 1635, "count": 1 }, + { "startOffset": 1590, "endOffset": 1632, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 339, "endOffset": 405, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 419, "endOffset": 509, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 526, "endOffset": 803, "count": 1 }, + { "startOffset": 581, "endOffset": 607, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 714, "endOffset": 727, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 821, "endOffset": 882, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "LocalVariablesService", + "ranges": [{ "startOffset": 970, "endOffset": 995, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1079, "endOffset": 1123, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1123, "endOffset": 1132, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "LocalVariablesService", + "ranges": [{ "startOffset": 1133, "endOffset": 1193, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getAll", + "ranges": [{ "startOffset": 1193, "endOffset": 1228, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1228, "endOffset": 1266, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getJSON", + "ranges": [{ "startOffset": 1266, "endOffset": 1370, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 1370, "endOffset": 1413, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setJSON", + "ranges": [{ "startOffset": 1413, "endOffset": 1476, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "has", + "ranges": [{ "startOffset": 1476, "endOffset": 1547, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "delete", + "ranges": [{ "startOffset": 1547, "endOffset": 1588, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "876", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/wirings/cli/command-parser.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 39779, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 137, "endOffset": 9476, "count": 1 }, + { "startOffset": 9415, "endOffset": 9473, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 341, "endOffset": 407, "count": 10 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 421, "endOffset": 511, "count": 1 }, + { "startOffset": 456, "endOffset": 510, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 528, "endOffset": 805, "count": 1 }, + { "startOffset": 583, "endOffset": 609, "count": 0 }, + { "startOffset": 650, "endOffset": 794, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 716, "endOffset": 729, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 823, "endOffset": 884, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "generateCommandHelp", + "ranges": [{ "startOffset": 968, "endOffset": 991, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseCLIArguments", + "ranges": [{ "startOffset": 1010, "endOffset": 1031, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toCamelCase", + "ranges": [{ "startOffset": 1086, "endOffset": 1167, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseCLIArguments", + "ranges": [{ "startOffset": 1201, "endOffset": 4298, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getCommandMeta", + "ranges": [{ "startOffset": 4344, "endOffset": 4622, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "collectAvailableOptions", + "ranges": [{ "startOffset": 4662, "endOffset": 5037, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "findLongOption", + "ranges": [{ "startOffset": 5095, "endOffset": 5242, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseOptionValue", + "ranges": [{ "startOffset": 5282, "endOffset": 5784, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mapPositionalArguments", + "ranges": [{ "startOffset": 5828, "endOffset": 6444, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "applyOptionDefaults", + "ranges": [{ "startOffset": 6500, "endOffset": 7149, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "generateCommandHelp", + "ranges": [{ "startOffset": 7199, "endOffset": 8876, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "formatOptions", + "ranges": [{ "startOffset": 8926, "endOffset": 9376, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "877", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/wirings/cli/define-cli-commands.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2390, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 142, "endOffset": 1203, "count": 1 }, + { "startOffset": 1162, "endOffset": 1200, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 346, "endOffset": 412, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 426, "endOffset": 516, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 533, "endOffset": 810, "count": 1 }, + { "startOffset": 588, "endOffset": 614, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 721, "endOffset": 734, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 828, "endOffset": 889, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "defineCLICommands", + "ranges": [{ "startOffset": 981, "endOffset": 1002, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "defineCLICommands", + "ranges": [{ "startOffset": 1062, "endOffset": 1115, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "878", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/.pikku/console/pikku-node-types.gen.ts", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1452, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 135, "endOffset": 797, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 344, "endOffset": 621, "count": 1 }, + { "startOffset": 399, "endOffset": 425, "count": 0 }, + { "startOffset": 466, "endOffset": 610, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 532, "endOffset": 545, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 639, "endOffset": 700, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "879", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/.pikku/secrets/pikku-secret-types.gen.ts", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1714, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 137, "endOffset": 1071, "count": 1 }, + { "startOffset": 1037, "endOffset": 1068, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 343, "endOffset": 433, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 450, "endOffset": 727, "count": 1 }, + { "startOffset": 505, "endOffset": 531, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 638, "endOffset": 651, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 745, "endOffset": 806, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "wireSecret", + "ranges": [{ "startOffset": 897, "endOffset": 925, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "880", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/wirings/secret/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1819, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 131, "endOffset": 1264, "count": 1 }, + { "startOffset": 1192, "endOffset": 1261, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 337, "endOffset": 427, "count": 1 }, + { "startOffset": 372, "endOffset": 426, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 444, "endOffset": 721, "count": 1 }, + { "startOffset": 499, "endOffset": 525, "count": 0 }, + { "startOffset": 566, "endOffset": 710, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 632, "endOffset": 645, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 739, "endOffset": 800, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "validateAndBuildSecretDefinitionsMeta", + "ranges": [{ "startOffset": 886, "endOffset": 962, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "wireSecret", + "ranges": [{ "startOffset": 974, "endOffset": 1008, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "881", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/wirings/secret/secret.types.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1567, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 138, "endOffset": 1108, "count": 1 }, + { "startOffset": 1074, "endOffset": 1105, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 342, "endOffset": 408, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 422, "endOffset": 512, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 529, "endOffset": 806, "count": 1 }, + { "startOffset": 584, "endOffset": 610, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 717, "endOffset": 730, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 824, "endOffset": 885, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "wireSecret", + "ranges": [{ "startOffset": 956, "endOffset": 970, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1047, "endOffset": 1058, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "882", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/wirings/secret/validate-secret-definitions.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 8295, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 153, "endOffset": 2908, "count": 1 }, + { "startOffset": 2847, "endOffset": 2905, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 357, "endOffset": 423, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 437, "endOffset": 527, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 544, "endOffset": 821, "count": 1 }, + { "startOffset": 599, "endOffset": 625, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 732, "endOffset": 745, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 839, "endOffset": 900, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "validateAndBuildSecretDefinitionsMeta", + "ranges": [{ "startOffset": 1028, "endOffset": 1069, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "validateAndBuildSecretDefinitionsMeta", + "ranges": [{ "startOffset": 1137, "endOffset": 2760, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "883", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/.pikku/schemas/register.gen.ts", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 31424, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 127, "endOffset": 12061, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 402, "endOffset": 679, "count": 66 }, + { "startOffset": 457, "endOffset": 483, "count": 0 }, + { "startOffset": 524, "endOffset": 668, "count": 355 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 590, "endOffset": 603, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toESM", + "ranges": [ + { "startOffset": 692, "endOffset": 880, "count": 66 }, + { "startOffset": 762, "endOffset": 765, "count": 0 }, + { "startOffset": 867, "endOffset": 874, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "884", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/.pikku/http/pikku-http-wirings.gen.ts", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1674, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 134, "endOffset": 651, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "885", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/scaffold/agent.gen.ts", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 14873, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 122, "endOffset": 5154, "count": 1 }, + { "startOffset": 4976, "endOffset": 5151, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 339, "endOffset": 405, "count": 8 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 419, "endOffset": 509, "count": 1 }, + { "startOffset": 454, "endOffset": 508, "count": 9 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 526, "endOffset": 803, "count": 1 }, + { "startOffset": 581, "endOffset": 607, "count": 0 }, + { "startOffset": 648, "endOffset": 792, "count": 9 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 714, "endOffset": 727, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 821, "endOffset": 882, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "agentApproveCaller", + "ranges": [{ "startOffset": 955, "endOffset": 977, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "agentCaller", + "ranges": [{ "startOffset": 990, "endOffset": 1005, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "agentResumeCaller", + "ranges": [{ "startOffset": 1024, "endOffset": 1045, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "agentRoutes", + "ranges": [{ "startOffset": 1058, "endOffset": 1073, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "agentStreamCaller", + "ranges": [{ "startOffset": 1092, "endOffset": 1113, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "deleteAgentThread", + "ranges": [{ "startOffset": 1132, "endOffset": 1153, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "getAgentThreadMessages", + "ranges": [{ "startOffset": 1177, "endOffset": 1203, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "getAgentThreadRuns", + "ranges": [{ "startOffset": 1223, "endOffset": 1245, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "getAgentThreads", + "ranges": [{ "startOffset": 1262, "endOffset": 1281, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1554, "endOffset": 1700, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1822, "endOffset": 1964, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2087, "endOffset": 2198, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2320, "endOffset": 2437, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2755, "endOffset": 3028, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3305, "endOffset": 3501, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3773, "endOffset": 3965, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4214, "endOffset": 4428, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "886", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/errors/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1852, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 123, "endOffset": 1353, "count": 1 }, + { "startOffset": 1274, "endOffset": 1350, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 329, "endOffset": 419, "count": 1 }, + { "startOffset": 364, "endOffset": 418, "count": 3 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 436, "endOffset": 713, "count": 3 }, + { "startOffset": 491, "endOffset": 517, "count": 0 }, + { "startOffset": 558, "endOffset": 702, "count": 85 }, + { "startOffset": 587, "endOffset": 601, "count": 84 }, + { "startOffset": 602, "endOffset": 702, "count": 84 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 624, "endOffset": 637, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__reExport", + "ranges": [{ "startOffset": 729, "endOffset": 845, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 863, "endOffset": 924, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "PikkuError", + "ranges": [{ "startOffset": 983, "endOffset": 1018, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addError", + "ranges": [{ "startOffset": 1028, "endOffset": 1061, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addErrors", + "ranges": [{ "startOffset": 1072, "endOffset": 1106, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "887", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/scaffold/console.gen.ts", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 10167, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 124, "endOffset": 3680, "count": 1 }, + { "startOffset": 3529, "endOffset": 3677, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 341, "endOffset": 407, "count": 5 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 421, "endOffset": 511, "count": 1 }, + { "startOffset": 456, "endOffset": 510, "count": 6 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 528, "endOffset": 805, "count": 1 }, + { "startOffset": 583, "endOffset": 609, "count": 0 }, + { "startOffset": 650, "endOffset": 794, "count": 6 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 716, "endOffset": 729, "count": 5 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 823, "endOffset": 884, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "consoleRoutes", + "ranges": [{ "startOffset": 956, "endOffset": 973, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pikkuConsoleGetSecret", + "ranges": [{ "startOffset": 996, "endOffset": 1021, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "pikkuConsoleGetVariable", + "ranges": [{ "startOffset": 1046, "endOffset": 1073, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "pikkuConsoleHasSecret", + "ranges": [{ "startOffset": 1096, "endOffset": 1121, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "pikkuConsoleSetSecret", + "ranges": [{ "startOffset": 1144, "endOffset": 1169, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "pikkuConsoleSetVariable", + "ranges": [{ "startOffset": 1194, "endOffset": 1221, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1510, "endOffset": 1611, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1801, "endOffset": 2079, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2261, "endOffset": 2435, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2638, "endOffset": 2730, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2916, "endOffset": 3113, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "888", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/scaffold/rpc-public.gen.ts", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2894, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 127, "endOffset": 1427, "count": 1 }, + { "startOffset": 1394, "endOffset": 1424, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 344, "endOffset": 410, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 424, "endOffset": 514, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 531, "endOffset": 808, "count": 1 }, + { "startOffset": 586, "endOffset": 612, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 719, "endOffset": 732, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 826, "endOffset": 887, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "rpcCaller", + "ranges": [{ "startOffset": 961, "endOffset": 974, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1202, "endOffset": 1281, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "889", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/scaffold/rpc-remote.gen.ts", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3329, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 127, "endOffset": 1582, "count": 1 }, + { "startOffset": 1542, "endOffset": 1579, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 344, "endOffset": 410, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 424, "endOffset": 514, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 531, "endOffset": 808, "count": 1 }, + { "startOffset": 586, "endOffset": 612, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 719, "endOffset": 732, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 826, "endOffset": 887, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "remoteRPCHandler", + "ranges": [{ "startOffset": 968, "endOffset": 988, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1268, "endOffset": 1346, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "890", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/scaffold/workflow-routes.gen.ts", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 23663, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 132, "endOffset": 6512, "count": 1 }, + { "startOffset": 6377, "endOffset": 6509, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 349, "endOffset": 415, "count": 8 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 429, "endOffset": 519, "count": 1 }, + { "startOffset": 464, "endOffset": 518, "count": 6 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 536, "endOffset": 813, "count": 1 }, + { "startOffset": 591, "endOffset": 617, "count": 0 }, + { "startOffset": 658, "endOffset": 802, "count": 6 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 724, "endOffset": 737, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 831, "endOffset": 892, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "graphStarter", + "ranges": [{ "startOffset": 979, "endOffset": 995, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "workflowRunner", + "ranges": [{ "startOffset": 1011, "endOffset": 1029, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "workflowStarter", + "ranges": [{ "startOffset": 1046, "endOffset": 1065, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "workflowStatusChecker", + "ranges": [{ "startOffset": 1088, "endOffset": 1113, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "workflowStatusStream", + "ranges": [{ "startOffset": 1135, "endOffset": 1159, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "workflowStatusStreamFull", + "ranges": [{ "startOffset": 1185, "endOffset": 1213, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "assertWorkflowService", + "ranges": [{ "startOffset": 1391, "endOffset": 1534, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "assertWorkflowRunService", + "ranges": [{ "startOffset": 1588, "endOffset": 1743, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1912, "endOffset": 2058, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2177, "endOffset": 2341, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2467, "endOffset": 2664, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2789, "endOffset": 3983, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4112, "endOffset": 5398, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5500, "endOffset": 5672, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "891", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/wirings/kanban.http.ts", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3944, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 123, "endOffset": 1957, "count": 1 }, + { "startOffset": 1921, "endOffset": 1954, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 342, "endOffset": 432, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 449, "endOffset": 726, "count": 1 }, + { "startOffset": 504, "endOffset": 530, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 637, "endOffset": 650, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 744, "endOffset": 805, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "kanbanRoutes", + "ranges": [{ "startOffset": 876, "endOffset": 892, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "892", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/functions/list-cards.function.ts", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 4542, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 133, "endOffset": 2083, "count": 1 }, + { "startOffset": 2019, "endOffset": 2080, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 350, "endOffset": 416, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 430, "endOffset": 520, "count": 1 }, + { "startOffset": 465, "endOffset": 519, "count": 3 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 537, "endOffset": 814, "count": 1 }, + { "startOffset": 592, "endOffset": 618, "count": 0 }, + { "startOffset": 659, "endOffset": 803, "count": 3 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 725, "endOffset": 738, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 832, "endOffset": 893, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "ListCardsInput", + "ranges": [{ "startOffset": 982, "endOffset": 1000, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ListCardsOutput", + "ranges": [{ "startOffset": 1017, "endOffset": 1036, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "listCards", + "ranges": [{ "startOffset": 1047, "endOffset": 1060, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 1724, "endOffset": 2007, "count": 2 }, + { "startOffset": 1773, "endOffset": 1781, "count": 0 }, + { "startOffset": 1872, "endOffset": 1911, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "893", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/index.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 1486, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 88, "endOffset": 405, "count": 238 }, + { "startOffset": 232, "endOffset": 247, "count": 234 }, + { "startOffset": 248, "endOffset": 284, "count": 4 }, + { "startOffset": 264, "endOffset": 284, "count": 0 }, + { "startOffset": 287, "endOffset": 363, "count": 4 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 327, "endOffset": 354, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__exportStar", + "ranges": [ + { "startOffset": 1091, "endOffset": 1242, "count": 1 }, + { "startOffset": 1135, "endOffset": 1240, "count": 238 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "894", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/classic/external.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5444, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 88, "endOffset": 405, "count": 213 }, + { "startOffset": 232, "endOffset": 247, "count": 29 }, + { "startOffset": 248, "endOffset": 284, "count": 184 }, + { "startOffset": 264, "endOffset": 284, "count": 0 }, + { "startOffset": 287, "endOffset": 363, "count": 184 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 327, "endOffset": 354, "count": 190 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 4 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__exportStar", + "ranges": [ + { "startOffset": 1091, "endOffset": 1242, "count": 5 }, + { "startOffset": 1135, "endOffset": 1240, "count": 215 }, + { "startOffset": 1209, "endOffset": 1240, "count": 213 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 1300, "endOffset": 1381, "count": 1 }, + { "startOffset": 1352, "endOffset": 1357, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2549, "endOffset": 2598, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2671, "endOffset": 2714, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2785, "endOffset": 2826, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2898, "endOffset": 2940, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3011, "endOffset": 3052, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3123, "endOffset": 3164, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3234, "endOffset": 3274, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3346, "endOffset": 3388, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3465, "endOffset": 3512, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3590, "endOffset": 3638, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3714, "endOffset": 3760, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3837, "endOffset": 3884, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3962, "endOffset": 4010, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 4079, "endOffset": 4118, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 4188, "endOffset": 4228, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 4386, "endOffset": 4450, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 4592, "endOffset": 4652, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 4924, "endOffset": 4971, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 5046, "endOffset": 5089, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 5164, "endOffset": 5207, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 5286, "endOffset": 5333, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "895", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/core/index.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 2609, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 88, "endOffset": 405, "count": 268 }, + { "startOffset": 232, "endOffset": 247, "count": 1 }, + { "startOffset": 248, "endOffset": 284, "count": 267 }, + { "startOffset": 264, "endOffset": 284, "count": 0 }, + { "startOffset": 287, "endOffset": 363, "count": 267 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 327, "endOffset": 354, "count": 988 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__exportStar", + "ranges": [ + { "startOffset": 759, "endOffset": 910, "count": 10 }, + { "startOffset": 803, "endOffset": 908, "count": 268 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 962, "endOffset": 1242, "count": 4 }, + { "startOffset": 1021, "endOffset": 1241, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2248, "endOffset": 2312, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2469, "endOffset": 2539, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "896", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/core/core.cjs", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2850, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "$constructor", + "ranges": [ + { "startOffset": 365, "endOffset": 2037, "count": 174 }, + { "startOffset": 1258, "endOffset": 1266, "count": 2 }, + { "startOffset": 1267, "endOffset": 1276, "count": 172 } + ], + "isBlockCoverage": true + }, + { + "functionName": "init", + "ranges": [ + { "startOffset": 420, "endOffset": 1169, "count": 1854 }, + { "startOffset": 471, "endOffset": 722, "count": 329 }, + { "startOffset": 763, "endOffset": 794, "count": 413 }, + { "startOffset": 794, "endOffset": 1028, "count": 1441 }, + { "startOffset": 1028, "endOffset": 1163, "count": 0 }, + { "startOffset": 1163, "endOffset": 1168, "count": 1441 } + ], + "isBlockCoverage": true + }, + { + "functionName": "_", + "ranges": [ + { "startOffset": 1390, "endOffset": 1670, "count": 329 }, + { "startOffset": 1451, "endOffset": 1459, "count": 0 }, + { "startOffset": 1460, "endOffset": 1478, "count": 0 }, + { "startOffset": 1546, "endOffset": 1567, "count": 18 }, + { "startOffset": 1614, "endOffset": 1643, "count": 311 } + ], + "isBlockCoverage": true + }, + { + "functionName": "value", + "ranges": [{ "startOffset": 1792, "endOffset": 1957, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "$ZodAsyncError", + "ranges": [{ "startOffset": 2202, "endOffset": 2314, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "$ZodEncodeError", + "ranges": [{ "startOffset": 2400, "endOffset": 2541, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "config", + "ranges": [{ "startOffset": 2711, "endOffset": 2849, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "897", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/core/parse.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 6481, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 3 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 1801, "endOffset": 2316, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1811, "endOffset": 2316, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parseAsync", + "ranges": [{ "startOffset": 2422, "endOffset": 2918, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2432, "endOffset": 2918, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_safeParse", + "ranges": [{ "startOffset": 3043, "endOffset": 3553, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3053, "endOffset": 3553, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_safeParseAsync", + "ranges": [{ "startOffset": 3679, "endOffset": 4151, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3689, "endOffset": 4151, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_encode", + "ranges": [{ "startOffset": 4289, "endOffset": 4472, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4299, "endOffset": 4472, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_decode", + "ranges": [{ "startOffset": 4578, "endOffset": 4675, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4588, "endOffset": 4675, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_encodeAsync", + "ranges": [{ "startOffset": 4786, "endOffset": 4980, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4796, "endOffset": 4980, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_decodeAsync", + "ranges": [{ "startOffset": 5111, "endOffset": 5219, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5121, "endOffset": 5219, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_safeEncode", + "ranges": [{ "startOffset": 5349, "endOffset": 5536, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5359, "endOffset": 5536, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_safeDecode", + "ranges": [{ "startOffset": 5662, "endOffset": 5763, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5672, "endOffset": 5763, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_safeEncodeAsync", + "ranges": [{ "startOffset": 5894, "endOffset": 6092, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5904, "endOffset": 6092, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_safeDecodeAsync", + "ranges": [{ "startOffset": 6243, "endOffset": 6355, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6253, "endOffset": 6355, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "898", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/core/errors.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 7739, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "initializer", + "ranges": [{ "startOffset": 1446, "endOffset": 1882, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "flattenError", + "ranges": [{ "startOffset": 2057, "endOffset": 2502, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "formatError", + "ranges": [{ "startOffset": 2503, "endOffset": 4172, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "treeifyError", + "ranges": [{ "startOffset": 4173, "endOffset": 6090, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toDotPath", + "ranges": [{ "startOffset": 6721, "endOffset": 7288, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "prettifyError", + "ranges": [{ "startOffset": 7289, "endOffset": 7738, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "899", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/core/util.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 23884, "count": 1 }, + { "startOffset": 6509, "endOffset": 6528, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "assertEqual", + "ranges": [{ "startOffset": 2323, "endOffset": 2368, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "assertNotEqual", + "ranges": [{ "startOffset": 2369, "endOffset": 2417, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "assertIs", + "ranges": [{ "startOffset": 2418, "endOffset": 2445, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "assertNever", + "ranges": [{ "startOffset": 2446, "endOffset": 2535, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "assert", + "ranges": [{ "startOffset": 2536, "endOffset": 2558, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getEnumValues", + "ranges": [{ "startOffset": 2559, "endOffset": 2834, "count": 11 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2649, "endOffset": 2677, "count": 31 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2739, "endOffset": 2783, "count": 31 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2798, "endOffset": 2811, "count": 31 }], + "isBlockCoverage": true + }, + { + "functionName": "joinValues", + "ranges": [{ "startOffset": 2835, "endOffset": 2954, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "jsonStringifyReplacer", + "ranges": [{ "startOffset": 2955, "endOffset": 3085, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cached", + "ranges": [{ "startOffset": 3086, "endOffset": 3419, "count": 101 }], + "isBlockCoverage": true + }, + { + "functionName": "get value", + "ranges": [ + { "startOffset": 3156, "endOffset": 3409, "count": 1 }, + { "startOffset": 3342, "endOffset": 3408, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "nullish", + "ranges": [{ "startOffset": 3420, "endOffset": 3497, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cleanRegex", + "ranges": [{ "startOffset": 3498, "endOffset": 3690, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "floatSafeRemainder", + "ranges": [{ "startOffset": 3691, "endOffset": 4047, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "defineLazy", + "ranges": [{ "startOffset": 4104, "endOffset": 4790, "count": 750 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [ + { "startOffset": 4223, "endOffset": 4561, "count": 320 }, + { "startOffset": 4269, "endOffset": 4402, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 4571, "endOffset": 4751, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "objectClone", + "ranges": [{ "startOffset": 4791, "endOffset": 4913, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "assignProp", + "ranges": [{ "startOffset": 4914, "endOffset": 5101, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mergeDefs", + "ranges": [ + { "startOffset": 5102, "endOffset": 5384, "count": 9 }, + { "startOffset": 5194, "endOffset": 5323, "count": 18 } + ], + "isBlockCoverage": true + }, + { + "functionName": "cloneDef", + "ranges": [{ "startOffset": 5385, "endOffset": 5453, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getElementAtPath", + "ranges": [{ "startOffset": 5454, "endOffset": 5584, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "promiseAllObject", + "ranges": [{ "startOffset": 5585, "endOffset": 5954, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "randomString", + "ranges": [{ "startOffset": 5955, "endOffset": 6184, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "esc", + "ranges": [{ "startOffset": 6185, "endOffset": 6238, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "slugify", + "ranges": [{ "startOffset": 6239, "endOffset": 6424, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "exports.captureStackTrace", + "ranges": [{ "startOffset": 6511, "endOffset": 6528, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isObject", + "ranges": [{ "startOffset": 6531, "endOffset": 6636, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 6665, "endOffset": 7168, "count": 1 }, + { "startOffset": 6871, "endOffset": 6900, "count": 0 }, + { "startOffset": 7009, "endOffset": 7038, "count": 0 }, + { "startOffset": 7127, "endOffset": 7166, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "isPlainObject", + "ranges": [{ "startOffset": 7171, "endOffset": 7708, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "shallowClone", + "ranges": [{ "startOffset": 7709, "endOffset": 7957, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "numKeys", + "ranges": [{ "startOffset": 7958, "endOffset": 8160, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getParsedType", + "ranges": [{ "startOffset": 8183, "endOffset": 9585, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "escapeRegex", + "ranges": [{ "startOffset": 9821, "endOffset": 9905, "count": 32 }], + "isBlockCoverage": true + }, + { + "functionName": "clone", + "ranges": [ + { "startOffset": 9928, "endOffset": 10102, "count": 9 }, + { "startOffset": 10004, "endOffset": 10020, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "normalizeParams", + "ranges": [ + { "startOffset": 10103, "endOffset": 10633, "count": 197 }, + { "startOffset": 10202, "endOffset": 10302, "count": 0 }, + { "startOffset": 10318, "endOffset": 10632, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 10263, "endOffset": 10275, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 10591, "endOffset": 10609, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createTransparentProxy", + "ranges": [{ "startOffset": 10634, "endOffset": 11749, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stringifyPrimitive", + "ranges": [{ "startOffset": 11750, "endOffset": 11949, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "optionalKeys", + "ranges": [{ "startOffset": 11950, "endOffset": 12126, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pick", + "ranges": [{ "startOffset": 12638, "endOffset": 13473, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "omit", + "ranges": [{ "startOffset": 13474, "endOffset": 14321, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "extend", + "ranges": [{ "startOffset": 14322, "endOffset": 15345, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "safeExtend", + "ranges": [{ "startOffset": 15346, "endOffset": 15778, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "merge", + "ranges": [{ "startOffset": 15779, "endOffset": 16354, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "partial", + "ranges": [{ "startOffset": 16355, "endOffset": 18013, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "required", + "ranges": [{ "startOffset": 18014, "endOffset": 19187, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "aborted", + "ranges": [{ "startOffset": 19354, "endOffset": 19604, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "explicitlyAborted", + "ranges": [{ "startOffset": 19802, "endOffset": 20063, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "prefixIssues", + "ranges": [{ "startOffset": 20064, "endOffset": 20255, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "unwrapMessage", + "ranges": [{ "startOffset": 20256, "endOffset": 20360, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "finalizeIssue", + "ranges": [{ "startOffset": 20361, "endOffset": 20932, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getSizableOrigin", + "ranges": [{ "startOffset": 20933, "endOffset": 21167, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getLengthableOrigin", + "ranges": [{ "startOffset": 21168, "endOffset": 21343, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parsedType", + "ranges": [{ "startOffset": 21344, "endOffset": 21934, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "issue", + "ranges": [{ "startOffset": 21935, "endOffset": 22182, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cleanEnum", + "ranges": [{ "startOffset": 22183, "endOffset": 22436, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "base64ToUint8Array", + "ranges": [{ "startOffset": 22464, "endOffset": 22720, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "uint8ArrayToBase64", + "ranges": [{ "startOffset": 22721, "endOffset": 22923, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "base64urlToUint8Array", + "ranges": [{ "startOffset": 22924, "endOffset": 23149, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "uint8ArrayToBase64url", + "ranges": [{ "startOffset": 23150, "endOffset": 23287, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hexToUint8Array", + "ranges": [{ "startOffset": 23288, "endOffset": 23663, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "uint8ArrayToHex", + "ranges": [{ "startOffset": 23664, "endOffset": 23800, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Class", + "ranges": [{ "startOffset": 23833, "endOffset": 23858, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "900", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/core/schemas.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 85629, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 4 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 3243, "endOffset": 8100, "count": 320 }, + { "startOffset": 3281, "endOffset": 3295, "count": 0 }, + { "startOffset": 3502, "endOffset": 3507, "count": 288 }, + { "startOffset": 3617, "endOffset": 3654, "count": 0 }, + { "startOffset": 3684, "endOffset": 3768, "count": 9 }, + { "startOffset": 3798, "endOffset": 4038, "count": 311 }, + { "startOffset": 4038, "endOffset": 7517, "count": 9 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3968, "endOffset": 4030, "count": 311 }], + "isBlockCoverage": true + }, + { + "functionName": "runChecks", + "ranges": [{ "startOffset": 4076, "endOffset": 5802, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "handleCanaryResult", + "ranges": [{ "startOffset": 5839, "endOffset": 6454, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst._zod.run", + "ranges": [{ "startOffset": 6480, "endOffset": 7510, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 7633, "endOffset": 8096, "count": 320 }], + "isBlockCoverage": true + }, + { + "functionName": "validate", + "ranges": [{ "startOffset": 7660, "endOffset": 8045, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 8207, "endOffset": 8246, "count": 9 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8304, "endOffset": 8905, "count": 93 }], + "isBlockCoverage": true + }, + { + "functionName": "inst._zod.parse", + "ranges": [{ "startOffset": 8483, "endOffset": 8902, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8973, "endOffset": 9125, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9177, "endOffset": 9290, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9342, "endOffset": 9890, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9944, "endOffset": 10058, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 10108, "endOffset": 12838, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 12892, "endOffset": 13008, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 13064, "endOffset": 13179, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 13431, "endOffset": 13544, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 13598, "endOffset": 13712, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 13764, "endOffset": 13877, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 13927, "endOffset": 14039, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 14093, "endOffset": 14207, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 14273, "endOffset": 14395, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 14453, "endOffset": 14566, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 14624, "endOffset": 14742, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 14808, "endOffset": 14925, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 14977, "endOffset": 15125, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 15177, "endOffset": 15738, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 15788, "endOffset": 15949, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 16005, "endOffset": 16120, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 16176, "endOffset": 17137, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isValidBase64", + "ranges": [{ "startOffset": 17216, "endOffset": 17564, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 17618, "endOffset": 18079, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isValidBase64URL", + "ranges": [{ "startOffset": 18158, "endOffset": 18435, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 18495, "endOffset": 18968, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 19020, "endOffset": 19133, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isValidJWT", + "ranges": [{ "startOffset": 19209, "endOffset": 19868, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 19916, "endOffset": 20283, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 20363, "endOffset": 20722, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 20778, "endOffset": 21709, "count": 23 }], + "isBlockCoverage": true + }, + { + "functionName": "inst._zod.parse", + "ranges": [{ "startOffset": 20920, "endOffset": 21706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 21777, "endOffset": 21905, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 21963, "endOffset": 22523, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "inst._zod.parse", + "ranges": [{ "startOffset": 22081, "endOffset": 22520, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 22579, "endOffset": 23121, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 23189, "endOffset": 23317, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 23373, "endOffset": 23752, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 23814, "endOffset": 24287, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 24339, "endOffset": 24783, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 24833, "endOffset": 24933, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "inst._zod.parse", + "ranges": [{ "startOffset": 24910, "endOffset": 24930, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 24991, "endOffset": 25091, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "inst._zod.parse", + "ranges": [{ "startOffset": 25068, "endOffset": 25088, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 25145, "endOffset": 25434, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 25486, "endOffset": 25866, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 25918, "endOffset": 26612, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "handleArrayResult", + "ranges": [{ "startOffset": 26615, "endOffset": 26815, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 26867, "endOffset": 27953, "count": 12 }], + "isBlockCoverage": true + }, + { + "functionName": "inst._zod.parse", + "ranges": [{ "startOffset": 26944, "endOffset": 27950, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "handlePropertyResult", + "ranges": [{ "startOffset": 27956, "endOffset": 28824, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "normalizeDef", + "ranges": [{ "startOffset": 28825, "endOffset": 29284, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "handleCatchall", + "ranges": [{ "startOffset": 29285, "endOffset": 30630, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 30684, "endOffset": 33072, "count": 50 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 31014, "endOffset": 31214, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 31270, "endOffset": 31293, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 31341, "endOffset": 31735, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst._zod.parse", + "ranges": [{ "startOffset": 31846, "endOffset": 33069, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 33134, "endOffset": 37520, "count": 50 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 33334, "endOffset": 33357, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "generateFastpass", + "ranges": [{ "startOffset": 33389, "endOffset": 36460, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst._zod.parse", + "ranges": [{ "startOffset": 36742, "endOffset": 37517, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "handleUnionResults", + "ranges": [{ "startOffset": 37523, "endOffset": 38156, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 38208, "endOffset": 40019, "count": 1 }, + { "startOffset": 39118, "endOffset": 39143, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 38303, "endOffset": 38386, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 38430, "endOffset": 38514, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 38558, "endOffset": 38755, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 38800, "endOffset": 39072, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst._zod.parse", + "ranges": [{ "startOffset": 39174, "endOffset": 40016, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "handleExclusiveUnionResults", + "ranges": [{ "startOffset": 40022, "endOffset": 40858, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 40906, "endOffset": 41868, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 41963, "endOffset": 44588, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 44656, "endOffset": 45280, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mergeValues", + "ranges": [{ "startOffset": 45283, "endOffset": 46920, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "handleIntersectionResults", + "ranges": [{ "startOffset": 46921, "endOffset": 48368, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 48420, "endOffset": 51227, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getTupleOptStart", + "ranges": [{ "startOffset": 51230, "endOffset": 51414, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "handleTupleResult", + "ranges": [{ "startOffset": 51415, "endOffset": 51615, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "handleTupleResults", + "ranges": [{ "startOffset": 51616, "endOffset": 52923, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 52977, "endOffset": 59046, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "inst._zod.parse", + "ranges": [{ "startOffset": 53054, "endOffset": 59043, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 59096, "endOffset": 60315, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "handleMapResult", + "ranges": [{ "startOffset": 60318, "endOffset": 61425, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 61473, "endOffset": 62372, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "handleSetResult", + "ranges": [{ "startOffset": 62375, "endOffset": 62536, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 62586, "endOffset": 63300, "count": 11 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 62829, "endOffset": 62871, "count": 31 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 62886, "endOffset": 62953, "count": 31 }, + { "startOffset": 62938, "endOffset": 62952, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "inst._zod.parse", + "ranges": [{ "startOffset": 63002, "endOffset": 63297, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 63358, "endOffset": 64124, "count": 1 }, + { "startOffset": 63446, "endOffset": 63531, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 63667, "endOffset": 63768, "count": 1 }, + { "startOffset": 63719, "endOffset": 63767, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "inst._zod.parse", + "ranges": [{ "startOffset": 63817, "endOffset": 64121, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 64176, "endOffset": 64571, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 64633, "endOffset": 65426, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "handleOptionalResult", + "ranges": [{ "startOffset": 65429, "endOffset": 65627, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 65685, "endOffset": 66704, "count": 64 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 65850, "endOffset": 65970, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 66015, "endOffset": 66172, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst._zod.parse", + "ranges": [{ "startOffset": 66197, "endOffset": 66701, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 66774, "endOffset": 67264, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 67324, "endOffset": 68125, "count": 48 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 67419, "endOffset": 67449, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 67493, "endOffset": 67524, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 67569, "endOffset": 67730, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 67774, "endOffset": 67889, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst._zod.parse", + "ranges": [{ "startOffset": 67914, "endOffset": 68122, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 68183, "endOffset": 69586, "count": 6 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 68344, "endOffset": 68375, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst._zod.parse", + "ranges": [{ "startOffset": 68400, "endOffset": 69583, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "handleDefaultResult", + "ranges": [{ "startOffset": 69589, "endOffset": 69742, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 69800, "endOffset": 70351, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 70417, "endOffset": 70952, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "handleNonOptionalResult", + "ranges": [{ "startOffset": 70955, "endOffset": 71262, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 71318, "endOffset": 71876, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 71930, "endOffset": 73564, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 73614, "endOffset": 74044, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 74096, "endOffset": 75023, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "handlePipeResult", + "ranges": [{ "startOffset": 75026, "endOffset": 75292, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 75344, "endOffset": 76359, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "handleCodecAResult", + "ranges": [{ "startOffset": 76362, "endOffset": 77230, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "handleCodecTxResult", + "ranges": [{ "startOffset": 77231, "endOffset": 77491, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 77553, "endOffset": 77609, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 77669, "endOffset": 78406, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "handleReadonlyResult", + "ranges": [{ "startOffset": 78409, "endOffset": 78521, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 78593, "endOffset": 80473, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 80533, "endOffset": 83234, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 83292, "endOffset": 83519, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 83571, "endOffset": 84542, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 84598, "endOffset": 85071, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "handleRefineResult", + "ranges": [{ "startOffset": 85074, "endOffset": 85628, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "901", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/core/checks.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 21559, "count": 1 }, + { "startOffset": 451, "endOffset": 532, "count": 0 }, + { "startOffset": 708, "endOffset": 750, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 132, "endOffset": 449, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 454, "endOffset": 531, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 615, "endOffset": 706, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 710, "endOffset": 750, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 803, "endOffset": 1083, "count": 3 }, + { "startOffset": 862, "endOffset": 1082, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 1996, "endOffset": 2139, "count": 9 }, + { "startOffset": 2039, "endOffset": 2058, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2303, "endOffset": 3243, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3319, "endOffset": 4261, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4350, "endOffset": 5194, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5272, "endOffset": 8555, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8633, "endOffset": 9648, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9716, "endOffset": 10573, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 10641, "endOffset": 11500, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 11574, "endOffset": 12528, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 12600, "endOffset": 13491, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 13563, "endOffset": 14456, "count": 9 }], + "isBlockCoverage": true + }, + { + "functionName": "when._a.when", + "ranges": [{ "startOffset": 13675, "endOffset": 13793, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 13824, "endOffset": 13996, "count": 9 }], + "isBlockCoverage": true + }, + { + "functionName": "inst._zod.check", + "ranges": [{ "startOffset": 14021, "endOffset": 14453, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 14534, "endOffset": 15540, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 15618, "endOffset": 16551, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 16615, "endOffset": 17096, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 17168, "endOffset": 17291, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 17363, "endOffset": 17486, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 17556, "endOffset": 18377, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 18451, "endOffset": 19167, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 19237, "endOffset": 19949, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "handleCheckPropertyResult", + "ranges": [{ "startOffset": 20060, "endOffset": 20239, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 20307, "endOffset": 20776, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 20846, "endOffset": 21336, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 21408, "endOffset": 21556, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "902", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/core/regexes.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 10964, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "uuid", + "ranges": [ + { "startOffset": 3802, "endOffset": 4145, "count": 3 }, + { "startOffset": 3843, "endOffset": 4019, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "emoji", + "ranges": [{ "startOffset": 5510, "endOffset": 5566, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mac", + "ranges": [{ "startOffset": 6112, "endOffset": 6311, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "timeSource", + "ranges": [{ "startOffset": 8017, "endOffset": 8402, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "time", + "ranges": [{ "startOffset": 8403, "endOffset": 8474, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "datetime", + "ranges": [{ "startOffset": 8527, "endOffset": 8929, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "string", + "ranges": [ + { "startOffset": 8945, "endOffset": 9100, "count": 93 }, + { "startOffset": 9014, "endOffset": 9018, "count": 84 }, + { "startOffset": 9047, "endOffset": 9060, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "fixedBase64", + "ranges": [{ "startOffset": 9740, "endOffset": 9852, "count": 5 }], + "isBlockCoverage": true + }, + { + "functionName": "fixedBase64url", + "ranges": [{ "startOffset": 9929, "endOffset": 10017, "count": 5 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "903", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/core/doc.cjs", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1199, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Doc", + "ranges": [{ "startOffset": 115, "endOffset": 245, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "indented", + "ranges": [{ "startOffset": 250, "endOffset": 340, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "write", + "ranges": [{ "startOffset": 345, "endOffset": 899, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "compile", + "ranges": [{ "startOffset": 904, "endOffset": 1177, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "904", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/core/versions.cjs", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 168, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "905", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/locales/index.cjs", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 9168, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [{ "startOffset": 70, "endOffset": 151, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1012, "endOffset": 1068, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1170, "endOffset": 1226, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1328, "endOffset": 1384, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1486, "endOffset": 1542, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1644, "endOffset": 1700, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1802, "endOffset": 1858, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1960, "endOffset": 2016, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2118, "endOffset": 2174, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2276, "endOffset": 2332, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2434, "endOffset": 2490, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2592, "endOffset": 2648, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2750, "endOffset": 2806, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2908, "endOffset": 2964, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3066, "endOffset": 3122, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3224, "endOffset": 3280, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3390, "endOffset": 3449, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3551, "endOffset": 3607, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3709, "endOffset": 3765, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3867, "endOffset": 3923, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 4025, "endOffset": 4081, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 4183, "endOffset": 4239, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 4341, "endOffset": 4397, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 4499, "endOffset": 4555, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 4657, "endOffset": 4713, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 4815, "endOffset": 4871, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 4973, "endOffset": 5029, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 5131, "endOffset": 5187, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 5289, "endOffset": 5345, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 5447, "endOffset": 5503, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 5605, "endOffset": 5661, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 5763, "endOffset": 5819, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 5921, "endOffset": 5977, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 6079, "endOffset": 6135, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 6240, "endOffset": 6297, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 6399, "endOffset": 6455, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 6557, "endOffset": 6613, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 6715, "endOffset": 6771, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 6873, "endOffset": 6929, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 7031, "endOffset": 7087, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 7189, "endOffset": 7245, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 7347, "endOffset": 7403, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 7505, "endOffset": 7561, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 7663, "endOffset": 7719, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 7821, "endOffset": 7877, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 7979, "endOffset": 8035, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 8137, "endOffset": 8193, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 8295, "endOffset": 8351, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 8453, "endOffset": 8509, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 8611, "endOffset": 8667, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 8777, "endOffset": 8836, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 8946, "endOffset": 9005, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 9107, "endOffset": 9163, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "906", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/locales/ar.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5727, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5616, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5618, "endOffset": 5692, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "907", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/locales/az.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5567, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5456, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5458, "endOffset": 5532, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "908", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/locales/be.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 7051, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "getBelarusianPlural", + "ranges": [{ "startOffset": 1189, "endOffset": 1582, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1597, "endOffset": 6940, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 6942, "endOffset": 7016, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "909", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/locales/bg.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 6269, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 6158, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 6160, "endOffset": 6234, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "910", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/locales/ca.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5853, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5742, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5744, "endOffset": 5818, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "911", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/locales/cs.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5827, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5716, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5718, "endOffset": 5792, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "912", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/locales/da.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5967, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5856, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5858, "endOffset": 5932, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "913", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/locales/de.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5745, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5634, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5636, "endOffset": 5710, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "914", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/locales/el.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5953, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5842, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5844, "endOffset": 5918, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "915", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/locales/en.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5981, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5870, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "getSizing", + "ranges": [{ "startOffset": 1502, "endOffset": 1576, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2716, "endOffset": 5867, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5872, "endOffset": 5946, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "916", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/locales/eo.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5763, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5652, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5654, "endOffset": 5728, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "917", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/locales/es.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 6582, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 6471, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 6473, "endOffset": 6547, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "918", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/locales/fa.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5731, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5620, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5622, "endOffset": 5696, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "919", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/locales/fi.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5954, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5843, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5845, "endOffset": 5919, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "920", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/locales/fr.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 6277, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 6166, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 6168, "endOffset": 6242, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "921", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/locales/fr-CA.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5698, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5587, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5589, "endOffset": 5663, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "922", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/locales/he.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 12333, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 12222, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 12224, "endOffset": 12298, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "923", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/locales/hr.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 6213, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 6102, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 6104, "endOffset": 6178, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "924", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/locales/hu.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5775, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5664, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5666, "endOffset": 5740, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "925", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/locales/hy.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 6871, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "getArmenianPlural", + "ranges": [{ "startOffset": 1189, "endOffset": 1284, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "withDefiniteArticle", + "ranges": [{ "startOffset": 1285, "endOffset": 1517, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1532, "endOffset": 6760, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 6762, "endOffset": 6836, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "926", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/locales/id.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5753, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5642, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5644, "endOffset": 5718, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "927", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/locales/is.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5742, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5631, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5633, "endOffset": 5707, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "928", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/locales/it.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5758, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5647, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5649, "endOffset": 5723, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "929", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/locales/ja.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5287, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5176, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5178, "endOffset": 5252, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "930", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/locales/ka.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5874, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5763, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5765, "endOffset": 5839, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "931", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/locales/kh.cjs", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 430, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 70, "endOffset": 151, "count": 1 }, + { "startOffset": 122, "endOffset": 127, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 336, "endOffset": 395, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "932", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/locales/km.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5802, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5691, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5693, "endOffset": 5767, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "933", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/locales/ko.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5525, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5414, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5416, "endOffset": 5490, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "934", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/locales/lt.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 9168, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "capitalizeFirstCharacter", + "ranges": [{ "startOffset": 1222, "endOffset": 1292, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getUnitTypeFromNumber", + "ranges": [{ "startOffset": 1294, "endOffset": 1561, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1576, "endOffset": 9057, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 9059, "endOffset": 9133, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "935", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/locales/mk.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5715, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5604, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5606, "endOffset": 5680, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "936", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/locales/ms.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5667, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5556, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5558, "endOffset": 5632, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "937", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/locales/nl.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5936, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5825, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5827, "endOffset": 5901, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "938", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/locales/no.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5662, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5551, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5553, "endOffset": 5627, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "939", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/locales/ota.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5626, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5515, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5517, "endOffset": 5591, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "940", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/locales/ps.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5626, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5515, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5517, "endOffset": 5591, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "941", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/locales/pl.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 6056, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5945, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5947, "endOffset": 6021, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "942", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/locales/pt.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5716, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5605, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5607, "endOffset": 5681, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "943", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/locales/ro.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5886, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5775, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5777, "endOffset": 5851, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "944", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/locales/ru.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 7099, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "getRussianPlural", + "ranges": [{ "startOffset": 1189, "endOffset": 1579, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1594, "endOffset": 6988, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 6990, "endOffset": 7064, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "945", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/locales/sl.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5722, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5611, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5613, "endOffset": 5687, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "946", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/locales/sv.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5792, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5681, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5683, "endOffset": 5757, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "947", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/locales/ta.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5919, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5808, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5810, "endOffset": 5884, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "948", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/locales/th.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5832, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5721, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5723, "endOffset": 5797, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "949", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/locales/tr.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5553, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5442, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5444, "endOffset": 5518, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "950", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/locales/ua.cjs", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 430, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 70, "endOffset": 151, "count": 1 }, + { "startOffset": 122, "endOffset": 127, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 336, "endOffset": 395, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "951", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/locales/uk.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5839, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5728, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5730, "endOffset": 5804, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "952", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/locales/ur.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5758, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5647, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5649, "endOffset": 5723, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "953", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/locales/uz.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5843, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5732, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5734, "endOffset": 5808, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "954", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/locales/vi.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5662, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5551, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5553, "endOffset": 5627, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "955", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/locales/zh-CN.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5178, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5067, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5069, "endOffset": 5143, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "956", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/locales/zh-TW.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5188, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5077, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5079, "endOffset": 5153, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "957", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/locales/yo.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5476, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5365, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5367, "endOffset": 5441, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "958", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/core/registries.cjs", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1717, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "$ZodRegistry", + "ranges": [{ "startOffset": 306, "endOffset": 395, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "add", + "ranges": [{ "startOffset": 400, "endOffset": 638, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "clear", + "ranges": [{ "startOffset": 643, "endOffset": 747, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "remove", + "ranges": [{ "startOffset": 752, "endOffset": 988, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 993, "endOffset": 1406, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "has", + "ranges": [{ "startOffset": 1411, "endOffset": 1468, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "registry", + "ranges": [{ "startOffset": 1522, "endOffset": 1576, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "959", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/core/api.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 31685, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 4 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "_string", + "ranges": [{ "startOffset": 4758, "endOffset": 4889, "count": 84 }], + "isBlockCoverage": true + }, + { + "functionName": "_coercedString", + "ranges": [{ "startOffset": 4914, "endOffset": 5074, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_email", + "ranges": [{ "startOffset": 5099, "endOffset": 5308, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_guid", + "ranges": [{ "startOffset": 5333, "endOffset": 5540, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_uuid", + "ranges": [{ "startOffset": 5565, "endOffset": 5772, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_uuidv4", + "ranges": [{ "startOffset": 5797, "endOffset": 6029, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_uuidv6", + "ranges": [{ "startOffset": 6054, "endOffset": 6286, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_uuidv7", + "ranges": [{ "startOffset": 6311, "endOffset": 6543, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_url", + "ranges": [{ "startOffset": 6568, "endOffset": 6773, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_emoji", + "ranges": [{ "startOffset": 6798, "endOffset": 7007, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_nanoid", + "ranges": [{ "startOffset": 7032, "endOffset": 7243, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_cuid", + "ranges": [{ "startOffset": 7465, "endOffset": 7672, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_cuid2", + "ranges": [{ "startOffset": 7697, "endOffset": 7906, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_ulid", + "ranges": [{ "startOffset": 7931, "endOffset": 8138, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_xid", + "ranges": [{ "startOffset": 8163, "endOffset": 8368, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_ksuid", + "ranges": [{ "startOffset": 8393, "endOffset": 8602, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_ipv4", + "ranges": [{ "startOffset": 8627, "endOffset": 8834, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_ipv6", + "ranges": [{ "startOffset": 8859, "endOffset": 9066, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_mac", + "ranges": [{ "startOffset": 9091, "endOffset": 9296, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_cidrv4", + "ranges": [{ "startOffset": 9321, "endOffset": 9532, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_cidrv6", + "ranges": [{ "startOffset": 9557, "endOffset": 9768, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_base64", + "ranges": [{ "startOffset": 9793, "endOffset": 10004, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_base64url", + "ranges": [{ "startOffset": 10029, "endOffset": 10246, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_e164", + "ranges": [{ "startOffset": 10271, "endOffset": 10478, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_jwt", + "ranges": [{ "startOffset": 10503, "endOffset": 10708, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_isoDateTime", + "ranges": [{ "startOffset": 10848, "endOffset": 11114, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_isoDate", + "ranges": [{ "startOffset": 11139, "endOffset": 11327, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_isoTime", + "ranges": [{ "startOffset": 11352, "endOffset": 11565, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_isoDuration", + "ranges": [{ "startOffset": 11590, "endOffset": 11786, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_number", + "ranges": [{ "startOffset": 11811, "endOffset": 11962, "count": 23 }], + "isBlockCoverage": true + }, + { + "functionName": "_coercedNumber", + "ranges": [{ "startOffset": 11987, "endOffset": 12167, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_int", + "ranges": [{ "startOffset": 12192, "endOffset": 12401, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_float32", + "ranges": [{ "startOffset": 12426, "endOffset": 12639, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_float64", + "ranges": [{ "startOffset": 12664, "endOffset": 12877, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_int32", + "ranges": [{ "startOffset": 12902, "endOffset": 13111, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_uint32", + "ranges": [{ "startOffset": 13136, "endOffset": 13347, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_boolean", + "ranges": [{ "startOffset": 13372, "endOffset": 13505, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "_coercedBoolean", + "ranges": [{ "startOffset": 13530, "endOffset": 13692, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_bigint", + "ranges": [{ "startOffset": 13717, "endOffset": 13848, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_coercedBigint", + "ranges": [{ "startOffset": 13873, "endOffset": 14033, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_int64", + "ranges": [{ "startOffset": 14058, "endOffset": 14267, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_uint64", + "ranges": [{ "startOffset": 14292, "endOffset": 14503, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_symbol", + "ranges": [{ "startOffset": 14528, "endOffset": 14659, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_undefined", + "ranges": [{ "startOffset": 14684, "endOffset": 14821, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_null", + "ranges": [{ "startOffset": 14846, "endOffset": 14973, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_any", + "ranges": [{ "startOffset": 14998, "endOffset": 15074, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "_unknown", + "ranges": [{ "startOffset": 15099, "endOffset": 15183, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "_never", + "ranges": [{ "startOffset": 15208, "endOffset": 15337, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_void", + "ranges": [{ "startOffset": 15362, "endOffset": 15489, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_date", + "ranges": [{ "startOffset": 15514, "endOffset": 15641, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_coercedDate", + "ranges": [{ "startOffset": 15666, "endOffset": 15822, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_nan", + "ranges": [{ "startOffset": 15847, "endOffset": 15972, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_lt", + "ranges": [{ "startOffset": 15997, "endOffset": 16188, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_lte", + "ranges": [{ "startOffset": 16213, "endOffset": 16404, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_gt", + "ranges": [{ "startOffset": 16429, "endOffset": 16626, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_gte", + "ranges": [{ "startOffset": 16651, "endOffset": 16848, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_positive", + "ranges": [{ "startOffset": 16873, "endOffset": 16930, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_negative", + "ranges": [{ "startOffset": 16967, "endOffset": 17024, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_nonpositive", + "ranges": [{ "startOffset": 17064, "endOffset": 17125, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_nonnegative", + "ranges": [{ "startOffset": 17165, "endOffset": 17226, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_multipleOf", + "ranges": [{ "startOffset": 17251, "endOffset": 17428, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_maxSize", + "ranges": [{ "startOffset": 17453, "endOffset": 17625, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_minSize", + "ranges": [{ "startOffset": 17650, "endOffset": 17822, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_size", + "ranges": [{ "startOffset": 17847, "endOffset": 18016, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_maxLength", + "ranges": [{ "startOffset": 18041, "endOffset": 18238, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_minLength", + "ranges": [{ "startOffset": 18263, "endOffset": 18441, "count": 9 }], + "isBlockCoverage": true + }, + { + "functionName": "_length", + "ranges": [{ "startOffset": 18466, "endOffset": 18645, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_regex", + "ranges": [{ "startOffset": 18670, "endOffset": 18868, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_lowercase", + "ranges": [{ "startOffset": 18893, "endOffset": 19077, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_uppercase", + "ranges": [{ "startOffset": 19102, "endOffset": 19286, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_includes", + "ranges": [{ "startOffset": 19311, "endOffset": 19520, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_startsWith", + "ranges": [{ "startOffset": 19545, "endOffset": 19757, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_endsWith", + "ranges": [{ "startOffset": 19782, "endOffset": 19988, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_property", + "ranges": [{ "startOffset": 20013, "endOffset": 20213, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_mime", + "ranges": [{ "startOffset": 20238, "endOffset": 20411, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_overwrite", + "ranges": [{ "startOffset": 20436, "endOffset": 20554, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_normalize", + "ranges": [{ "startOffset": 20592, "endOffset": 20678, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_trim", + "ranges": [{ "startOffset": 20711, "endOffset": 20779, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_toLowerCase", + "ranges": [{ "startOffset": 20819, "endOffset": 20901, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_toUpperCase", + "ranges": [{ "startOffset": 20941, "endOffset": 21023, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_slugify", + "ranges": [{ "startOffset": 21059, "endOffset": 21137, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_array", + "ranges": [{ "startOffset": 21162, "endOffset": 21387, "count": 12 }], + "isBlockCoverage": true + }, + { + "functionName": "_union", + "ranges": [{ "startOffset": 21412, "endOffset": 21567, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_xor", + "ranges": [{ "startOffset": 21568, "endOffset": 21747, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_discriminatedUnion", + "ranges": [{ "startOffset": 21772, "endOffset": 21978, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_intersection", + "ranges": [{ "startOffset": 22003, "endOffset": 22139, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_tuple", + "ranges": [{ "startOffset": 22330, "endOffset": 22677, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_record", + "ranges": [{ "startOffset": 22702, "endOffset": 22889, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_map", + "ranges": [{ "startOffset": 22914, "endOffset": 23095, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_set", + "ranges": [{ "startOffset": 23120, "endOffset": 23275, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_enum", + "ranges": [{ "startOffset": 23300, "endOffset": 23854, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_nativeEnum", + "ranges": [{ "startOffset": 24039, "endOffset": 24198, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_literal", + "ranges": [{ "startOffset": 24223, "endOffset": 24419, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_file", + "ranges": [{ "startOffset": 24444, "endOffset": 24571, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_transform", + "ranges": [{ "startOffset": 24596, "endOffset": 24711, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_optional", + "ranges": [{ "startOffset": 24736, "endOffset": 24852, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_nullable", + "ranges": [{ "startOffset": 24877, "endOffset": 24993, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_default", + "ranges": [{ "startOffset": 25018, "endOffset": 25292, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_nonoptional", + "ranges": [{ "startOffset": 25317, "endOffset": 25488, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_success", + "ranges": [{ "startOffset": 25513, "endOffset": 25627, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_catch", + "ranges": [{ "startOffset": 25652, "endOffset": 25862, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_pipe", + "ranges": [{ "startOffset": 25887, "endOffset": 26005, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_readonly", + "ranges": [{ "startOffset": 26030, "endOffset": 26146, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_templateLiteral", + "ranges": [{ "startOffset": 26171, "endOffset": 26343, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_lazy", + "ranges": [{ "startOffset": 26368, "endOffset": 26470, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_promise", + "ranges": [{ "startOffset": 26495, "endOffset": 26609, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_custom", + "ranges": [{ "startOffset": 26634, "endOffset": 26927, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_refine", + "ranges": [{ "startOffset": 26999, "endOffset": 27204, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_superRefine", + "ranges": [{ "startOffset": 27229, "endOffset": 28134, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_check", + "ranges": [{ "startOffset": 28159, "endOffset": 28341, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "describe", + "ranges": [{ "startOffset": 28366, "endOffset": 28735, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "meta", + "ranges": [{ "startOffset": 28760, "endOffset": 29118, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_stringbool", + "ranges": [{ "startOffset": 29143, "endOffset": 31169, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_stringFormat", + "ranges": [{ "startOffset": 31194, "endOffset": 31684, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "960", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/core/to-json-schema.cjs", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 17440, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "initializeContext", + "ranges": [{ "startOffset": 705, "endOffset": 1483, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "process", + "ranges": [{ "startOffset": 1484, "endOffset": 3790, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "extractDefs", + "ranges": [{ "startOffset": 3791, "endOffset": 8318, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "finalize", + "ranges": [{ "startOffset": 8319, "endOffset": 14669, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isTransforming", + "ranges": [{ "startOffset": 14670, "endOffset": 16587, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createToJSONSchemaMethod", + "ranges": [{ "startOffset": 16786, "endOffset": 16982, "count": 320 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 16815, "endOffset": 16982, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createStandardJSONSchemaMethod", + "ranges": [{ "startOffset": 17084, "endOffset": 17365, "count": 640 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 17117, "endOffset": 17365, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "961", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/core/json-schema-processors.cjs", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 24338, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "stringProcessor", + "ranges": [{ "startOffset": 1510, "endOffset": 2918, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "numberProcessor", + "ranges": [{ "startOffset": 2987, "endOffset": 4364, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "booleanProcessor", + "ranges": [{ "startOffset": 4434, "endOffset": 4498, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "bigintProcessor", + "ranges": [{ "startOffset": 4569, "endOffset": 4727, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "symbolProcessor", + "ranges": [{ "startOffset": 4796, "endOffset": 4955, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "nullProcessor", + "ranges": [{ "startOffset": 5022, "endOffset": 5237, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "undefinedProcessor", + "ranges": [{ "startOffset": 5305, "endOffset": 5466, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "voidProcessor", + "ranges": [{ "startOffset": 5539, "endOffset": 5695, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "neverProcessor", + "ranges": [{ "startOffset": 5759, "endOffset": 5815, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "anyProcessor", + "ranges": [{ "startOffset": 5879, "endOffset": 5954, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "unknownProcessor", + "ranges": [{ "startOffset": 6018, "endOffset": 6093, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "dateProcessor", + "ranges": [{ "startOffset": 6162, "endOffset": 6318, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "enumProcessor", + "ranges": [{ "startOffset": 6381, "endOffset": 6759, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "literalProcessor", + "ranges": [{ "startOffset": 6825, "endOffset": 8333, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "nanProcessor", + "ranges": [{ "startOffset": 8401, "endOffset": 8556, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "templateLiteralProcessor", + "ranges": [{ "startOffset": 8628, "endOffset": 8876, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fileProcessor", + "ranges": [{ "startOffset": 8961, "endOffset": 9713, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "successProcessor", + "ranges": [{ "startOffset": 9779, "endOffset": 9843, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "customProcessor", + "ranges": [{ "startOffset": 9914, "endOffset": 10078, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "functionProcessor", + "ranges": [{ "startOffset": 10149, "endOffset": 10315, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformProcessor", + "ranges": [{ "startOffset": 10391, "endOffset": 10553, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mapProcessor", + "ranges": [{ "startOffset": 10625, "endOffset": 10780, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setProcessor", + "ranges": [{ "startOffset": 10840, "endOffset": 10995, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "arrayProcessor", + "ranges": [{ "startOffset": 11128, "endOffset": 11573, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "objectProcessor", + "ranges": [{ "startOffset": 11640, "endOffset": 12937, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "unionProcessor", + "ranges": [{ "startOffset": 13005, "endOffset": 13586, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "intersectionProcessor", + "ranges": [{ "startOffset": 13659, "endOffset": 14247, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "tupleProcessor", + "ranges": [{ "startOffset": 14327, "endOffset": 15844, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "recordProcessor", + "ranges": [{ "startOffset": 15911, "endOffset": 17706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "nullableProcessor", + "ranges": [{ "startOffset": 17777, "endOffset": 18138, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "nonoptionalProcessor", + "ranges": [{ "startOffset": 18216, "endOffset": 18419, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "defaultProcessor", + "ranges": [{ "startOffset": 18499, "endOffset": 18766, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "prefaultProcessor", + "ranges": [{ "startOffset": 18839, "endOffset": 19140, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "catchProcessor", + "ranges": [{ "startOffset": 19212, "endOffset": 19629, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pipeProcessor", + "ranges": [{ "startOffset": 19694, "endOffset": 20045, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readonlyProcessor", + "ranges": [{ "startOffset": 20112, "endOffset": 20340, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "promiseProcessor", + "ranges": [{ "startOffset": 20414, "endOffset": 20617, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "optionalProcessor", + "ranges": [{ "startOffset": 20690, "endOffset": 20893, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lazyProcessor", + "ranges": [{ "startOffset": 20964, "endOffset": 21171, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toJSONSchema", + "ranges": [{ "startOffset": 22767, "endOffset": 24337, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "962", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/core/json-schema-generator.cjs", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3492, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get metadataRegistry", + "ranges": [{ "startOffset": 856, "endOffset": 928, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get target", + "ranges": [{ "startOffset": 979, "endOffset": 1031, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get unrepresentable", + "ranges": [{ "startOffset": 1082, "endOffset": 1152, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get override", + "ranges": [{ "startOffset": 1203, "endOffset": 1259, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get io", + "ranges": [{ "startOffset": 1310, "endOffset": 1354, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get counter", + "ranges": [{ "startOffset": 1405, "endOffset": 1459, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set counter", + "ranges": [{ "startOffset": 1464, "endOffset": 1524, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get seen", + "ranges": [{ "startOffset": 1575, "endOffset": 1623, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "JSONSchemaGenerator", + "ranges": [{ "startOffset": 1628, "endOffset": 2400, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "process", + "ranges": [{ "startOffset": 2529, "endOffset": 2668, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "emit", + "ranges": [{ "startOffset": 2775, "endOffset": 3438, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "963", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/core/json-schema.cjs", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 77, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "964", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/classic/schemas.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 56342, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 5 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "_installLazyMethods", + "ranges": [ + { "startOffset": 6080, "endOffset": 7180, "count": 498 }, + { "startOffset": 6249, "endOffset": 6335, "count": 14 }, + { "startOffset": 6374, "endOffset": 6381, "count": 480 }, + { "startOffset": 6381, "endOffset": 6439, "count": 18 }, + { "startOffset": 6439, "endOffset": 7178, "count": 426 }, + { "startOffset": 7178, "endOffset": 7179, "count": 18 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 6593, "endOffset": 6908, "count": 97 }], + "isBlockCoverage": true + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 6922, "endOffset": 7159, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 7228, "endOffset": 12772, "count": 320 }], + "isBlockCoverage": true + }, + { + "functionName": "inst.parse", + "ranges": [{ "startOffset": 8100, "endOffset": 8173, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.safeParse", + "ranges": [{ "startOffset": 8196, "endOffset": 8249, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.parseAsync", + "ranges": [{ "startOffset": 8273, "endOffset": 8362, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.safeParseAsync", + "ranges": [{ "startOffset": 8390, "endOffset": 8454, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.encode", + "ranges": [{ "startOffset": 8510, "endOffset": 8560, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.decode", + "ranges": [{ "startOffset": 8580, "endOffset": 8630, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.encodeAsync", + "ranges": [{ "startOffset": 8655, "endOffset": 8716, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.decodeAsync", + "ranges": [{ "startOffset": 8741, "endOffset": 8802, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.safeEncode", + "ranges": [{ "startOffset": 8826, "endOffset": 8880, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.safeDecode", + "ranges": [{ "startOffset": 8904, "endOffset": 8958, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.safeEncodeAsync", + "ranges": [{ "startOffset": 8987, "endOffset": 9052, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.safeDecodeAsync", + "ranges": [{ "startOffset": 9081, "endOffset": 9146, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "check", + "ranges": [{ "startOffset": 9639, "endOffset": 10023, "count": 9 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 9854, "endOffset": 9957, "count": 9 }, + { "startOffset": 9887, "endOffset": 9952, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "with", + "ranges": [{ "startOffset": 10033, "endOffset": 10098, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "clone", + "ranges": [{ "startOffset": 10108, "endOffset": 10188, "count": 9 }], + "isBlockCoverage": true + }, + { + "functionName": "brand", + "ranges": [{ "startOffset": 10198, "endOffset": 10242, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "register", + "ranges": [{ "startOffset": 10252, "endOffset": 10341, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "refine", + "ranges": [{ "startOffset": 10351, "endOffset": 10438, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "superRefine", + "ranges": [{ "startOffset": 10448, "endOffset": 10555, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "overwrite", + "ranges": [{ "startOffset": 10565, "endOffset": 10643, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "optional", + "ranges": [{ "startOffset": 10653, "endOffset": 10710, "count": 16 }], + "isBlockCoverage": true + }, + { + "functionName": "exactOptional", + "ranges": [{ "startOffset": 10720, "endOffset": 10787, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "nullable", + "ranges": [{ "startOffset": 10797, "endOffset": 10854, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "nullish", + "ranges": [{ "startOffset": 10864, "endOffset": 10930, "count": 48 }], + "isBlockCoverage": true + }, + { + "functionName": "nonoptional", + "ranges": [{ "startOffset": 10940, "endOffset": 11017, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "array", + "ranges": [{ "startOffset": 11027, "endOffset": 11078, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "or", + "ranges": [{ "startOffset": 11088, "endOffset": 11146, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "and", + "ranges": [{ "startOffset": 11156, "endOffset": 11220, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transform", + "ranges": [{ "startOffset": 11230, "endOffset": 11301, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default", + "ranges": [{ "startOffset": 11311, "endOffset": 11371, "count": 6 }], + "isBlockCoverage": true + }, + { + "functionName": "prefault", + "ranges": [{ "startOffset": 11381, "endOffset": 11442, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "catch", + "ranges": [{ "startOffset": 11452, "endOffset": 11518, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pipe", + "ranges": [{ "startOffset": 11528, "endOffset": 11591, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readonly", + "ranges": [{ "startOffset": 11601, "endOffset": 11658, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "describe", + "ranges": [{ "startOffset": 11668, "endOffset": 11819, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "meta", + "ranges": [{ "startOffset": 11829, "endOffset": 12338, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isOptional", + "ranges": [{ "startOffset": 12348, "endOffset": 12426, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isNullable", + "ranges": [{ "startOffset": 12436, "endOffset": 12509, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "apply", + "ranges": [{ "startOffset": 12519, "endOffset": 12569, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 12636, "endOffset": 12716, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 12845, "endOffset": 14632, "count": 93 }, + { "startOffset": 13148, "endOffset": 13155, "count": 84 } + ], + "isBlockCoverage": true + }, + { + "functionName": "inst._zod.processJSONSchema", + "ranges": [{ "startOffset": 12970, "endOffset": 13044, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "regex", + "ranges": [{ "startOffset": 13253, "endOffset": 13333, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "includes", + "ranges": [{ "startOffset": 13343, "endOffset": 13429, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "startsWith", + "ranges": [{ "startOffset": 13439, "endOffset": 13529, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "endsWith", + "ranges": [{ "startOffset": 13539, "endOffset": 13625, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "min", + "ranges": [{ "startOffset": 13635, "endOffset": 13717, "count": 9 }], + "isBlockCoverage": true + }, + { + "functionName": "max", + "ranges": [{ "startOffset": 13727, "endOffset": 13809, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "length", + "ranges": [{ "startOffset": 13819, "endOffset": 13901, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "nonempty", + "ranges": [{ "startOffset": 13911, "endOffset": 14001, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lowercase", + "ranges": [{ "startOffset": 14011, "endOffset": 14097, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "uppercase", + "ranges": [{ "startOffset": 14107, "endOffset": 14193, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "trim", + "ranges": [{ "startOffset": 14203, "endOffset": 14267, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "normalize", + "ranges": [{ "startOffset": 14277, "endOffset": 14365, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toLowerCase", + "ranges": [{ "startOffset": 14375, "endOffset": 14453, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toUpperCase", + "ranges": [{ "startOffset": 14463, "endOffset": 14541, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "slugify", + "ranges": [{ "startOffset": 14551, "endOffset": 14621, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 14686, "endOffset": 16865, "count": 93 }], + "isBlockCoverage": true + }, + { + "functionName": "inst.email", + "ranges": [{ "startOffset": 14797, "endOffset": 14858, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.url", + "ranges": [{ "startOffset": 14875, "endOffset": 14932, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.jwt", + "ranges": [{ "startOffset": 14949, "endOffset": 15006, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.emoji", + "ranges": [{ "startOffset": 15025, "endOffset": 15086, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.guid", + "ranges": [{ "startOffset": 15104, "endOffset": 15163, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.uuid", + "ranges": [{ "startOffset": 15181, "endOffset": 15240, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.uuidv4", + "ranges": [{ "startOffset": 15260, "endOffset": 15321, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.uuidv6", + "ranges": [{ "startOffset": 15341, "endOffset": 15402, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.uuidv7", + "ranges": [{ "startOffset": 15422, "endOffset": 15483, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.nanoid", + "ranges": [{ "startOffset": 15503, "endOffset": 15566, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.guid", + "ranges": [{ "startOffset": 15584, "endOffset": 15643, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.cuid", + "ranges": [{ "startOffset": 15661, "endOffset": 15720, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.cuid2", + "ranges": [{ "startOffset": 15739, "endOffset": 15800, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.ulid", + "ranges": [{ "startOffset": 15818, "endOffset": 15877, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.base64", + "ranges": [{ "startOffset": 15897, "endOffset": 15960, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.base64url", + "ranges": [{ "startOffset": 15983, "endOffset": 16052, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.xid", + "ranges": [{ "startOffset": 16069, "endOffset": 16126, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.ksuid", + "ranges": [{ "startOffset": 16145, "endOffset": 16206, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.ipv4", + "ranges": [{ "startOffset": 16224, "endOffset": 16283, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.ipv6", + "ranges": [{ "startOffset": 16301, "endOffset": 16360, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.cidrv4", + "ranges": [{ "startOffset": 16380, "endOffset": 16443, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.cidrv6", + "ranges": [{ "startOffset": 16463, "endOffset": 16526, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.e164", + "ranges": [{ "startOffset": 16544, "endOffset": 16603, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.datetime", + "ranges": [{ "startOffset": 16636, "endOffset": 16680, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.date", + "ranges": [{ "startOffset": 16698, "endOffset": 16738, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.time", + "ranges": [{ "startOffset": 16756, "endOffset": 16796, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.duration", + "ranges": [{ "startOffset": 16818, "endOffset": 16862, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "string", + "ranges": [{ "startOffset": 16868, "endOffset": 16947, "count": 84 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 17011, "endOffset": 17112, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 17164, "endOffset": 17303, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "email", + "ranges": [{ "startOffset": 17306, "endOffset": 17382, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 17430, "endOffset": 17568, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "guid", + "ranges": [{ "startOffset": 17571, "endOffset": 17644, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 17692, "endOffset": 17830, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "uuid", + "ranges": [{ "startOffset": 17833, "endOffset": 17906, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "uuidv4", + "ranges": [{ "startOffset": 17907, "endOffset": 17984, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "uuidv6", + "ranges": [{ "startOffset": 17998, "endOffset": 18075, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "uuidv7", + "ranges": [{ "startOffset": 18089, "endOffset": 18166, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 18212, "endOffset": 18349, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "url", + "ranges": [{ "startOffset": 18352, "endOffset": 18422, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "httpUrl", + "ranges": [{ "startOffset": 18423, "endOffset": 18634, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 18684, "endOffset": 18823, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "emoji", + "ranges": [{ "startOffset": 18826, "endOffset": 18902, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 18954, "endOffset": 19094, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "nanoid", + "ranges": [{ "startOffset": 19097, "endOffset": 19176, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 19423, "endOffset": 19561, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cuid", + "ranges": [{ "startOffset": 19808, "endOffset": 19881, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 19931, "endOffset": 20070, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cuid2", + "ranges": [{ "startOffset": 20073, "endOffset": 20149, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 20197, "endOffset": 20335, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ulid", + "ranges": [{ "startOffset": 20338, "endOffset": 20411, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 20457, "endOffset": 20594, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "xid", + "ranges": [{ "startOffset": 20597, "endOffset": 20667, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 20717, "endOffset": 20856, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ksuid", + "ranges": [{ "startOffset": 20859, "endOffset": 20935, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 20983, "endOffset": 21121, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ipv4", + "ranges": [{ "startOffset": 21124, "endOffset": 21197, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 21243, "endOffset": 21380, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mac", + "ranges": [{ "startOffset": 21383, "endOffset": 21453, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 21501, "endOffset": 21639, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ipv6", + "ranges": [{ "startOffset": 21642, "endOffset": 21715, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 21767, "endOffset": 21867, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cidrv4", + "ranges": [{ "startOffset": 21870, "endOffset": 21949, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 22001, "endOffset": 22101, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cidrv6", + "ranges": [{ "startOffset": 22104, "endOffset": 22183, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 22235, "endOffset": 22375, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "base64", + "ranges": [{ "startOffset": 22378, "endOffset": 22457, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 22515, "endOffset": 22658, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "base64url", + "ranges": [{ "startOffset": 22661, "endOffset": 22749, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 22797, "endOffset": 22935, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "e164", + "ranges": [{ "startOffset": 22938, "endOffset": 23011, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 23057, "endOffset": 23194, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "jwt", + "ranges": [{ "startOffset": 23197, "endOffset": 23267, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 23343, "endOffset": 23495, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stringFormat", + "ranges": [{ "startOffset": 23498, "endOffset": 23646, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hostname", + "ranges": [{ "startOffset": 23647, "endOffset": 23783, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hex", + "ranges": [{ "startOffset": 23784, "endOffset": 23905, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hash", + "ranges": [{ "startOffset": 23906, "endOffset": 24215, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 24267, "endOffset": 26375, "count": 23 }, + { "startOffset": 26064, "endOffset": 26071, "count": 0 }, + { "startOffset": 26201, "endOffset": 26208, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "inst._zod.processJSONSchema", + "ranges": [{ "startOffset": 24392, "endOffset": 24466, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "gt", + "ranges": [{ "startOffset": 24521, "endOffset": 24607, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "gte", + "ranges": [{ "startOffset": 24617, "endOffset": 24705, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "min", + "ranges": [{ "startOffset": 24715, "endOffset": 24803, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lt", + "ranges": [{ "startOffset": 24813, "endOffset": 24899, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lte", + "ranges": [{ "startOffset": 24909, "endOffset": 24997, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "max", + "ranges": [{ "startOffset": 25007, "endOffset": 25095, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "int", + "ranges": [{ "startOffset": 25105, "endOffset": 25172, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "safe", + "ranges": [{ "startOffset": 25182, "endOffset": 25250, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "positive", + "ranges": [{ "startOffset": 25260, "endOffset": 25341, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "nonnegative", + "ranges": [{ "startOffset": 25351, "endOffset": 25436, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "negative", + "ranges": [{ "startOffset": 25446, "endOffset": 25527, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "nonpositive", + "ranges": [{ "startOffset": 25537, "endOffset": 25622, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "multipleOf", + "ranges": [{ "startOffset": 25632, "endOffset": 25734, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "step", + "ranges": [{ "startOffset": 25744, "endOffset": 25840, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "finite", + "ranges": [{ "startOffset": 25850, "endOffset": 25895, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "number", + "ranges": [{ "startOffset": 26378, "endOffset": 26457, "count": 23 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 26521, "endOffset": 26621, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "int", + "ranges": [{ "startOffset": 26624, "endOffset": 26703, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "float32", + "ranges": [{ "startOffset": 26704, "endOffset": 26791, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "float64", + "ranges": [{ "startOffset": 26792, "endOffset": 26879, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "int32", + "ranges": [{ "startOffset": 26880, "endOffset": 26963, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "uint32", + "ranges": [{ "startOffset": 26964, "endOffset": 27049, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 27103, "endOffset": 27307, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "inst._zod.processJSONSchema", + "ranges": [{ "startOffset": 27229, "endOffset": 27304, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "boolean", + "ranges": [{ "startOffset": 27310, "endOffset": 27392, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 27444, "endOffset": 28768, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "bigint", + "ranges": [{ "startOffset": 28771, "endOffset": 28850, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 28914, "endOffset": 29014, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "int64", + "ranges": [{ "startOffset": 29026, "endOffset": 29109, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "uint64", + "ranges": [{ "startOffset": 29120, "endOffset": 29205, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 29257, "endOffset": 29459, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "symbol", + "ranges": [{ "startOffset": 29462, "endOffset": 29541, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 29599, "endOffset": 29807, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_undefined", + "ranges": [{ "startOffset": 29810, "endOffset": 29899, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 29947, "endOffset": 30145, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_null", + "ranges": [{ "startOffset": 30148, "endOffset": 30222, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 30268, "endOffset": 30464, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "inst._zod.processJSONSchema", + "ranges": [{ "startOffset": 30390, "endOffset": 30461, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "any", + "ranges": [{ "startOffset": 30467, "endOffset": 30523, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 30577, "endOffset": 30781, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "inst._zod.processJSONSchema", + "ranges": [{ "startOffset": 30703, "endOffset": 30778, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "unknown", + "ranges": [{ "startOffset": 30784, "endOffset": 30852, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 30902, "endOffset": 31102, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "never", + "ranges": [{ "startOffset": 31105, "endOffset": 31181, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 31229, "endOffset": 31427, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_void", + "ranges": [{ "startOffset": 31430, "endOffset": 31504, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 31552, "endOffset": 32043, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "date", + "ranges": [{ "startOffset": 32046, "endOffset": 32119, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 32169, "endOffset": 32902, "count": 12 }], + "isBlockCoverage": true + }, + { + "functionName": "inst._zod.processJSONSchema", + "ranges": [{ "startOffset": 32293, "endOffset": 32366, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "min", + "ranges": [{ "startOffset": 32452, "endOffset": 32538, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "nonempty", + "ranges": [{ "startOffset": 32548, "endOffset": 32636, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "max", + "ranges": [{ "startOffset": 32646, "endOffset": 32732, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "length", + "ranges": [{ "startOffset": 32742, "endOffset": 32828, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "unwrap", + "ranges": [{ "startOffset": 32838, "endOffset": 32891, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "array", + "ranges": [{ "startOffset": 32905, "endOffset": 32999, "count": 12 }], + "isBlockCoverage": true + }, + { + "functionName": "keyof", + "ranges": [{ "startOffset": 33010, "endOffset": 33115, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 33167, "endOffset": 34834, "count": 50 }], + "isBlockCoverage": true + }, + { + "functionName": "inst._zod.processJSONSchema", + "ranges": [{ "startOffset": 33295, "endOffset": 33369, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 33417, "endOffset": 33456, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "keyof", + "ranges": [{ "startOffset": 33512, "endOffset": 33591, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "catchall", + "ranges": [{ "startOffset": 33601, "endOffset": 33704, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "passthrough", + "ranges": [{ "startOffset": 33714, "endOffset": 33813, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "loose", + "ranges": [{ "startOffset": 33823, "endOffset": 33916, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "strict", + "ranges": [{ "startOffset": 33926, "endOffset": 34018, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "strip", + "ranges": [{ "startOffset": 34028, "endOffset": 34121, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "extend", + "ranges": [{ "startOffset": 34131, "endOffset": 34218, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "safeExtend", + "ranges": [{ "startOffset": 34228, "endOffset": 34323, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "merge", + "ranges": [{ "startOffset": 34333, "endOffset": 34412, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pick", + "ranges": [{ "startOffset": 34422, "endOffset": 34497, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "omit", + "ranges": [{ "startOffset": 34507, "endOffset": 34582, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "partial", + "ranges": [{ "startOffset": 34592, "endOffset": 34700, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "required", + "ranges": [{ "startOffset": 34710, "endOffset": 34823, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "object", + "ranges": [ + { "startOffset": 34837, "endOffset": 35039, "count": 47 }, + { "startOffset": 34933, "endOffset": 34938, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "strictObject", + "ranges": [{ "startOffset": 35056, "endOffset": 35257, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "looseObject", + "ranges": [{ "startOffset": 35273, "endOffset": 35475, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 35525, "endOffset": 35757, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "inst._zod.processJSONSchema", + "ranges": [{ "startOffset": 35649, "endOffset": 35722, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "union", + "ranges": [{ "startOffset": 35760, "endOffset": 35938, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 35984, "endOffset": 36215, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "xor", + "ranges": [{ "startOffset": 36422, "endOffset": 36622, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 36698, "endOffset": 36803, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "discriminatedUnion", + "ranges": [{ "startOffset": 36806, "endOffset": 37078, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 37142, "endOffset": 37356, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "intersection", + "ranges": [{ "startOffset": 37359, "endOffset": 37518, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 37568, "endOffset": 37861, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "tuple", + "ranges": [{ "startOffset": 37864, "endOffset": 38229, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 38281, "endOffset": 38551, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "inst._zod.processJSONSchema", + "ranges": [{ "startOffset": 38406, "endOffset": 38480, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "record", + "ranges": [ + { "startOffset": 38554, "endOffset": 39095, "count": 4 }, + { "startOffset": 38719, "endOffset": 38927, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "partialRecord", + "ranges": [{ "startOffset": 39146, "endOffset": 39435, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "looseRecord", + "ranges": [{ "startOffset": 39436, "endOffset": 39677, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 39723, "endOffset": 40247, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "map", + "ranges": [{ "startOffset": 40250, "endOffset": 40463, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 40509, "endOffset": 40965, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 40968, "endOffset": 41146, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 41194, "endOffset": 42518, "count": 11 }], + "isBlockCoverage": true + }, + { + "functionName": "inst._zod.processJSONSchema", + "ranges": [{ "startOffset": 41317, "endOffset": 41389, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.extract", + "ranges": [{ "startOffset": 41538, "endOffset": 42015, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.exclude", + "ranges": [{ "startOffset": 42036, "endOffset": 42515, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_enum", + "ranges": [ + { "startOffset": 42521, "endOffset": 42787, "count": 11 }, + { "startOffset": 42644, "endOffset": 42652, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 42628, "endOffset": 42641, "count": 31 }], + "isBlockCoverage": true + }, + { + "functionName": "nativeEnum", + "ranges": [{ "startOffset": 42948, "endOffset": 43120, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 43174, "endOffset": 43695, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "inst._zod.processJSONSchema", + "ranges": [{ "startOffset": 43300, "endOffset": 43375, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 43467, "endOffset": 43684, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "literal", + "ranges": [ + { "startOffset": 43698, "endOffset": 43910, "count": 1 }, + { "startOffset": 43830, "endOffset": 43837, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 43958, "endOffset": 44411, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "file", + "ranges": [{ "startOffset": 44414, "endOffset": 44487, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 44545, "endOffset": 45988, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transform", + "ranges": [{ "startOffset": 45991, "endOffset": 46113, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 46169, "endOffset": 46424, "count": 64 }], + "isBlockCoverage": true + }, + { + "functionName": "inst._zod.processJSONSchema", + "ranges": [{ "startOffset": 46296, "endOffset": 46372, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.unwrap", + "ranges": [{ "startOffset": 46392, "endOffset": 46421, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "optional", + "ranges": [{ "startOffset": 46427, "endOffset": 46560, "count": 64 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 46626, "endOffset": 46886, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "exactOptional", + "ranges": [{ "startOffset": 46889, "endOffset": 47032, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 47088, "endOffset": 47343, "count": 48 }], + "isBlockCoverage": true + }, + { + "functionName": "inst._zod.processJSONSchema", + "ranges": [{ "startOffset": 47215, "endOffset": 47291, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.unwrap", + "ranges": [{ "startOffset": 47311, "endOffset": 47340, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "nullable", + "ranges": [{ "startOffset": 47346, "endOffset": 47479, "count": 48 }], + "isBlockCoverage": true + }, + { + "functionName": "nullish", + "ranges": [{ "startOffset": 47491, "endOffset": 47564, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 47618, "endOffset": 47909, "count": 6 }], + "isBlockCoverage": true + }, + { + "functionName": "inst._zod.processJSONSchema", + "ranges": [{ "startOffset": 47744, "endOffset": 47819, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.unwrap", + "ranges": [{ "startOffset": 47839, "endOffset": 47868, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_default", + "ranges": [{ "startOffset": 47912, "endOffset": 48214, "count": 6 }], + "isBlockCoverage": true + }, + { + "functionName": "get defaultValue", + "ranges": [{ "startOffset": 48056, "endOffset": 48203, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 48270, "endOffset": 48525, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "prefault", + "ranges": [{ "startOffset": 48528, "endOffset": 48832, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 48894, "endOffset": 49155, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "nonoptional", + "ranges": [{ "startOffset": 49158, "endOffset": 49360, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 49414, "endOffset": 49667, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "success", + "ranges": [{ "startOffset": 49670, "endOffset": 49800, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 49850, "endOffset": 50135, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_catch", + "ranges": [{ "startOffset": 50138, "endOffset": 50363, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 50409, "endOffset": 50605, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "nan", + "ranges": [{ "startOffset": 50608, "endOffset": 50678, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 50726, "endOffset": 50970, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pipe", + "ranges": [{ "startOffset": 50973, "endOffset": 51142, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 51192, "endOffset": 51283, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "codec", + "ranges": [{ "startOffset": 51286, "endOffset": 51496, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "invertCodec", + "ranges": [{ "startOffset": 51497, "endOffset": 51748, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 51808, "endOffset": 51904, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 51962, "endOffset": 52217, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readonly", + "ranges": [{ "startOffset": 52220, "endOffset": 52353, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 52423, "endOffset": 52643, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "templateLiteral", + "ranges": [{ "startOffset": 52646, "endOffset": 52842, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 52890, "endOffset": 53136, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lazy", + "ranges": [{ "startOffset": 53139, "endOffset": 53251, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 53305, "endOffset": 53558, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "promise", + "ranges": [{ "startOffset": 53561, "endOffset": 53691, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 53747, "endOffset": 53953, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_function", + "ranges": [{ "startOffset": 53956, "endOffset": 54208, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 54260, "endOffset": 54462, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "check", + "ranges": [{ "startOffset": 54482, "endOffset": 54656, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "custom", + "ranges": [{ "startOffset": 54657, "endOffset": 54762, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "refine", + "ranges": [{ "startOffset": 54763, "endOffset": 54857, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "superRefine", + "ranges": [{ "startOffset": 54873, "endOffset": 54951, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_instanceof", + "ranges": [{ "startOffset": 55053, "endOffset": 55758, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stringbool", + "ranges": [{ "startOffset": 55792, "endOffset": 55928, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "json", + "ranges": [{ "startOffset": 55963, "endOffset": 56174, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "preprocess", + "ranges": [{ "startOffset": 56189, "endOffset": 56341, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "965", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/classic/checks.cjs", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 4016, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 725, "endOffset": 763, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 831, "endOffset": 870, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 937, "endOffset": 975, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1043, "endOffset": 1082, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1155, "endOffset": 1199, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1272, "endOffset": 1316, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1392, "endOffset": 1439, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1515, "endOffset": 1562, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1637, "endOffset": 1683, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1755, "endOffset": 1798, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1870, "endOffset": 1913, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1982, "endOffset": 2022, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2096, "endOffset": 2141, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2215, "endOffset": 2260, "count": 10 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2331, "endOffset": 2373, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2443, "endOffset": 2484, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2558, "endOffset": 2603, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2677, "endOffset": 2722, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2795, "endOffset": 2839, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2914, "endOffset": 2960, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3033, "endOffset": 3077, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3150, "endOffset": 3194, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3263, "endOffset": 3303, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3377, "endOffset": 3422, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3496, "endOffset": 3541, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3610, "endOffset": 3650, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3726, "endOffset": 3773, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3849, "endOffset": 3896, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3968, "endOffset": 4011, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "966", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/classic/iso.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 2413, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 2 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1478, "endOffset": 1583, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "datetime", + "ranges": [{ "startOffset": 1586, "endOffset": 1677, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1731, "endOffset": 1832, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "date", + "ranges": [{ "startOffset": 1835, "endOffset": 1914, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1968, "endOffset": 2069, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "time", + "ranges": [{ "startOffset": 2072, "endOffset": 2151, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2213, "endOffset": 2318, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "duration", + "ranges": [{ "startOffset": 2321, "endOffset": 2412, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "967", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/classic/parse.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 2271, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "968", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/classic/errors.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 2769, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 2 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "initializer", + "ranges": [{ "startOffset": 1336, "endOffset": 2502, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "969", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/classic/compat.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 2602, "count": 1 }, + { "startOffset": 429, "endOffset": 510, "count": 0 }, + { "startOffset": 686, "endOffset": 728, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 110, "endOffset": 427, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 432, "endOffset": 509, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 593, "endOffset": 684, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 688, "endOffset": 728, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 781, "endOffset": 1061, "count": 1 }, + { "startOffset": 840, "endOffset": 1060, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1947, "endOffset": 1988, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2059, "endOffset": 2100, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setErrorMap", + "ranges": [{ "startOffset": 2156, "endOffset": 2237, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getErrorMap", + "ranges": [{ "startOffset": 2283, "endOffset": 2347, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2476, "endOffset": 2512, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "970", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/classic/from-json-schema.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 25363, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 3 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "detectVersion", + "ranges": [{ "startOffset": 2846, "endOffset": 3351, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolveRef", + "ranges": [{ "startOffset": 3352, "endOffset": 4011, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "convertBaseSchema", + "ranges": [{ "startOffset": 4012, "endOffset": 20571, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "convertSchema", + "ranges": [{ "startOffset": 20572, "endOffset": 24145, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fromJSONSchema", + "ranges": [{ "startOffset": 24285, "endOffset": 25362, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "971", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/classic/coerce.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 1772, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 2 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "string", + "ranges": [{ "startOffset": 1340, "endOffset": 1426, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "number", + "ranges": [{ "startOffset": 1427, "endOffset": 1513, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "boolean", + "ranges": [{ "startOffset": 1514, "endOffset": 1603, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "bigint", + "ranges": [{ "startOffset": 1604, "endOffset": 1690, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "date", + "ranges": [{ "startOffset": 1691, "endOffset": 1771, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "972", + "url": "node:internal/navigator", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3589, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "getNavigatorPlatform", + "ranges": [{ "startOffset": 654, "endOffset": 1941, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2024, "endOffset": 2096, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "Navigator", + "ranges": [ + { "startOffset": 2101, "endOffset": 2221, "count": 1 }, + { "startOffset": 2176, "endOffset": 2220, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get hardwareConcurrency", + "ranges": [{ "startOffset": 2260, "endOffset": 2392, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get locks", + "ranges": [{ "startOffset": 2436, "endOffset": 2530, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get language", + "ranges": [{ "startOffset": 2569, "endOffset": 2724, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get languages", + "ranges": [{ "startOffset": 2770, "endOffset": 2874, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get userAgent", + "ranges": [{ "startOffset": 2913, "endOffset": 3079, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "get platform", + "ranges": [{ "startOffset": 3118, "endOffset": 3226, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "973", + "url": "", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 28, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1, "endOffset": 27, "count": 0 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "974", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/functions/create-card.function.ts", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 6052, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 134, "endOffset": 2497, "count": 1 }, + { "startOffset": 2430, "endOffset": 2494, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 351, "endOffset": 417, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 431, "endOffset": 521, "count": 1 }, + { "startOffset": 466, "endOffset": 520, "count": 3 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 538, "endOffset": 815, "count": 1 }, + { "startOffset": 593, "endOffset": 619, "count": 0 }, + { "startOffset": 660, "endOffset": 804, "count": 3 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 726, "endOffset": 739, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 833, "endOffset": 894, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "CreateCardInput", + "ranges": [{ "startOffset": 986, "endOffset": 1005, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "CreateCardOutput", + "ranges": [{ "startOffset": 1023, "endOffset": 1043, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createCard", + "ranges": [{ "startOffset": 1055, "endOffset": 1069, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 1825, "endOffset": 2418, "count": 2 }, + { "startOffset": 2131, "endOffset": 2134, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2023, "endOffset": 2059, "count": 2 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "975", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/functions/get-card-file-upload-url.function.ts", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 5541, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 147, "endOffset": 2478, "count": 1 }, + { "startOffset": 2381, "endOffset": 2475, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 364, "endOffset": 430, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 444, "endOffset": 534, "count": 1 }, + { "startOffset": 479, "endOffset": 533, "count": 3 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 551, "endOffset": 828, "count": 1 }, + { "startOffset": 606, "endOffset": 632, "count": 0 }, + { "startOffset": 673, "endOffset": 817, "count": 3 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 739, "endOffset": 752, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 846, "endOffset": 907, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "GetCardFileUploadUrlInput", + "ranges": [{ "startOffset": 1035, "endOffset": 1064, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "GetCardFileUploadUrlOutput", + "ranges": [{ "startOffset": 1092, "endOffset": 1122, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getCardFileUploadUrl", + "ranges": [{ "startOffset": 1144, "endOffset": 1168, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2007, "endOffset": 2369, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "976", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/functions/sign-card-file.function.ts", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 4528, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 137, "endOffset": 2081, "count": 1 }, + { "startOffset": 2008, "endOffset": 2078, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 354, "endOffset": 420, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 434, "endOffset": 524, "count": 1 }, + { "startOffset": 469, "endOffset": 523, "count": 3 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 541, "endOffset": 818, "count": 1 }, + { "startOffset": 596, "endOffset": 622, "count": 0 }, + { "startOffset": 663, "endOffset": 807, "count": 3 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 729, "endOffset": 742, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 836, "endOffset": 897, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "SignCardFileInput", + "ranges": [{ "startOffset": 997, "endOffset": 1018, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "SignCardFileOutput", + "ranges": [{ "startOffset": 1038, "endOffset": 1060, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "signCardFile", + "ranges": [{ "startOffset": 1074, "endOffset": 1090, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1663, "endOffset": 1996, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "977", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/.pikku/scheduler/pikku-schedulers-wirings.gen.ts", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 853, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 145, "endOffset": 254, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "978", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/wirings/archive-stale-cards.schedule.ts", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1253, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 140, "endOffset": 470, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "979", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/functions/archive-stale-cards.function.ts", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2078, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 142, "endOffset": 1315, "count": 1 }, + { "startOffset": 1274, "endOffset": 1312, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 359, "endOffset": 425, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 439, "endOffset": 529, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 546, "endOffset": 823, "count": 1 }, + { "startOffset": 601, "endOffset": 627, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 734, "endOffset": 747, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 841, "endOffset": 902, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "archiveStaleCards", + "ranges": [{ "startOffset": 1012, "endOffset": 1033, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1251, "endOffset": 1262, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "980", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/.pikku/trigger/pikku-trigger-wirings.gen.ts", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 788, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 140, "endOffset": 221, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "981", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/wirings/kanban.trigger.ts", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1073, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 126, "endOffset": 394, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "982", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/functions/on-card-event-trigger.function.ts", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 5483, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 144, "endOffset": 2432, "count": 1 }, + { "startOffset": 2341, "endOffset": 2429, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 361, "endOffset": 427, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 441, "endOffset": 531, "count": 1 }, + { "startOffset": 476, "endOffset": 530, "count": 3 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 548, "endOffset": 825, "count": 1 }, + { "startOffset": 603, "endOffset": 629, "count": 0 }, + { "startOffset": 670, "endOffset": 814, "count": 3 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 736, "endOffset": 749, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 843, "endOffset": 904, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "OnCardEventTriggerInput", + "ranges": [{ "startOffset": 1024, "endOffset": 1051, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "OnCardEventTriggerOutput", + "ranges": [{ "startOffset": 1077, "endOffset": 1105, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "onCardEventTrigger", + "ranges": [{ "startOffset": 1125, "endOffset": 1147, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1806, "endOffset": 2329, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "983", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/.pikku/function/pikku-functions.gen.ts", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 9467, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 135, "endOffset": 3852, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "984", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/functions/create-card-v1.function.ts", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 5840, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 137, "endOffset": 2469, "count": 1 }, + { "startOffset": 2396, "endOffset": 2466, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 354, "endOffset": 420, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 434, "endOffset": 524, "count": 1 }, + { "startOffset": 469, "endOffset": 523, "count": 3 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 541, "endOffset": 818, "count": 1 }, + { "startOffset": 596, "endOffset": 622, "count": 0 }, + { "startOffset": 663, "endOffset": 807, "count": 3 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 729, "endOffset": 742, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 836, "endOffset": 897, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "CreateCardV1Input", + "ranges": [{ "startOffset": 997, "endOffset": 1018, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "CreateCardV1Output", + "ranges": [{ "startOffset": 1038, "endOffset": 1060, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createCardV1", + "ranges": [{ "startOffset": 1074, "endOffset": 1090, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1788, "endOffset": 2384, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "985", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/wirings/kanban.mcp.ts", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 9866, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 122, "endOffset": 3471, "count": 1 }, + { "startOffset": 3399, "endOffset": 3468, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 339, "endOffset": 405, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 419, "endOffset": 509, "count": 1 }, + { "startOffset": 454, "endOffset": 508, "count": 3 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 526, "endOffset": 803, "count": 1 }, + { "startOffset": 581, "endOffset": 607, "count": 0 }, + { "startOffset": 648, "endOffset": 792, "count": 3 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 714, "endOffset": 727, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 821, "endOffset": 882, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "CreateCardToolInput", + "ranges": [{ "startOffset": 958, "endOffset": 981, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createCardTool", + "ranges": [{ "startOffset": 997, "endOffset": 1015, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "listCardsTool", + "ranges": [{ "startOffset": 1030, "endOffset": 1047, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1350, "endOffset": 1522, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1854, "endOffset": 2421, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2496, "endOffset": 2677, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2740, "endOffset": 3053, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "986", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/functions/enrich-card.function.ts", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 5018, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 134, "endOffset": 2207, "count": 1 }, + { "startOffset": 2140, "endOffset": 2204, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 351, "endOffset": 417, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 431, "endOffset": 521, "count": 1 }, + { "startOffset": 466, "endOffset": 520, "count": 3 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 538, "endOffset": 815, "count": 1 }, + { "startOffset": 593, "endOffset": 619, "count": 0 }, + { "startOffset": 660, "endOffset": 804, "count": 3 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 726, "endOffset": 739, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 833, "endOffset": 894, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "EnrichCardInput", + "ranges": [{ "startOffset": 986, "endOffset": 1005, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "EnrichCardOutput", + "ranges": [{ "startOffset": 1023, "endOffset": 1043, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "enrichCard", + "ranges": [{ "startOffset": 1055, "endOffset": 1069, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1659, "endOffset": 2128, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "987", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/functions/list-cards-v1.function.ts", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3701, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 136, "endOffset": 1822, "count": 1 }, + { "startOffset": 1769, "endOffset": 1819, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 353, "endOffset": 419, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 433, "endOffset": 523, "count": 1 }, + { "startOffset": 468, "endOffset": 522, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 540, "endOffset": 817, "count": 1 }, + { "startOffset": 595, "endOffset": 621, "count": 0 }, + { "startOffset": 662, "endOffset": 806, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 728, "endOffset": 741, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 835, "endOffset": 896, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "ListCardsV1Output", + "ranges": [{ "startOffset": 994, "endOffset": 1015, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "listCardsV1", + "ranges": [{ "startOffset": 1028, "endOffset": 1043, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1569, "endOffset": 1757, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "988", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/functions/notify-card-created.function.ts", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3172, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 142, "endOffset": 1709, "count": 1 }, + { "startOffset": 1645, "endOffset": 1706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 359, "endOffset": 425, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 439, "endOffset": 529, "count": 1 }, + { "startOffset": 474, "endOffset": 528, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 546, "endOffset": 823, "count": 1 }, + { "startOffset": 601, "endOffset": 627, "count": 0 }, + { "startOffset": 668, "endOffset": 812, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 734, "endOffset": 747, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 841, "endOffset": 902, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "NotifyCardCreatedInput", + "ranges": [{ "startOffset": 1017, "endOffset": 1043, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "notifyCardCreated", + "ranges": [{ "startOffset": 1062, "endOffset": 1083, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1531, "endOffset": 1633, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "989", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/.pikku/workflow/pikku-workflow-wirings.gen.ts", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1498, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 142, "endOffset": 907, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 351, "endOffset": 628, "count": 1 }, + { "startOffset": 406, "endOffset": 432, "count": 0 }, + { "startOffset": 473, "endOffset": 617, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 539, "endOffset": 552, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 646, "endOffset": 707, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "990", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/.pikku/workflow/pikku-workflow-wirings-meta.gen.ts", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2362, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 147, "endOffset": 1211, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 422, "endOffset": 699, "count": 1 }, + { "startOffset": 477, "endOffset": 503, "count": 0 }, + { "startOffset": 544, "endOffset": 688, "count": 6 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 610, "endOffset": 623, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toESM", + "ranges": [ + { "startOffset": 712, "endOffset": 900, "count": 1 }, + { "startOffset": 782, "endOffset": 785, "count": 0 }, + { "startOffset": 887, "endOffset": 894, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "991", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/.pikku/queue/pikku-queue-workers-wirings.gen.ts", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 810, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 144, "endOffset": 231, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "992", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/wirings/card-events.queue.ts", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1200, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 129, "endOffset": 461, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "993", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/functions/process-card-event.function.ts", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3305, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 141, "endOffset": 1670, "count": 1 }, + { "startOffset": 1608, "endOffset": 1667, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 358, "endOffset": 424, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 438, "endOffset": 528, "count": 1 }, + { "startOffset": 473, "endOffset": 527, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 545, "endOffset": 822, "count": 1 }, + { "startOffset": 600, "endOffset": 626, "count": 0 }, + { "startOffset": 667, "endOffset": 811, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 733, "endOffset": 746, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 840, "endOffset": 901, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "ProcessCardEventInput", + "ranges": [{ "startOffset": 1013, "endOffset": 1038, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "processCardEvent", + "ranges": [{ "startOffset": 1056, "endOffset": 1076, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1481, "endOffset": 1596, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "994", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/.pikku/channel/pikku-channels.gen.ts", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 767, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 133, "endOffset": 212, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "995", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/wirings/cards.channel.ts", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2467, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 125, "endOffset": 756, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "996", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/functions/cards-channel.function.ts", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 7815, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 136, "endOffset": 2408, "count": 1 }, + { "startOffset": 2284, "endOffset": 2405, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 355, "endOffset": 445, "count": 1 }, + { "startOffset": 390, "endOffset": 444, "count": 6 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 462, "endOffset": 739, "count": 1 }, + { "startOffset": 517, "endOffset": 543, "count": 0 }, + { "startOffset": 584, "endOffset": 728, "count": 6 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 650, "endOffset": 663, "count": 6 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 757, "endOffset": 818, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "onCardsClearSession", + "ranges": [{ "startOffset": 918, "endOffset": 941, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "onCardsConnect", + "ranges": [{ "startOffset": 957, "endOffset": 975, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "onCardsDisconnect", + "ranges": [{ "startOffset": 994, "endOffset": 1015, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "onCardsEcho", + "ranges": [{ "startOffset": 1028, "endOffset": 1043, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "onCardsGetSession", + "ranges": [{ "startOffset": 1062, "endOffset": 1083, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "onCardsSetSession", + "ranges": [{ "startOffset": 1102, "endOffset": 1123, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1286, "endOffset": 1504, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1577, "endOffset": 1679, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1733, "endOffset": 1795, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1855, "endOffset": 1974, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2034, "endOffset": 2136, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2198, "endOffset": 2281, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "997", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/.pikku/mcp/pikku-mcp-wirings.gen.ts", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 760, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 132, "endOffset": 205, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "998", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/.pikku/cli/pikku-cli-wirings.gen.ts", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 748, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 132, "endOffset": 205, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "999", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/wirings/kanban.cli.ts", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 4518, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 122, "endOffset": 1295, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 386, "endOffset": 595, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 648, "endOffset": 739, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1225, "endOffset": 1289, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1000", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/addon-console/dist/.pikku/pikku-bootstrap.gen.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1428, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 146, "endOffset": 549, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1001", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/addon-console/dist/.pikku/rpc/pikku-rpc-wirings-meta.internal.gen.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2126, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 166, "endOffset": 1203, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 441, "endOffset": 718, "count": 1 }, + { "startOffset": 496, "endOffset": 522, "count": 0 }, + { "startOffset": 563, "endOffset": 707, "count": 50 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 629, "endOffset": 642, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toESM", + "ranges": [ + { "startOffset": 731, "endOffset": 919, "count": 1 }, + { "startOffset": 801, "endOffset": 804, "count": 0 }, + { "startOffset": 906, "endOffset": 913, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1002", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/addon-console/dist/.pikku/function/pikku-functions-meta.gen.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2060, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 160, "endOffset": 1169, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 435, "endOffset": 712, "count": 1 }, + { "startOffset": 490, "endOffset": 516, "count": 0 }, + { "startOffset": 557, "endOffset": 701, "count": 50 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 623, "endOffset": 636, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toESM", + "ranges": [ + { "startOffset": 725, "endOffset": 913, "count": 1 }, + { "startOffset": 795, "endOffset": 798, "count": 0 }, + { "startOffset": 900, "endOffset": 907, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1003", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/addon-console/dist/.pikku/addon/pikku-package.gen.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2132, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 150, "endOffset": 681, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1004", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/addon-console/dist/src/services.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 7392, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 132, "endOffset": 3225, "count": 1 }, + { "startOffset": 3178, "endOffset": 3222, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 404, "endOffset": 494, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 511, "endOffset": 788, "count": 1 }, + { "startOffset": 566, "endOffset": 592, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 699, "endOffset": 712, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toESM", + "ranges": [{ "startOffset": 801, "endOffset": 989, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 1007, "endOffset": 1068, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "createSingletonServices", + "ranges": [{ "startOffset": 1144, "endOffset": 1171, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1589, "endOffset": 3175, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1005", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/addon-console/dist/.pikku/pikku-types.gen.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2949, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 142, "endOffset": 1686, "count": 1 }, + { "startOffset": 1414, "endOffset": 1683, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 351, "endOffset": 628, "count": 11 }, + { "startOffset": 406, "endOffset": 432, "count": 0 }, + { "startOffset": 473, "endOffset": 617, "count": 62 }, + { "startOffset": 502, "endOffset": 516, "count": 53 }, + { "startOffset": 517, "endOffset": 617, "count": 53 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 539, "endOffset": 552, "count": 51 }], + "isBlockCoverage": true + }, + { + "functionName": "__reExport", + "ranges": [{ "startOffset": 644, "endOffset": 760, "count": 5 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 778, "endOffset": 839, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1006", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/addon-console/dist/.pikku/function/pikku-function-types.gen.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 19910, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 160, "endOffset": 4539, "count": 1 }, + { "startOffset": 4212, "endOffset": 4536, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 364, "endOffset": 430, "count": 18 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 444, "endOffset": 534, "count": 1 }, + { "startOffset": 479, "endOffset": 533, "count": 19 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 551, "endOffset": 828, "count": 1 }, + { "startOffset": 606, "endOffset": 632, "count": 0 }, + { "startOffset": 673, "endOffset": 817, "count": 19 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 739, "endOffset": 752, "count": 50 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 846, "endOffset": 907, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "addGlobalMiddleware", + "ranges": [{ "startOffset": 1011, "endOffset": 1034, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addGlobalPermission", + "ranges": [{ "startOffset": 1055, "endOffset": 1078, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addTagMiddleware", + "ranges": [{ "startOffset": 1096, "endOffset": 1116, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addTagPermission", + "ranges": [{ "startOffset": 1134, "endOffset": 1154, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pikkuApprovalDescription", + "ranges": [{ "startOffset": 1180, "endOffset": 1208, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pikkuAuth", + "ranges": [{ "startOffset": 1219, "endOffset": 1232, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pikkuConfig", + "ranges": [{ "startOffset": 1245, "endOffset": 1260, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pikkuFunc", + "ranges": [{ "startOffset": 1271, "endOffset": 1284, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pikkuListFunc", + "ranges": [{ "startOffset": 1299, "endOffset": 1316, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pikkuMiddleware", + "ranges": [{ "startOffset": 1333, "endOffset": 1352, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pikkuMiddlewareFactory", + "ranges": [{ "startOffset": 1376, "endOffset": 1402, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pikkuPermission", + "ranges": [{ "startOffset": 1419, "endOffset": 1438, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pikkuPermissionFactory", + "ranges": [{ "startOffset": 1462, "endOffset": 1488, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pikkuServices", + "ranges": [{ "startOffset": 1503, "endOffset": 1520, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pikkuSessionlessFunc", + "ranges": [{ "startOffset": 1542, "endOffset": 1566, "count": 50 }], + "isBlockCoverage": true + }, + { + "functionName": "pikkuVoidFunc", + "ranges": [{ "startOffset": 1581, "endOffset": 1598, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pikkuWireServices", + "ranges": [{ "startOffset": 1617, "endOffset": 1638, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ref", + "ranges": [{ "startOffset": 1643, "endOffset": 1650, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "wireAddon", + "ranges": [{ "startOffset": 1661, "endOffset": 1685, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1981, "endOffset": 2059, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2102, "endOffset": 2151, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2194, "endOffset": 2272, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2328, "endOffset": 2353, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2416, "endOffset": 2441, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2506, "endOffset": 2521, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pikkuFunc", + "ranges": [{ "startOffset": 2550, "endOffset": 2619, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2676, "endOffset": 2710, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pikkuSessionlessFunc", + "ranges": [ + { "startOffset": 2728, "endOffset": 2808, "count": 50 }, + { "startOffset": 2795, "endOffset": 2802, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2887, "endOffset": 2938, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2973, "endOffset": 3074, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3107, "endOffset": 3117, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3160, "endOffset": 3354, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3403, "endOffset": 3595, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3647, "endOffset": 3744, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3798, "endOffset": 3888, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3942, "endOffset": 4041, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4095, "endOffset": 4187, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1007", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/addon-console/dist/.pikku/trigger/pikku-trigger-types.gen.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3937, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 158, "endOffset": 1654, "count": 1 }, + { "startOffset": 1584, "endOffset": 1651, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 362, "endOffset": 428, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 442, "endOffset": 532, "count": 1 }, + { "startOffset": 477, "endOffset": 531, "count": 3 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 549, "endOffset": 826, "count": 1 }, + { "startOffset": 604, "endOffset": 630, "count": 0 }, + { "startOffset": 671, "endOffset": 815, "count": 3 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 737, "endOffset": 750, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 844, "endOffset": 905, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "pikkuTriggerFunc", + "ranges": [{ "startOffset": 1004, "endOffset": 1024, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "wireTrigger", + "ranges": [{ "startOffset": 1037, "endOffset": 1052, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "wireTriggerSource", + "ranges": [{ "startOffset": 1071, "endOffset": 1092, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pikkuTriggerFunc", + "ranges": [{ "startOffset": 1206, "endOffset": 1341, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1410, "endOffset": 1460, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1507, "endOffset": 1561, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1008", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/addon-console/dist/.pikku/console/pikku-node-types.gen.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1272, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 155, "endOffset": 817, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 364, "endOffset": 641, "count": 1 }, + { "startOffset": 419, "endOffset": 445, "count": 0 }, + { "startOffset": 486, "endOffset": 630, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 552, "endOffset": 565, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 659, "endOffset": 720, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1009", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/addon-console/dist/.pikku/secrets/pikku-secret-types.gen.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1698, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 157, "endOffset": 1091, "count": 1 }, + { "startOffset": 1057, "endOffset": 1088, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 363, "endOffset": 453, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 470, "endOffset": 747, "count": 1 }, + { "startOffset": 525, "endOffset": 551, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 658, "endOffset": 671, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 765, "endOffset": 826, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "wireSecret", + "ranges": [{ "startOffset": 917, "endOffset": 945, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1010", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/addon-console/dist/.pikku/addon/pikku-addon-types.gen.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 8208, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 154, "endOffset": 2593, "count": 1 }, + { "startOffset": 2511, "endOffset": 2590, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 358, "endOffset": 424, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 438, "endOffset": 528, "count": 1 }, + { "startOffset": 473, "endOffset": 527, "count": 3 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 545, "endOffset": 822, "count": 1 }, + { "startOffset": 600, "endOffset": 626, "count": 0 }, + { "startOffset": 667, "endOffset": 811, "count": 3 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 733, "endOffset": 746, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 840, "endOffset": 901, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "pikkuAddonConfig", + "ranges": [{ "startOffset": 996, "endOffset": 1016, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pikkuAddonServices", + "ranges": [{ "startOffset": 1036, "endOffset": 1058, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "pikkuAddonWireServices", + "ranges": [{ "startOffset": 1082, "endOffset": 1108, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1350, "endOffset": 1619, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1672, "endOffset": 2133, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1686, "endOffset": 2132, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2192, "endOffset": 2483, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1011", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/addon-console/dist/.pikku/secrets/pikku-secrets.gen.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2419, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 152, "endOffset": 1352, "count": 1 }, + { "startOffset": 1310, "endOffset": 1349, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 356, "endOffset": 422, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 436, "endOffset": 526, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 543, "endOffset": 820, "count": 1 }, + { "startOffset": 598, "endOffset": 624, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 731, "endOffset": 744, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 838, "endOffset": 899, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "TypedSecretService", + "ranges": [{ "startOffset": 988, "endOffset": 1010, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1214, "endOffset": 1255, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "TypedSecretService", + "ranges": [{ "startOffset": 1255, "endOffset": 1308, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1012", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/services/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 6798, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 125, "endOffset": 4355, "count": 1 }, + { "startOffset": 3823, "endOffset": 4352, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 331, "endOffset": 421, "count": 1 }, + { "startOffset": 366, "endOffset": 420, "count": 22 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 438, "endOffset": 715, "count": 1 }, + { "startOffset": 493, "endOffset": 519, "count": 0 }, + { "startOffset": 560, "endOffset": 704, "count": 22 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 626, "endOffset": 639, "count": 10 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 733, "endOffset": 794, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "ConsoleLogger", + "ranges": [{ "startOffset": 860, "endOffset": 899, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "InMemoryAIRunStateService", + "ranges": [{ "startOffset": 926, "endOffset": 993, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "InMemoryQueueService", + "ranges": [{ "startOffset": 1015, "endOffset": 1070, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "InMemorySessionStore", + "ranges": [{ "startOffset": 1092, "endOffset": 1147, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "InMemoryTriggerService", + "ranges": [{ "startOffset": 1171, "endOffset": 1230, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "InMemoryWorkflowService", + "ranges": [{ "startOffset": 1255, "endOffset": 1316, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "JsonConsoleLogger", + "ranges": [{ "startOffset": 1335, "endOffset": 1378, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "LocalCredentialService", + "ranges": [{ "startOffset": 1402, "endOffset": 1460, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "LocalGatewayService", + "ranges": [{ "startOffset": 1481, "endOffset": 1533, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "LocalSecretService", + "ranges": [{ "startOffset": 1553, "endOffset": 1596, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "LocalVariablesService", + "ranges": [{ "startOffset": 1619, "endOffset": 1667, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "LogLevel", + "ranges": [{ "startOffset": 1677, "endOffset": 1703, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "PikkuCredentialWireService", + "ranges": [{ "startOffset": 1731, "endOffset": 1792, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "PikkuSessionService", + "ranges": [{ "startOffset": 1813, "endOffset": 1864, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "ScopedSecretService", + "ranges": [{ "startOffset": 1885, "endOffset": 1937, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "TypedCredentialService", + "ranges": [{ "startOffset": 1961, "endOffset": 2019, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "TypedSecretService", + "ranges": [{ "startOffset": 2039, "endOffset": 2089, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "TypedVariablesService", + "ranges": [{ "startOffset": 2112, "endOffset": 2168, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "createFunctionSessionWireProps", + "ranges": [{ "startOffset": 2200, "endOffset": 2262, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "createMiddlewareCredentialWireProps", + "ranges": [{ "startOffset": 2299, "endOffset": 2369, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createMiddlewareSessionWireProps", + "ranges": [{ "startOffset": 2403, "endOffset": 2467, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createWireServicesCredentialWireProps", + "ranges": [{ "startOffset": 2506, "endOffset": 2578, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1013", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/services/logger.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2502, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 126, "endOffset": 1247, "count": 1 }, + { "startOffset": 1215, "endOffset": 1244, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 332, "endOffset": 422, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 439, "endOffset": 716, "count": 1 }, + { "startOffset": 494, "endOffset": 520, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 627, "endOffset": 640, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 734, "endOffset": 795, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "LogLevel", + "ranges": [{ "startOffset": 852, "endOffset": 864, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 925, "endOffset": 1187, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1014", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/services/scoped-secret-service.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 4375, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 141, "endOffset": 1844, "count": 1 }, + { "startOffset": 1801, "endOffset": 1841, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 345, "endOffset": 411, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 425, "endOffset": 515, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 532, "endOffset": 809, "count": 1 }, + { "startOffset": 587, "endOffset": 613, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 720, "endOffset": 733, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 827, "endOffset": 888, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "ScopedSecretService", + "ranges": [{ "startOffset": 986, "endOffset": 1009, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1097, "endOffset": 1139, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1139, "endOffset": 1158, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "ScopedSecretService", + "ranges": [{ "startOffset": 1159, "endOffset": 1242, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "assertAllowed", + "ranges": [{ "startOffset": 1242, "endOffset": 1348, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getSecret", + "ranges": [{ "startOffset": 1348, "endOffset": 1428, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getSecretJSON", + "ranges": [{ "startOffset": 1428, "endOffset": 1516, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hasSecret", + "ranges": [{ "startOffset": 1516, "endOffset": 1596, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setSecretJSON", + "ranges": [{ "startOffset": 1596, "endOffset": 1702, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "deleteSecret", + "ranges": [{ "startOffset": 1702, "endOffset": 1799, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1015", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/services/typed-secret-service.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 4902, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 140, "endOffset": 1959, "count": 1 }, + { "startOffset": 1917, "endOffset": 1956, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 344, "endOffset": 410, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 424, "endOffset": 514, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 531, "endOffset": 808, "count": 1 }, + { "startOffset": 586, "endOffset": 612, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 719, "endOffset": 732, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 826, "endOffset": 887, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "TypedSecretService", + "ranges": [{ "startOffset": 982, "endOffset": 1004, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1090, "endOffset": 1131, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1131, "endOffset": 1154, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "TypedSecretService", + "ranges": [{ "startOffset": 1155, "endOffset": 1250, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getSecretJSON", + "ranges": [{ "startOffset": 1250, "endOffset": 1314, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getSecret", + "ranges": [{ "startOffset": 1314, "endOffset": 1370, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hasSecret", + "ranges": [{ "startOffset": 1370, "endOffset": 1426, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setSecretJSON", + "ranges": [{ "startOffset": 1426, "endOffset": 1502, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "deleteSecret", + "ranges": [{ "startOffset": 1502, "endOffset": 1564, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getAllStatus", + "ranges": [{ "startOffset": 1564, "endOffset": 1822, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getMissing", + "ranges": [{ "startOffset": 1822, "endOffset": 1915, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1016", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/services/typed-variables-service.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 5186, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 143, "endOffset": 2019, "count": 1 }, + { "startOffset": 1974, "endOffset": 2016, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 347, "endOffset": 413, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 427, "endOffset": 517, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 534, "endOffset": 811, "count": 1 }, + { "startOffset": 589, "endOffset": 615, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 722, "endOffset": 735, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 829, "endOffset": 890, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "TypedVariablesService", + "ranges": [{ "startOffset": 994, "endOffset": 1019, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1111, "endOffset": 1155, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1155, "endOffset": 1178, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "TypedVariablesService", + "ranges": [{ "startOffset": 1179, "endOffset": 1274, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1274, "endOffset": 1316, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getJSON", + "ranges": [{ "startOffset": 1316, "endOffset": 1366, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getAll", + "ranges": [{ "startOffset": 1366, "endOffset": 1406, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 1406, "endOffset": 1460, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setJSON", + "ranges": [{ "startOffset": 1460, "endOffset": 1522, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "has", + "ranges": [{ "startOffset": 1522, "endOffset": 1564, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "delete", + "ranges": [{ "startOffset": 1564, "endOffset": 1612, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getAllStatus", + "ranges": [{ "startOffset": 1612, "endOffset": 1879, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getMissing", + "ranges": [{ "startOffset": 1879, "endOffset": 1972, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1017", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/services/local-secrets.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 7463, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 133, "endOffset": 2068, "count": 1 }, + { "startOffset": 2026, "endOffset": 2065, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 337, "endOffset": 403, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 417, "endOffset": 507, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 524, "endOffset": 801, "count": 1 }, + { "startOffset": 579, "endOffset": 605, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 712, "endOffset": 725, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 819, "endOffset": 880, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "LocalSecretService", + "ranges": [{ "startOffset": 961, "endOffset": 983, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1121, "endOffset": 1162, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1162, "endOffset": 1192, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "LocalSecretService", + "ranges": [{ "startOffset": 1193, "endOffset": 1290, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getSecretJSON", + "ranges": [{ "startOffset": 1290, "endOffset": 1527, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getSecret", + "ranges": [{ "startOffset": 1527, "endOffset": 1736, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setSecretJSON", + "ranges": [{ "startOffset": 1736, "endOffset": 1816, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hasSecret", + "ranges": [{ "startOffset": 1816, "endOffset": 1970, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "deleteSecret", + "ranges": [{ "startOffset": 1970, "endOffset": 2024, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1018", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/services/local-credential-service.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 6260, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 144, "endOffset": 2205, "count": 1 }, + { "startOffset": 2159, "endOffset": 2202, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 348, "endOffset": 414, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 428, "endOffset": 518, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 535, "endOffset": 812, "count": 1 }, + { "startOffset": 590, "endOffset": 616, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 723, "endOffset": 736, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 830, "endOffset": 891, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "LocalCredentialService", + "ranges": [{ "startOffset": 998, "endOffset": 1024, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1118, "endOffset": 1163, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1163, "endOffset": 1176, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "makeKey", + "ranges": [{ "startOffset": 1177, "endOffset": 1237, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1237, "endOffset": 1347, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 1347, "endOffset": 1438, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "delete", + "ranges": [{ "startOffset": 1438, "endOffset": 1523, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "has", + "ranges": [{ "startOffset": 1523, "endOffset": 1609, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getAll", + "ranges": [{ "startOffset": 1609, "endOffset": 1788, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getUsersWithCredential", + "ranges": [{ "startOffset": 1788, "endOffset": 1977, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getAllUsers", + "ranges": [{ "startOffset": 1977, "endOffset": 2157, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1019", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/services/logger-console.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 13415, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 134, "endOffset": 3964, "count": 1 }, + { "startOffset": 3909, "endOffset": 3961, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 338, "endOffset": 404, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 418, "endOffset": 508, "count": 1 }, + { "startOffset": 453, "endOffset": 507, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 525, "endOffset": 802, "count": 1 }, + { "startOffset": 580, "endOffset": 606, "count": 0 }, + { "startOffset": 647, "endOffset": 791, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 713, "endOffset": 726, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 820, "endOffset": 881, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "ConsoleLogger", + "ranges": [{ "startOffset": 959, "endOffset": 976, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "JsonConsoleLogger", + "ranges": [{ "startOffset": 995, "endOffset": 1016, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1132, "endOffset": 1168, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1168, "endOffset": 1208, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "ConsoleLogger", + "ranges": [{ "startOffset": 1209, "endOffset": 1268, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setLevel", + "ranges": [{ "startOffset": 1268, "endOffset": 1301, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "scope", + "ranges": [{ "startOffset": 1301, "endOffset": 1394, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "log_", + "ranges": [{ "startOffset": 1394, "endOffset": 1487, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "trace", + "ranges": [{ "startOffset": 1487, "endOffset": 1606, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "debug", + "ranges": [{ "startOffset": 1606, "endOffset": 1725, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "info", + "ranges": [{ "startOffset": 1725, "endOffset": 1850, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "warn", + "ranges": [{ "startOffset": 1850, "endOffset": 1975, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1975, "endOffset": 2243, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "log", + "ranges": [{ "startOffset": 2243, "endOffset": 2406, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2431, "endOffset": 2471, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2471, "endOffset": 2512, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "JsonConsoleLogger", + "ranges": [{ "startOffset": 2513, "endOffset": 2555, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setLevel", + "ranges": [{ "startOffset": 2555, "endOffset": 2588, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "scope", + "ranges": [{ "startOffset": 2588, "endOffset": 2685, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "trace", + "ranges": [{ "startOffset": 2685, "endOffset": 2800, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "debug", + "ranges": [{ "startOffset": 2800, "endOffset": 2915, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "info", + "ranges": [{ "startOffset": 2915, "endOffset": 3036, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "warn", + "ranges": [{ "startOffset": 3036, "endOffset": 3157, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 3157, "endOffset": 3511, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "log", + "ranges": [{ "startOffset": 3511, "endOffset": 3651, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "emit", + "ranges": [{ "startOffset": 3651, "endOffset": 3907, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1020", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/services/in-memory-workflow-service.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 36200, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 146, "endOffset": 8849, "count": 1 }, + { "startOffset": 8802, "endOffset": 8846, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 350, "endOffset": 416, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 430, "endOffset": 520, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 537, "endOffset": 814, "count": 1 }, + { "startOffset": 592, "endOffset": 618, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 725, "endOffset": 738, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 832, "endOffset": 893, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "InMemoryWorkflowService", + "ranges": [{ "startOffset": 1005, "endOffset": 1032, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1315, "endOffset": 1361, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1361, "endOffset": 1485, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "createRunImpl", + "ranges": [{ "startOffset": 1486, "endOffset": 1944, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getRun", + "ranges": [{ "startOffset": 1944, "endOffset": 1992, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getRunHistory", + "ranges": [{ "startOffset": 1992, "endOffset": 2058, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "updateRunStatusImpl", + "ranges": [{ "startOffset": 2058, "endOffset": 2257, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "insertStepStateImpl", + "ranges": [{ "startOffset": 2257, "endOffset": 2761, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getStepState", + "ranges": [{ "startOffset": 2761, "endOffset": 2989, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setStepRunningImpl", + "ranges": [{ "startOffset": 2989, "endOffset": 3164, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setStepScheduledImpl", + "ranges": [{ "startOffset": 3164, "endOffset": 3345, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setStepResultImpl", + "ranges": [{ "startOffset": 3345, "endOffset": 3549, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setStepErrorImpl", + "ranges": [{ "startOffset": 3549, "endOffset": 3795, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setStepChildRunIdImpl", + "ranges": [{ "startOffset": 3795, "endOffset": 3965, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createRetryAttemptImpl", + "ranges": [{ "startOffset": 3965, "endOffset": 4903, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "listRuns", + "ranges": [{ "startOffset": 4903, "endOffset": 5288, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getRunSteps", + "ranges": [{ "startOffset": 5288, "endOffset": 5518, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getDistinctWorkflowNames", + "ranges": [{ "startOffset": 5518, "endOffset": 5657, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "deleteRun", + "ranges": [{ "startOffset": 5657, "endOffset": 6017, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "withRunLock", + "ranges": [{ "startOffset": 6017, "endOffset": 6055, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "withStepLock", + "ranges": [{ "startOffset": 6055, "endOffset": 6107, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "close", + "ranges": [{ "startOffset": 6107, "endOffset": 6281, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getCompletedGraphState", + "ranges": [{ "startOffset": 6281, "endOffset": 6929, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getNodesWithoutSteps", + "ranges": [{ "startOffset": 6929, "endOffset": 7189, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getNodeResults", + "ranges": [{ "startOffset": 7189, "endOffset": 7403, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setBranchKey", + "ranges": [{ "startOffset": 7403, "endOffset": 7561, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setBranchTakenImpl", + "ranges": [{ "startOffset": 7561, "endOffset": 7642, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "updateRunStateImpl", + "ranges": [{ "startOffset": 7642, "endOffset": 7775, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getRunState", + "ranges": [{ "startOffset": 7775, "endOffset": 7836, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "upsertWorkflowVersionImpl", + "ranges": [{ "startOffset": 7836, "endOffset": 7993, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "updateWorkflowVersionStatusImpl", + "ranges": [{ "startOffset": 7993, "endOffset": 8167, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getWorkflowVersion", + "ranges": [{ "startOffset": 8167, "endOffset": 8346, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getAIGeneratedWorkflows", + "ranges": [{ "startOffset": 8346, "endOffset": 8800, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1021", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/wirings/workflow/pikku-workflow-service.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 129753, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 150, "endOffset": 30938, "count": 1 }, + { "startOffset": 30691, "endOffset": 30935, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 354, "endOffset": 420, "count": 11 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 434, "endOffset": 524, "count": 1 }, + { "startOffset": 469, "endOffset": 523, "count": 9 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 541, "endOffset": 818, "count": 1 }, + { "startOffset": 596, "endOffset": 622, "count": 0 }, + { "startOffset": 663, "endOffset": 807, "count": 9 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 729, "endOffset": 742, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 836, "endOffset": 897, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "PikkuWorkflowService", + "ranges": [{ "startOffset": 998, "endOffset": 1022, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "WorkflowAsyncException", + "ranges": [{ "startOffset": 1046, "endOffset": 1072, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "WorkflowCancelledException", + "ranges": [{ "startOffset": 1100, "endOffset": 1130, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "WorkflowNotFoundError", + "ranges": [{ "startOffset": 1153, "endOffset": 1178, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "WorkflowRunFailedError", + "ranges": [{ "startOffset": 1202, "endOffset": 1228, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "WorkflowRunNotFoundError", + "ranges": [{ "startOffset": 1254, "endOffset": 1282, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "WorkflowServiceNotInitialized", + "ranges": [{ "startOffset": 1313, "endOffset": 1346, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "WorkflowStepNameNotString", + "ranges": [{ "startOffset": 1373, "endOffset": 1402, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "WorkflowSuspendedException", + "ranges": [{ "startOffset": 1430, "endOffset": 1460, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2108, "endOffset": 2758, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2803, "endOffset": 2859, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2914, "endOffset": 2959, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2959, "endOffset": 2973, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "WorkflowAsyncException", + "ranges": [{ "startOffset": 2974, "endOffset": 3123, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3171, "endOffset": 3220, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3220, "endOffset": 3232, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "WorkflowCancelledException", + "ranges": [{ "startOffset": 3233, "endOffset": 3370, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3418, "endOffset": 3467, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3467, "endOffset": 3479, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "WorkflowSuspendedException", + "ranges": [{ "startOffset": 3480, "endOffset": 3617, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3686, "endOffset": 3730, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "WorkflowNotFoundError", + "ranges": [{ "startOffset": 3730, "endOffset": 3785, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3957, "endOffset": 4004, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "WorkflowRunNotFoundError", + "ranges": [{ "startOffset": 4004, "endOffset": 4065, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4242, "endOffset": 4287, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4287, "endOffset": 4294, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "WorkflowRunFailedError", + "ranges": [{ "startOffset": 4295, "endOffset": 4391, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4544, "endOffset": 4596, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4643, "endOffset": 4691, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "WorkflowStepNameNotString", + "ranges": [{ "startOffset": 4691, "endOffset": 4788, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4898, "endOffset": 4941, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4941, "endOffset": 5039, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "PikkuWorkflowService", + "ranges": [{ "startOffset": 5040, "endOffset": 5173, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "safeMirror", + "ranges": [{ "startOffset": 5173, "endOffset": 5340, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "rewireQueueWorkers", + "ranges": [{ "startOffset": 5340, "endOffset": 5385, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "wireQueueWorkers", + "ranges": [{ "startOffset": 5385, "endOffset": 7428, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isInline", + "ranges": [{ "startOffset": 7428, "endOffset": 7478, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "registerInlineRun", + "ranges": [{ "startOffset": 7478, "endOffset": 7530, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "unregisterInlineRun", + "ranges": [{ "startOffset": 7530, "endOffset": 7587, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "registerWorkflowVersions", + "ranges": [{ "startOffset": 7587, "endOffset": 7841, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createRun", + "ranges": [{ "startOffset": 7841, "endOffset": 8112, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getRunStatus", + "ranges": [{ "startOffset": 8112, "endOffset": 9051, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "updateRunStatus", + "ranges": [{ "startOffset": 9051, "endOffset": 9231, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "insertStepState", + "ranges": [{ "startOffset": 9231, "endOffset": 9483, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setStepRunning", + "ranges": [{ "startOffset": 9483, "endOffset": 9612, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setStepScheduled", + "ranges": [{ "startOffset": 9612, "endOffset": 9747, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setStepResult", + "ranges": [{ "startOffset": 9747, "endOffset": 9894, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setStepChildRunId", + "ranges": [{ "startOffset": 9894, "endOffset": 10065, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setStepError", + "ranges": [{ "startOffset": 10065, "endOffset": 10286, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createRetryAttempt", + "ranges": [{ "startOffset": 10286, "endOffset": 10546, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setBranchTaken", + "ranges": [{ "startOffset": 10546, "endOffset": 10705, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "updateRunState", + "ranges": [{ "startOffset": 10705, "endOffset": 10864, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "upsertWorkflowVersion", + "ranges": [{ "startOffset": 10864, "endOffset": 11098, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "updateWorkflowVersionStatus", + "ranges": [{ "startOffset": 11098, "endOffset": 11311, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resumeWorkflow", + "ranges": [{ "startOffset": 11311, "endOffset": 11553, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "queueStepWorker", + "ranges": [{ "startOffset": 11553, "endOffset": 12026, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "executeWorkflowSleepCompleted", + "ranges": [{ "startOffset": 12026, "endOffset": 12147, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "scheduleOrchestratorRetry", + "ranges": [{ "startOffset": 12147, "endOffset": 12497, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "dispatchStep", + "ranges": [{ "startOffset": 12497, "endOffset": 13050, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "scheduleSleep", + "ranges": [{ "startOffset": 13050, "endOffset": 13346, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "startWorkflow", + "ranges": [{ "startOffset": 13346, "endOffset": 15216, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "runToCompletion", + "ranges": [{ "startOffset": 15216, "endOffset": 15793, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "runWorkflowJob", + "ranges": [{ "startOffset": 15793, "endOffset": 18921, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "onChildWorkflowCompleted", + "ranges": [{ "startOffset": 18921, "endOffset": 19242, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "onChildWorkflowFailed", + "ranges": [{ "startOffset": 19242, "endOffset": 19554, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "runVersionMismatchFallback", + "ranges": [{ "startOffset": 19554, "endOffset": 20248, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "executeWorkflowStep", + "ranges": [{ "startOffset": 20248, "endOffset": 22927, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "orchestrateWorkflow", + "ranges": [{ "startOffset": 22927, "endOffset": 23288, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "verifyQueueService", + "ranges": [{ "startOffset": 23288, "endOffset": 23529, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "rpcStep", + "ranges": [{ "startOffset": 23529, "endOffset": 26010, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inlineStep", + "ranges": [{ "startOffset": 26010, "endOffset": 27399, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "sleepStep", + "ranges": [{ "startOffset": 27399, "endOffset": 28046, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getSuspendStepName", + "ranges": [{ "startOffset": 28046, "endOffset": 28139, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "suspendStep", + "ranges": [{ "startOffset": 28139, "endOffset": 28794, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createWorkflowWire", + "ranges": [{ "startOffset": 28794, "endOffset": 29650, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "verifyStepName", + "ranges": [{ "startOffset": 29650, "endOffset": 29753, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getConfig", + "ranges": [{ "startOffset": 29753, "endOffset": 30186, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getOrchestratorQueueName", + "ranges": [{ "startOffset": 30186, "endOffset": 30457, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getStepWorkerQueueName", + "ranges": [{ "startOffset": 30457, "endOffset": 30689, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1022", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/wirings/workflow/workflow-queue-workers.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 6522, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 150, "endOffset": 2627, "count": 1 }, + { "startOffset": 2525, "endOffset": 2624, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 354, "endOffset": 420, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 434, "endOffset": 524, "count": 1 }, + { "startOffset": 469, "endOffset": 523, "count": 3 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 541, "endOffset": 818, "count": 1 }, + { "startOffset": 596, "endOffset": 622, "count": 0 }, + { "startOffset": 663, "endOffset": 807, "count": 3 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 729, "endOffset": 742, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 836, "endOffset": 897, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "pikkuWorkflowOrchestratorFunc", + "ranges": [{ "startOffset": 1007, "endOffset": 1040, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pikkuWorkflowSleeperFunc", + "ranges": [{ "startOffset": 1066, "endOffset": 1094, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pikkuWorkflowWorkerFunc", + "ranges": [{ "startOffset": 1119, "endOffset": 1146, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pikkuWorkflowWorkerFunc", + "ranges": [{ "startOffset": 1264, "endOffset": 1649, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pikkuWorkflowOrchestratorFunc", + "ranges": [{ "startOffset": 1707, "endOffset": 2031, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pikkuWorkflowSleeperFunc", + "ranges": [{ "startOffset": 2101, "endOffset": 2464, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1023", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/wirings/workflow/graph/graph-runner.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 76086, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 146, "endOffset": 21507, "count": 1 }, + { "startOffset": 21374, "endOffset": 21504, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 350, "endOffset": 416, "count": 25 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 430, "endOffset": 520, "count": 1 }, + { "startOffset": 465, "endOffset": 519, "count": 6 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 537, "endOffset": 814, "count": 1 }, + { "startOffset": 592, "endOffset": 618, "count": 0 }, + { "startOffset": 659, "endOffset": 803, "count": 6 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 725, "endOffset": 738, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 832, "endOffset": 893, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "ChildWorkflowStartedException", + "ranges": [{ "startOffset": 983, "endOffset": 1016, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "continueGraph", + "ranges": [{ "startOffset": 1031, "endOffset": 1048, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "executeGraphStep", + "ranges": [{ "startOffset": 1066, "endOffset": 1086, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "onGraphNodeComplete", + "ranges": [{ "startOffset": 1107, "endOffset": 1130, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "runFromMeta", + "ranges": [{ "startOffset": 1143, "endOffset": 1158, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "runWorkflowGraph", + "ranges": [{ "startOffset": 1176, "endOffset": 1196, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1488, "endOffset": 1540, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1540, "endOffset": 1606, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "ChildWorkflowStartedException", + "ranges": [{ "startOffset": 1607, "endOffset": 1772, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "buildTemplateRegex", + "ranges": [{ "startOffset": 1773, "endOffset": 1988, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "remapStepNamesToNodeIds", + "ranges": [{ "startOffset": 2036, "endOffset": 2647, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "remapBranchKeys", + "ranges": [{ "startOffset": 2705, "endOffset": 3394, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isDataRef", + "ranges": [{ "startOffset": 3436, "endOffset": 3553, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isTemplate", + "ranges": [{ "startOffset": 3583, "endOffset": 3711, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getWorkflowMeta", + "ranges": [{ "startOffset": 3743, "endOffset": 4316, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolveNextFromConfig", + "ranges": [{ "startOffset": 4358, "endOffset": 4681, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getValueAtPath", + "ranges": [{ "startOffset": 4735, "endOffset": 4926, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolveTemplate", + "ranges": [{ "startOffset": 4966, "endOffset": 5322, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolveValue", + "ranges": [{ "startOffset": 5364, "endOffset": 5835, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolveSerializedInput", + "ranges": [{ "startOffset": 5871, "endOffset": 6098, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "collectReferencedNodeIds", + "ranges": [{ "startOffset": 6154, "endOffset": 6565, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "extractReferencedNodeIds", + "ranges": [{ "startOffset": 6625, "endOffset": 6811, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "normalizeNodeTargets", + "ranges": [{ "startOffset": 6929, "endOffset": 7263, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "validateGraphReferences", + "ranges": [{ "startOffset": 7315, "endOffset": 8306, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "areDependenciesSatisfied", + "ranges": [{ "startOffset": 8364, "endOffset": 8553, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "queueGraphNode", + "ranges": [{ "startOffset": 8613, "endOffset": 8950, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "continueGraph", + "ranges": [{ "startOffset": 8990, "endOffset": 11504, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "executeGraphStep", + "ranges": [{ "startOffset": 11542, "endOffset": 13888, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "onGraphNodeComplete", + "ranges": [{ "startOffset": 13932, "endOffset": 14053, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "runFromMeta", + "ranges": [{ "startOffset": 14103, "endOffset": 14228, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "executeGraphNodeInline", + "ranges": [{ "startOffset": 14262, "endOffset": 16733, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "continueGraphInline", + "ranges": [{ "startOffset": 16789, "endOffset": 18862, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "runWorkflowGraph", + "ranges": [{ "startOffset": 18912, "endOffset": 21329, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1024", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/services/in-memory-queue-service.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3893, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 143, "endOffset": 1754, "count": 1 }, + { "startOffset": 1710, "endOffset": 1751, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 347, "endOffset": 413, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 427, "endOffset": 517, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 534, "endOffset": 811, "count": 1 }, + { "startOffset": 589, "endOffset": 615, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 722, "endOffset": 735, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 829, "endOffset": 890, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "InMemoryQueueService", + "ranges": [{ "startOffset": 993, "endOffset": 1017, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1176, "endOffset": 1219, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1219, "endOffset": 1253, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "add", + "ranges": [{ "startOffset": 1254, "endOffset": 1681, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getJob", + "ranges": [{ "startOffset": 1681, "endOffset": 1708, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1025", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/services/in-memory-trigger-service.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 6205, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 145, "endOffset": 2278, "count": 1 }, + { "startOffset": 2232, "endOffset": 2275, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 349, "endOffset": 415, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 429, "endOffset": 519, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 536, "endOffset": 813, "count": 1 }, + { "startOffset": 591, "endOffset": 617, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 724, "endOffset": 737, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 831, "endOffset": 892, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "InMemoryTriggerService", + "ranges": [{ "startOffset": 1001, "endOffset": 1027, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1319, "endOffset": 1364, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "start", + "ranges": [{ "startOffset": 1364, "endOffset": 2230, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1026", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/services/in-memory-ai-run-state-service.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 5894, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 150, "endOffset": 2179, "count": 1 }, + { "startOffset": 2130, "endOffset": 2176, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 354, "endOffset": 420, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 434, "endOffset": 524, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 541, "endOffset": 818, "count": 1 }, + { "startOffset": 596, "endOffset": 622, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 729, "endOffset": 742, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 836, "endOffset": 897, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "InMemoryAIRunStateService", + "ranges": [{ "startOffset": 1019, "endOffset": 1048, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1151, "endOffset": 1199, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1199, "endOffset": 1221, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "createRun", + "ranges": [{ "startOffset": 1222, "endOffset": 1342, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "updateRun", + "ranges": [{ "startOffset": 1342, "endOffset": 1461, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getRun", + "ranges": [{ "startOffset": 1461, "endOffset": 1515, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getRunsByThread", + "ranges": [{ "startOffset": 1515, "endOffset": 1610, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolveApproval", + "ranges": [{ "startOffset": 1610, "endOffset": 1909, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "findRunByToolCallId", + "ranges": [{ "startOffset": 1909, "endOffset": 2128, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1027", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/services/local-gateway-service.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 5732, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 141, "endOffset": 2109, "count": 1 }, + { "startOffset": 2066, "endOffset": 2106, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 345, "endOffset": 411, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 425, "endOffset": 515, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 532, "endOffset": 809, "count": 1 }, + { "startOffset": 587, "endOffset": 613, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 720, "endOffset": 733, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 827, "endOffset": 888, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "LocalGatewayService", + "ranges": [{ "startOffset": 986, "endOffset": 1009, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1223, "endOffset": 1265, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1265, "endOffset": 1287, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "start", + "ranges": [{ "startOffset": 1288, "endOffset": 1822, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stop", + "ranges": [{ "startOffset": 1822, "endOffset": 2064, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1028", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/wirings/gateway/gateway-runner.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 30840, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 141, "endOffset": 7797, "count": 1 }, + { "startOffset": 7733, "endOffset": 7794, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 345, "endOffset": 411, "count": 7 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 425, "endOffset": 515, "count": 1 }, + { "startOffset": 460, "endOffset": 514, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 532, "endOffset": 809, "count": 1 }, + { "startOffset": 587, "endOffset": 613, "count": 0 }, + { "startOffset": 654, "endOffset": 798, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 720, "endOffset": 733, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 827, "endOffset": 888, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "createListenerMessageHandler", + "ranges": [{ "startOffset": 981, "endOffset": 1013, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "wireGateway", + "ranges": [{ "startOffset": 1026, "endOffset": 1041, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1380, "endOffset": 1736, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1784, "endOffset": 3149, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3210, "endOffset": 4163, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4232, "endOffset": 4536, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4601, "endOffset": 6670, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6728, "endOffset": 6822, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6888, "endOffset": 7699, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1029", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/services/typed-credential-service.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 5703, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 144, "endOffset": 2188, "count": 1 }, + { "startOffset": 2142, "endOffset": 2185, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 348, "endOffset": 414, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 428, "endOffset": 518, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 535, "endOffset": 812, "count": 1 }, + { "startOffset": 590, "endOffset": 616, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 723, "endOffset": 736, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 830, "endOffset": 891, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "TypedCredentialService", + "ranges": [{ "startOffset": 998, "endOffset": 1024, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1118, "endOffset": 1163, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1163, "endOffset": 1190, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "TypedCredentialService", + "ranges": [{ "startOffset": 1191, "endOffset": 1298, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1298, "endOffset": 1362, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 1362, "endOffset": 1438, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "delete", + "ranges": [{ "startOffset": 1438, "endOffset": 1508, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "has", + "ranges": [{ "startOffset": 1508, "endOffset": 1572, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getAll", + "ranges": [{ "startOffset": 1572, "endOffset": 1632, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getUsersWithCredential", + "ranges": [{ "startOffset": 1632, "endOffset": 1720, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getAllUsers", + "ranges": [{ "startOffset": 1720, "endOffset": 1778, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getAllStatus", + "ranges": [{ "startOffset": 1778, "endOffset": 2035, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getMissing", + "ranges": [{ "startOffset": 2035, "endOffset": 2140, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1030", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/services/in-memory-session-store.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2499, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 143, "endOffset": 1404, "count": 1 }, + { "startOffset": 1360, "endOffset": 1401, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 347, "endOffset": 413, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 427, "endOffset": 517, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 534, "endOffset": 811, "count": 1 }, + { "startOffset": 589, "endOffset": 615, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 722, "endOffset": 735, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 829, "endOffset": 890, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "InMemorySessionStore", + "ranges": [{ "startOffset": 993, "endOffset": 1017, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1108, "endOffset": 1151, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1151, "endOffset": 1167, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1168, "endOffset": 1229, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 1229, "endOffset": 1299, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "clear", + "ranges": [{ "startOffset": 1299, "endOffset": 1358, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1031", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/addon-console/dist/.pikku/variables/pikku-variables.gen.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2471, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 156, "endOffset": 1380, "count": 1 }, + { "startOffset": 1335, "endOffset": 1377, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 360, "endOffset": 426, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 440, "endOffset": 530, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 547, "endOffset": 824, "count": 1 }, + { "startOffset": 602, "endOffset": 628, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 735, "endOffset": 748, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 842, "endOffset": 903, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "TypedVariablesService", + "ranges": [{ "startOffset": 999, "endOffset": 1024, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1234, "endOffset": 1278, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "TypedVariablesService", + "ranges": [{ "startOffset": 1278, "endOffset": 1333, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1032", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/addon-console/dist/src/services/wiring.service.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 60194, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 147, "endOffset": 15903, "count": 1 }, + { "startOffset": 15852, "endOffset": 15900, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 351, "endOffset": 417, "count": 13 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 431, "endOffset": 521, "count": 1 }, + { "startOffset": 466, "endOffset": 520, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 538, "endOffset": 815, "count": 1 }, + { "startOffset": 593, "endOffset": 619, "count": 0 }, + { "startOffset": 660, "endOffset": 804, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 726, "endOffset": 739, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 833, "endOffset": 894, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "NotFoundError", + "ranges": [{ "startOffset": 972, "endOffset": 989, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "WiringService", + "ranges": [{ "startOffset": 1004, "endOffset": 1021, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1252, "endOffset": 1288, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "NotFoundError", + "ranges": [{ "startOffset": 1288, "endOffset": 1350, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "asArray", + "ranges": [{ "startOffset": 1351, "endOffset": 1412, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseJsonOrNull", + "ranges": [{ "startOffset": 1438, "endOffset": 1522, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readOptionalFile", + "ranges": [{ "startOffset": 1564, "endOffset": 1680, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readOptionalMetaFile", + "ranges": [{ "startOffset": 1724, "endOffset": 2108, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "extractCucumberMessages", + "ranges": [{ "startOffset": 2160, "endOffset": 2355, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "durationToMs", + "ranges": [{ "startOffset": 2413, "endOffset": 2672, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cucumberTimestampToIso", + "ranges": [{ "startOffset": 2708, "endOffset": 3035, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "expandCalledNames", + "ranges": [{ "startOffset": 3091, "endOffset": 3312, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "uniqueFunctionKeys", + "ranges": [{ "startOffset": 3358, "endOffset": 3464, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "buildScenarioMaps", + "ranges": [{ "startOffset": 3512, "endOffset": 6846, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "loadFunctionTests", + "ranges": [{ "startOffset": 6892, "endOffset": 8765, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8831, "endOffset": 8867, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "WiringService", + "ranges": [{ "startOffset": 8867, "endOffset": 8921, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readAllMeta", + "ranges": [{ "startOffset": 8921, "endOffset": 14871, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "generateChannelSnippets", + "ranges": [{ "startOffset": 14871, "endOffset": 15850, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1033", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/addon-console/dist/src/services/addon.service.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3751, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 146, "endOffset": 1644, "count": 1 }, + { "startOffset": 1608, "endOffset": 1641, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 350, "endOffset": 416, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 430, "endOffset": 520, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 537, "endOffset": 814, "count": 1 }, + { "startOffset": 592, "endOffset": 618, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 725, "endOffset": 738, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 832, "endOffset": 893, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "AddonService", + "ranges": [{ "startOffset": 968, "endOffset": 984, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1057, "endOffset": 1092, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "AddonService", + "ranges": [{ "startOffset": 1092, "endOffset": 1146, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readAddonsMeta", + "ranges": [{ "startOffset": 1146, "endOffset": 1377, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readAddon", + "ranges": [{ "startOffset": 1377, "endOffset": 1592, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "init", + "ranges": [{ "startOffset": 1592, "endOffset": 1606, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1034", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/addon-console/dist/src/services/oauth.service.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3446, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 146, "endOffset": 1547, "count": 1 }, + { "startOffset": 1511, "endOffset": 1544, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 350, "endOffset": 416, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 430, "endOffset": 520, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 537, "endOffset": 814, "count": 1 }, + { "startOffset": 592, "endOffset": 618, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 725, "endOffset": 738, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 832, "endOffset": 893, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "OAuthService", + "ranges": [{ "startOffset": 968, "endOffset": 984, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1085, "endOffset": 1120, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "OAuthService", + "ranges": [{ "startOffset": 1120, "endOffset": 1160, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addPendingFlow", + "ranges": [{ "startOffset": 1160, "endOffset": 1236, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getPendingFlow", + "ranges": [{ "startOffset": 1236, "endOffset": 1309, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "removePendingFlow", + "ranges": [{ "startOffset": 1309, "endOffset": 1366, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cleanup", + "ranges": [{ "startOffset": 1366, "endOffset": 1509, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1035", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/addon-console/dist/src/services/state-diff.service.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 16519, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 151, "endOffset": 4540, "count": 1 }, + { "startOffset": 4500, "endOffset": 4537, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 355, "endOffset": 421, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 435, "endOffset": 525, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 542, "endOffset": 819, "count": 1 }, + { "startOffset": 597, "endOffset": 623, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 730, "endOffset": 743, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 837, "endOffset": 898, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "StateDiffService", + "ranges": [{ "startOffset": 987, "endOffset": 1007, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1834, "endOffset": 1873, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "StateDiffService", + "ranges": [{ "startOffset": 1873, "endOffset": 1915, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "diff", + "ranges": [{ "startOffset": 1915, "endOffset": 2602, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolvePath", + "ranges": [{ "startOffset": 2602, "endOffset": 2705, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readMeta", + "ranges": [{ "startOffset": 2705, "endOffset": 2965, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "flatten", + "ranges": [{ "startOffset": 2965, "endOffset": 3236, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "diffCategory", + "ranges": [{ "startOffset": 3236, "endOffset": 4050, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "normalize", + "ranges": [{ "startOffset": 4050, "endOffset": 4345, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "shallowEqual", + "ranges": [{ "startOffset": 4345, "endOffset": 4440, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1036", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/addon-console/dist/.pikku/schemas/register.gen.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 45242, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 147, "endOffset": 17143, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 422, "endOffset": 699, "count": 86 }, + { "startOffset": 477, "endOffset": 503, "count": 0 }, + { "startOffset": 544, "endOffset": 688, "count": 488 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 610, "endOffset": 623, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toESM", + "ranges": [ + { "startOffset": 712, "endOffset": 900, "count": 86 }, + { "startOffset": 782, "endOffset": 785, "count": 0 }, + { "startOffset": 887, "endOffset": 894, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1037", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/addon-console/dist/.pikku/function/pikku-functions.gen.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 26231, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 155, "endOffset": 11560, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1038", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/addon-console/dist/src/functions/agent-credential-check.function.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 7010, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 165, "endOffset": 2547, "count": 1 }, + { "startOffset": 2503, "endOffset": 2544, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 369, "endOffset": 435, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 449, "endOffset": 539, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 556, "endOffset": 833, "count": 1 }, + { "startOffset": 611, "endOffset": 637, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 744, "endOffset": 757, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 851, "endOffset": 912, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "agentCredentialCheck", + "ranges": [{ "startOffset": 1031, "endOffset": 1055, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1436, "endOffset": 2491, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1039", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/addon-console/dist/src/functions/credential-delete.function.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3216, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 160, "endOffset": 1625, "count": 1 }, + { "startOffset": 1585, "endOffset": 1622, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 364, "endOffset": 430, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 444, "endOffset": 534, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 551, "endOffset": 828, "count": 1 }, + { "startOffset": 606, "endOffset": 632, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 739, "endOffset": 752, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 846, "endOffset": 907, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "credentialDelete", + "ranges": [{ "startOffset": 1012, "endOffset": 1032, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1359, "endOffset": 1573, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1040", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/addon-console/dist/src/functions/credential-get.function.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3203, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 157, "endOffset": 1608, "count": 1 }, + { "startOffset": 1571, "endOffset": 1605, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 361, "endOffset": 427, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 441, "endOffset": 531, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 548, "endOffset": 825, "count": 1 }, + { "startOffset": 603, "endOffset": 629, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 736, "endOffset": 749, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 843, "endOffset": 904, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "credentialGet", + "ranges": [{ "startOffset": 1000, "endOffset": 1017, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1343, "endOffset": 1559, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1041", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/addon-console/dist/src/functions/credential-list-users.function.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 4378, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 164, "endOffset": 1907, "count": 1 }, + { "startOffset": 1864, "endOffset": 1904, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 368, "endOffset": 434, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 448, "endOffset": 538, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 555, "endOffset": 832, "count": 1 }, + { "startOffset": 610, "endOffset": 636, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 743, "endOffset": 756, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 850, "endOffset": 911, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "credentialListUsers", + "ranges": [{ "startOffset": 1027, "endOffset": 1050, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1363, "endOffset": 1852, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1042", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/addon-console/dist/src/functions/credential-set.function.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3219, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 157, "endOffset": 1612, "count": 1 }, + { "startOffset": 1575, "endOffset": 1609, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 361, "endOffset": 427, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 441, "endOffset": 531, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 548, "endOffset": 825, "count": 1 }, + { "startOffset": 603, "endOffset": 629, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 736, "endOffset": 749, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 843, "endOffset": 904, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "credentialSet", + "ranges": [{ "startOffset": 1000, "endOffset": 1017, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1340, "endOffset": 1563, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1043", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/addon-console/dist/src/functions/credential-status.function.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3553, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 160, "endOffset": 1714, "count": 1 }, + { "startOffset": 1674, "endOffset": 1711, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 364, "endOffset": 430, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 444, "endOffset": 534, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 551, "endOffset": 828, "count": 1 }, + { "startOffset": 606, "endOffset": 632, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 739, "endOffset": 752, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 846, "endOffset": 907, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "credentialStatus", + "ranges": [{ "startOffset": 1012, "endOffset": 1032, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1396, "endOffset": 1662, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1044", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/addon-console/dist/src/functions/credential-users.function.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3250, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 159, "endOffset": 1639, "count": 1 }, + { "startOffset": 1600, "endOffset": 1636, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 363, "endOffset": 429, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 443, "endOffset": 533, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 550, "endOffset": 827, "count": 1 }, + { "startOffset": 605, "endOffset": 631, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 738, "endOffset": 751, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 845, "endOffset": 906, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "credentialUsers", + "ranges": [{ "startOffset": 1008, "endOffset": 1027, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1363, "endOffset": 1588, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1045", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/addon-console/dist/src/functions/delete-agent-thread.function.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3307, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 162, "endOffset": 1680, "count": 1 }, + { "startOffset": 1639, "endOffset": 1677, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 366, "endOffset": 432, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 446, "endOffset": 536, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 553, "endOffset": 830, "count": 1 }, + { "startOffset": 608, "endOffset": 634, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 741, "endOffset": 754, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 848, "endOffset": 909, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "deleteAgentThread", + "ranges": [{ "startOffset": 1019, "endOffset": 1040, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1413, "endOffset": 1627, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1046", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/addon-console/dist/src/functions/delete-workflow-run.function.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3285, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 162, "endOffset": 1670, "count": 1 }, + { "startOffset": 1629, "endOffset": 1667, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 366, "endOffset": 432, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 446, "endOffset": 536, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 553, "endOffset": 830, "count": 1 }, + { "startOffset": 608, "endOffset": 634, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 741, "endOffset": 754, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 848, "endOffset": 909, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "deleteWorkflowRun", + "ranges": [{ "startOffset": 1019, "endOffset": 1040, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1397, "endOffset": 1617, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1047", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/addon-console/dist/src/functions/get-addon-package.function.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2715, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 160, "endOffset": 1504, "count": 1 }, + { "startOffset": 1456, "endOffset": 1501, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 364, "endOffset": 430, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 444, "endOffset": 534, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 551, "endOffset": 828, "count": 1 }, + { "startOffset": 606, "endOffset": 632, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 739, "endOffset": 752, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 846, "endOffset": 907, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "getAddonCommunityPackage", + "ranges": [{ "startOffset": 1020, "endOffset": 1048, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1375, "endOffset": 1444, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1048", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/addon-console/dist/src/functions/get-addon-icon.function.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2676, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 157, "endOffset": 1441, "count": 1 }, + { "startOffset": 1405, "endOffset": 1438, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 361, "endOffset": 427, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 441, "endOffset": 531, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 548, "endOffset": 825, "count": 1 }, + { "startOffset": 603, "endOffset": 629, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 736, "endOffset": 749, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 843, "endOffset": 904, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "getAddonIcon", + "ranges": [{ "startOffset": 999, "endOffset": 1015, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1292, "endOffset": 1393, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1049", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/addon-console/dist/src/functions/get-installed-package.function.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 11635, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 164, "endOffset": 3740, "count": 1 }, + { "startOffset": 3692, "endOffset": 3737, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 368, "endOffset": 434, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 448, "endOffset": 538, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 555, "endOffset": 832, "count": 1 }, + { "startOffset": 610, "endOffset": 636, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 743, "endOffset": 756, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 850, "endOffset": 911, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "getAddonInstalledPackage", + "ranges": [{ "startOffset": 1032, "endOffset": 1060, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1471, "endOffset": 3680, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1050", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/addon-console/dist/src/functions/get-addon-meta.function.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2663, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 157, "endOffset": 1472, "count": 1 }, + { "startOffset": 1436, "endOffset": 1469, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 361, "endOffset": 427, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 441, "endOffset": 531, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 548, "endOffset": 825, "count": 1 }, + { "startOffset": 603, "endOffset": 629, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 736, "endOffset": 749, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 843, "endOffset": 904, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "getAddonMeta", + "ranges": [{ "startOffset": 999, "endOffset": 1015, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1357, "endOffset": 1424, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1051", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/addon-console/dist/src/functions/get-agent-thread-messages.function.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3282, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 168, "endOffset": 1707, "count": 1 }, + { "startOffset": 1661, "endOffset": 1704, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 372, "endOffset": 438, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 452, "endOffset": 542, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 559, "endOffset": 836, "count": 1 }, + { "startOffset": 614, "endOffset": 640, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 747, "endOffset": 760, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 854, "endOffset": 915, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "getAgentThreadMessages", + "ranges": [{ "startOffset": 1042, "endOffset": 1068, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1453, "endOffset": 1649, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1052", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/addon-console/dist/src/functions/get-agent-thread-runs.function.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3229, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 164, "endOffset": 1674, "count": 1 }, + { "startOffset": 1632, "endOffset": 1671, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 368, "endOffset": 434, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 448, "endOffset": 538, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 555, "endOffset": 832, "count": 1 }, + { "startOffset": 610, "endOffset": 636, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 743, "endOffset": 756, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 850, "endOffset": 911, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "getAgentThreadRuns", + "ranges": [{ "startOffset": 1026, "endOffset": 1048, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1428, "endOffset": 1620, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1053", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/addon-console/dist/src/functions/get-agent-threads.function.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3531, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 160, "endOffset": 1736, "count": 1 }, + { "startOffset": 1697, "endOffset": 1733, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 364, "endOffset": 430, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 444, "endOffset": 534, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 551, "endOffset": 828, "count": 1 }, + { "startOffset": 606, "endOffset": 632, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 739, "endOffset": 752, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 846, "endOffset": 907, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "getAgentThreads", + "ranges": [{ "startOffset": 1011, "endOffset": 1030, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1441, "endOffset": 1685, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1054", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/addon-console/dist/src/functions/get-ai-workflows.function.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3276, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 159, "endOffset": 1681, "count": 1 }, + { "startOffset": 1643, "endOffset": 1678, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 363, "endOffset": 429, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 443, "endOffset": 533, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 550, "endOffset": 827, "count": 1 }, + { "startOffset": 605, "endOffset": 631, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 738, "endOffset": 751, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 845, "endOffset": 906, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "getAIWorkflows", + "ranges": [{ "startOffset": 1007, "endOffset": 1025, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1427, "endOffset": 1631, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1055", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/addon-console/dist/src/functions/get-all-meta.function.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2954, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 155, "endOffset": 1591, "count": 1 }, + { "startOffset": 1557, "endOffset": 1588, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 359, "endOffset": 425, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 439, "endOffset": 529, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 546, "endOffset": 823, "count": 1 }, + { "startOffset": 601, "endOffset": 627, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 734, "endOffset": 747, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 841, "endOffset": 902, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "getAllMeta", + "ranges": [{ "startOffset": 991, "endOffset": 1005, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1479, "endOffset": 1545, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1056", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/addon-console/dist/src/functions/get-channel-snippets.function.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3734, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 163, "endOffset": 1823, "count": 1 }, + { "startOffset": 1781, "endOffset": 1820, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 367, "endOffset": 433, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 447, "endOffset": 537, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 554, "endOffset": 831, "count": 1 }, + { "startOffset": 609, "endOffset": 635, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 742, "endOffset": 755, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 849, "endOffset": 910, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "getChannelSnippets", + "ranges": [{ "startOffset": 1023, "endOffset": 1045, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1510, "endOffset": 1769, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1057", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/addon-console/dist/src/functions/get-function-coverage.function.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3902, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 164, "endOffset": 1875, "count": 1 }, + { "startOffset": 1832, "endOffset": 1872, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 368, "endOffset": 434, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 448, "endOffset": 538, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 555, "endOffset": 832, "count": 1 }, + { "startOffset": 610, "endOffset": 636, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 743, "endOffset": 756, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 850, "endOffset": 911, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "getFunctionCoverage", + "ranges": [{ "startOffset": 1027, "endOffset": 1050, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1514, "endOffset": 1820, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1058", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/addon-console/dist/src/functions/get-functions-meta.function.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 6615, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 161, "endOffset": 2752, "count": 1 }, + { "startOffset": 2712, "endOffset": 2749, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 431, "endOffset": 497, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 511, "endOffset": 601, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 618, "endOffset": 895, "count": 1 }, + { "startOffset": 673, "endOffset": 699, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 806, "endOffset": 819, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toESM", + "ranges": [{ "startOffset": 908, "endOffset": 1096, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 1114, "endOffset": 1175, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "getFunctionsMeta", + "ranges": [{ "startOffset": 1282, "endOffset": 1302, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1715, "endOffset": 2700, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1059", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/addon-console/dist/src/functions/get-installed-addons.function.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 5900, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 163, "endOffset": 2373, "count": 1 }, + { "startOffset": 2331, "endOffset": 2370, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 367, "endOffset": 433, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 447, "endOffset": 537, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 554, "endOffset": 831, "count": 1 }, + { "startOffset": 609, "endOffset": 635, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 742, "endOffset": 755, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 849, "endOffset": 910, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "getInstalledAddons", + "ranges": [{ "startOffset": 1023, "endOffset": 1045, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "readPackageIcon", + "ranges": [{ "startOffset": 1202, "endOffset": 1536, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1765, "endOffset": 2319, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1060", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/addon-console/dist/src/functions/get-openapi-detail.function.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3679, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 161, "endOffset": 1740, "count": 1 }, + { "startOffset": 1700, "endOffset": 1737, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 365, "endOffset": 431, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 445, "endOffset": 535, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 552, "endOffset": 829, "count": 1 }, + { "startOffset": 607, "endOffset": 633, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 740, "endOffset": 753, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 847, "endOffset": 908, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "getOpenapiDetail", + "ranges": [{ "startOffset": 1015, "endOffset": 1035, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1340, "endOffset": 1688, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1061", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/addon-console/dist/src/functions/get-openapis.function.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3766, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 155, "endOffset": 1719, "count": 1 }, + { "startOffset": 1684, "endOffset": 1716, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 359, "endOffset": 425, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 439, "endOffset": 529, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 546, "endOffset": 823, "count": 1 }, + { "startOffset": 601, "endOffset": 627, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 734, "endOffset": 747, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 841, "endOffset": 902, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "getOpenapis", + "ranges": [{ "startOffset": 992, "endOffset": 1007, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1287, "endOffset": 1672, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1062", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/addon-console/dist/src/functions/get-schema.function.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2757, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 153, "endOffset": 1498, "count": 1 }, + { "startOffset": 1465, "endOffset": 1495, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 357, "endOffset": 423, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 437, "endOffset": 527, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 544, "endOffset": 821, "count": 1 }, + { "startOffset": 599, "endOffset": 625, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 732, "endOffset": 745, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 839, "endOffset": 900, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "getSchema", + "ranges": [{ "startOffset": 984, "endOffset": 997, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1377, "endOffset": 1453, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1063", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/addon-console/dist/src/functions/get-state-diff.function.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3228, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 157, "endOffset": 1641, "count": 1 }, + { "startOffset": 1605, "endOffset": 1638, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 361, "endOffset": 427, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 441, "endOffset": 531, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 548, "endOffset": 825, "count": 1 }, + { "startOffset": 603, "endOffset": 629, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 736, "endOffset": 749, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 843, "endOffset": 904, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "getStateDiff", + "ranges": [{ "startOffset": 999, "endOffset": 1015, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1395, "endOffset": 1593, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1064", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/addon-console/dist/src/functions/get-workflow-meta-by-id.function.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 5057, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 166, "endOffset": 2130, "count": 1 }, + { "startOffset": 2087, "endOffset": 2127, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 370, "endOffset": 436, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 450, "endOffset": 540, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 557, "endOffset": 834, "count": 1 }, + { "startOffset": 612, "endOffset": 638, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 745, "endOffset": 758, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 852, "endOffset": 913, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "getWorkflowMetaById", + "ranges": [{ "startOffset": 1033, "endOffset": 1056, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1543, "endOffset": 2075, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1065", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/addon-console/dist/src/functions/get-workflow-run.function.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3968, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 159, "endOffset": 1889, "count": 1 }, + { "startOffset": 1851, "endOffset": 1886, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 363, "endOffset": 429, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 443, "endOffset": 533, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 550, "endOffset": 827, "count": 1 }, + { "startOffset": 605, "endOffset": 631, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 738, "endOffset": 751, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 845, "endOffset": 906, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "getWorkflowRun", + "ranges": [{ "startOffset": 1007, "endOffset": 1025, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1539, "endOffset": 1839, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1066", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/addon-console/dist/src/functions/get-workflow-run-history.function.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3679, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 167, "endOffset": 1876, "count": 1 }, + { "startOffset": 1831, "endOffset": 1873, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 371, "endOffset": 437, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 451, "endOffset": 541, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 558, "endOffset": 835, "count": 1 }, + { "startOffset": 613, "endOffset": 639, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 746, "endOffset": 759, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 853, "endOffset": 914, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "getWorkflowRunHistory", + "ranges": [{ "startOffset": 1038, "endOffset": 1063, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1618, "endOffset": 1819, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1067", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/addon-console/dist/src/functions/get-workflow-run-names.function.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3550, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 165, "endOffset": 1823, "count": 1 }, + { "startOffset": 1780, "endOffset": 1820, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 369, "endOffset": 435, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 449, "endOffset": 539, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 556, "endOffset": 833, "count": 1 }, + { "startOffset": 611, "endOffset": 637, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 744, "endOffset": 757, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 851, "endOffset": 912, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "getWorkflowRunNames", + "ranges": [{ "startOffset": 1030, "endOffset": 1053, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1573, "endOffset": 1768, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1068", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/addon-console/dist/src/functions/get-workflow-runs.function.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3869, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 160, "endOffset": 1862, "count": 1 }, + { "startOffset": 1823, "endOffset": 1859, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 364, "endOffset": 430, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 444, "endOffset": 534, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 551, "endOffset": 828, "count": 1 }, + { "startOffset": 606, "endOffset": 632, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 739, "endOffset": 752, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 846, "endOffset": 907, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "getWorkflowRuns", + "ranges": [{ "startOffset": 1011, "endOffset": 1030, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1531, "endOffset": 1811, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1069", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/addon-console/dist/src/functions/get-workflow-run-steps.function.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3569, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 165, "endOffset": 1822, "count": 1 }, + { "startOffset": 1779, "endOffset": 1819, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 369, "endOffset": 435, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 449, "endOffset": 539, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 556, "endOffset": 833, "count": 1 }, + { "startOffset": 611, "endOffset": 637, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 744, "endOffset": 757, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 851, "endOffset": 912, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "getWorkflowRunSteps", + "ranges": [{ "startOffset": 1030, "endOffset": 1053, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1568, "endOffset": 1767, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1070", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/addon-console/dist/src/functions/get-workflow-version.function.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3803, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 163, "endOffset": 1912, "count": 1 }, + { "startOffset": 1870, "endOffset": 1909, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 367, "endOffset": 433, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 447, "endOffset": 537, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 554, "endOffset": 831, "count": 1 }, + { "startOffset": 609, "endOffset": 635, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 742, "endOffset": 755, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 849, "endOffset": 910, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "getWorkflowVersion", + "ranges": [{ "startOffset": 1023, "endOffset": 1045, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1637, "endOffset": 1858, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1071", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/addon-console/dist/src/functions/install-addon.function.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 11600, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 156, "endOffset": 4209, "count": 1 }, + { "startOffset": 4173, "endOffset": 4206, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 426, "endOffset": 492, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 506, "endOffset": 596, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 613, "endOffset": 890, "count": 1 }, + { "startOffset": 668, "endOffset": 694, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 801, "endOffset": 814, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toESM", + "ranges": [{ "startOffset": 903, "endOffset": 1091, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 1109, "endOffset": 1170, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "installAddon", + "ranges": [{ "startOffset": 1263, "endOffset": 1279, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1618, "endOffset": 4161, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1072", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/addon-console/dist/src/functions/install-openapi-addon.function.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 13160, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 164, "endOffset": 4461, "count": 1 }, + { "startOffset": 4418, "endOffset": 4458, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 434, "endOffset": 500, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 514, "endOffset": 604, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 621, "endOffset": 898, "count": 1 }, + { "startOffset": 676, "endOffset": 702, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 809, "endOffset": 822, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toESM", + "ranges": [{ "startOffset": 911, "endOffset": 1099, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 1117, "endOffset": 1178, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "installOpenapiAddon", + "ranges": [{ "startOffset": 1294, "endOffset": 1317, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1705, "endOffset": 4406, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1073", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/addon-console/dist/src/functions/oauth-connect.function.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 8610, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 156, "endOffset": 3259, "count": 1 }, + { "startOffset": 3223, "endOffset": 3256, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 360, "endOffset": 426, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 440, "endOffset": 530, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 547, "endOffset": 824, "count": 1 }, + { "startOffset": 602, "endOffset": 628, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 735, "endOffset": 748, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 842, "endOffset": 903, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "oauthConnect", + "ranges": [{ "startOffset": 996, "endOffset": 1012, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1665, "endOffset": 3211, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1074", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/wirings/oauth2/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1696, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 131, "endOffset": 1177, "count": 1 }, + { "startOffset": 1121, "endOffset": 1174, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 337, "endOffset": 427, "count": 1 }, + { "startOffset": 372, "endOffset": 426, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 444, "endOffset": 721, "count": 1 }, + { "startOffset": 499, "endOffset": 525, "count": 0 }, + { "startOffset": 566, "endOffset": 710, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 632, "endOffset": 645, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 739, "endOffset": 800, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "OAuth2Client", + "ranges": [{ "startOffset": 861, "endOffset": 898, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createOAuth2Handler", + "ranges": [{ "startOffset": 919, "endOffset": 963, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1075", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/wirings/oauth2/oauth2-client.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 23375, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 139, "endOffset": 5812, "count": 1 }, + { "startOffset": 5776, "endOffset": 5809, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 343, "endOffset": 409, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 423, "endOffset": 513, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 530, "endOffset": 807, "count": 1 }, + { "startOffset": 585, "endOffset": 611, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 718, "endOffset": 731, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 825, "endOffset": 886, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "OAuth2Client", + "ranges": [{ "startOffset": 961, "endOffset": 977, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fetchWithTimeout", + "ranges": [{ "startOffset": 1093, "endOffset": 1364, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1427, "endOffset": 1462, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1462, "endOffset": 1566, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "OAuth2Client", + "ranges": [{ "startOffset": 1567, "endOffset": 1724, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "request", + "ranges": [{ "startOffset": 1724, "endOffset": 2154, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getAccessToken", + "ranges": [{ "startOffset": 2154, "endOffset": 2695, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "refreshAndGetToken", + "ranges": [{ "startOffset": 2695, "endOffset": 2952, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "doRefreshToken", + "ranges": [{ "startOffset": 2952, "endOffset": 4065, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isTokenValid", + "ranges": [{ "startOffset": 4065, "endOffset": 4175, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getAppCredential", + "ranges": [{ "startOffset": 4175, "endOffset": 4379, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getAuthorizationUrl", + "ranges": [{ "startOffset": 4379, "endOffset": 4840, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "exchangeCode", + "ranges": [{ "startOffset": 4840, "endOffset": 5774, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1076", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/wirings/oauth2/oauth2-routes.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 17570, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 139, "endOffset": 5055, "count": 1 }, + { "startOffset": 5012, "endOffset": 5052, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 343, "endOffset": 409, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 423, "endOffset": 513, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 530, "endOffset": 807, "count": 1 }, + { "startOffset": 585, "endOffset": 611, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 718, "endOffset": 731, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 825, "endOffset": 886, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "createOAuth2Handler", + "ranges": [{ "startOffset": 968, "endOffset": 991, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getCredentialMeta", + "ranges": [{ "startOffset": 1133, "endOffset": 1364, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1443, "endOffset": 4987, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1077", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/addon-console/dist/src/functions/oauth-disconnect.function.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 4911, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 159, "endOffset": 2128, "count": 1 }, + { "startOffset": 2089, "endOffset": 2125, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 363, "endOffset": 429, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 443, "endOffset": 533, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 550, "endOffset": 827, "count": 1 }, + { "startOffset": 605, "endOffset": 631, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 738, "endOffset": 751, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 845, "endOffset": 906, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "oauthDisconnect", + "ranges": [{ "startOffset": 1008, "endOffset": 1027, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1447, "endOffset": 2077, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1078", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/addon-console/dist/src/functions/oauth-exchange-tokens.function.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 5489, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 164, "endOffset": 2346, "count": 1 }, + { "startOffset": 2303, "endOffset": 2343, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 368, "endOffset": 434, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 448, "endOffset": 538, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 555, "endOffset": 832, "count": 1 }, + { "startOffset": 610, "endOffset": 636, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 743, "endOffset": 756, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 850, "endOffset": 911, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "oauthExchangeTokens", + "ranges": [{ "startOffset": 1027, "endOffset": 1050, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1623, "endOffset": 2291, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1079", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/addon-console/dist/src/functions/oauth-refresh-token.function.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 5338, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 162, "endOffset": 2255, "count": 1 }, + { "startOffset": 2214, "endOffset": 2252, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 366, "endOffset": 432, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 446, "endOffset": 536, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 553, "endOffset": 830, "count": 1 }, + { "startOffset": 608, "endOffset": 634, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 741, "endOffset": 754, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 848, "endOffset": 909, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "oauthRefreshToken", + "ranges": [{ "startOffset": 1019, "endOffset": 1040, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1513, "endOffset": 2202, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1080", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/addon-console/dist/src/functions/oauth-status.function.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 7294, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 155, "endOffset": 2691, "count": 1 }, + { "startOffset": 2656, "endOffset": 2688, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 359, "endOffset": 425, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 439, "endOffset": 529, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 546, "endOffset": 823, "count": 1 }, + { "startOffset": 601, "endOffset": 627, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 734, "endOffset": 747, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 841, "endOffset": 902, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "oauthStatus", + "ranges": [{ "startOffset": 992, "endOffset": 1007, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1518, "endOffset": 2644, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1081", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/addon-console/dist/src/functions/oauth-test-token.function.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 5081, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 159, "endOffset": 2166, "count": 1 }, + { "startOffset": 2128, "endOffset": 2163, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 363, "endOffset": 429, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 443, "endOffset": 533, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 550, "endOffset": 827, "count": 1 }, + { "startOffset": 605, "endOffset": 631, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 738, "endOffset": 751, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 845, "endOffset": 906, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "oauthTestToken", + "ranges": [{ "startOffset": 1007, "endOffset": 1025, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1493, "endOffset": 2116, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1082", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/addon-console/dist/src/functions/ping.function.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2262, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 147, "endOffset": 1283, "count": 1 }, + { "startOffset": 1255, "endOffset": 1280, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 351, "endOffset": 417, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 431, "endOffset": 521, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 538, "endOffset": 815, "count": 1 }, + { "startOffset": 593, "endOffset": 619, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 726, "endOffset": 739, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 833, "endOffset": 894, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "ping", + "ranges": [{ "startOffset": 961, "endOffset": 969, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1215, "endOffset": 1243, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1083", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/addon-console/dist/src/functions/read-agent-source.function.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3342, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 160, "endOffset": 1687, "count": 1 }, + { "startOffset": 1648, "endOffset": 1684, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 364, "endOffset": 430, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 444, "endOffset": 534, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 551, "endOffset": 828, "count": 1 }, + { "startOffset": 606, "endOffset": 632, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 739, "endOffset": 752, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 846, "endOffset": 907, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "readAgentSource", + "ranges": [{ "startOffset": 1011, "endOffset": 1030, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1404, "endOffset": 1636, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1084", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/addon-console/dist/src/functions/read-function-body.function.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3497, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 161, "endOffset": 1730, "count": 1 }, + { "startOffset": 1690, "endOffset": 1727, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 365, "endOffset": 431, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 445, "endOffset": 535, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 552, "endOffset": 829, "count": 1 }, + { "startOffset": 607, "endOffset": 633, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 740, "endOffset": 753, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 847, "endOffset": 908, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "readFunctionBody", + "ranges": [{ "startOffset": 1015, "endOffset": 1035, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1422, "endOffset": 1678, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1085", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/addon-console/dist/src/functions/read-function-source.function.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3434, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 163, "endOffset": 1735, "count": 1 }, + { "startOffset": 1693, "endOffset": 1732, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 367, "endOffset": 433, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 447, "endOffset": 537, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 554, "endOffset": 831, "count": 1 }, + { "startOffset": 609, "endOffset": 635, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 742, "endOffset": 755, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 849, "endOffset": 910, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "readFunctionSource", + "ranges": [{ "startOffset": 1023, "endOffset": 1045, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1446, "endOffset": 1681, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1086", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/addon-console/dist/src/functions/run-function-tests.function.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 8633, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 161, "endOffset": 3106, "count": 1 }, + { "startOffset": 3066, "endOffset": 3103, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 365, "endOffset": 431, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 445, "endOffset": 535, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 552, "endOffset": 829, "count": 1 }, + { "startOffset": 607, "endOffset": 633, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 740, "endOffset": 753, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 847, "endOffset": 908, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "runFunctionTests", + "ranges": [{ "startOffset": 1015, "endOffset": 1035, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "findBin", + "ranges": [{ "startOffset": 1278, "endOffset": 1579, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1823, "endOffset": 3054, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1087", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/addon-console/dist/src/functions/stream-workflow-run.function.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 6503, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 162, "endOffset": 2320, "count": 1 }, + { "startOffset": 2279, "endOffset": 2317, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 366, "endOffset": 432, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 446, "endOffset": 536, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 553, "endOffset": 830, "count": 1 }, + { "startOffset": 608, "endOffset": 634, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 741, "endOffset": 754, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 848, "endOffset": 909, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "streamWorkflowRun", + "ranges": [{ "startOffset": 1019, "endOffset": 1040, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1391, "endOffset": 2267, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1088", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/addon-console/dist/src/functions/update-agent-config.function.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3558, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 162, "endOffset": 1755, "count": 1 }, + { "startOffset": 1714, "endOffset": 1752, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 366, "endOffset": 432, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 446, "endOffset": 536, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 553, "endOffset": 830, "count": 1 }, + { "startOffset": 608, "endOffset": 634, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 741, "endOffset": 754, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 848, "endOffset": 909, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "updateAgentConfig", + "ranges": [{ "startOffset": 1019, "endOffset": 1040, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1432, "endOffset": 1702, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1089", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/addon-console/dist/src/functions/update-function-body.function.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3551, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 163, "endOffset": 1756, "count": 1 }, + { "startOffset": 1714, "endOffset": 1753, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 367, "endOffset": 433, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 447, "endOffset": 537, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 554, "endOffset": 831, "count": 1 }, + { "startOffset": 609, "endOffset": 635, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 742, "endOffset": 755, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 849, "endOffset": 910, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "updateFunctionBody", + "ranges": [{ "startOffset": 1023, "endOffset": 1045, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1437, "endOffset": 1702, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1090", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/addon-console/dist/src/functions/update-function-config.function.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3608, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 165, "endOffset": 1785, "count": 1 }, + { "startOffset": 1741, "endOffset": 1782, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 369, "endOffset": 435, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 449, "endOffset": 539, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 556, "endOffset": 833, "count": 1 }, + { "startOffset": 611, "endOffset": 637, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 744, "endOffset": 757, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 851, "endOffset": 912, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "updateFunctionConfig", + "ranges": [{ "startOffset": 1031, "endOffset": 1055, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1456, "endOffset": 1729, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1091", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/index.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 7740, "count": 1 }, + { "startOffset": 638, "endOffset": 719, "count": 0 }, + { "startOffset": 895, "endOffset": 937, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 319, "endOffset": 636, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 641, "endOffset": 718, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 802, "endOffset": 893, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 897, "endOffset": 937, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 991, "endOffset": 1599, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "ownKeys", + "ranges": [{ "startOffset": 1023, "endOffset": 1287, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 1300, "endOffset": 1596, "count": 3 }, + { "startOffset": 1363, "endOffset": 1595, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 1660, "endOffset": 1741, "count": 3 }, + { "startOffset": 1718, "endOffset": 1738, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3542, "endOffset": 3621, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3746, "endOffset": 3807, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3975, "endOffset": 4051, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 4181, "endOffset": 4241, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 4370, "endOffset": 4428, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 4568, "endOffset": 4633, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 4785, "endOffset": 4854, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 4997, "endOffset": 5063, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 5215, "endOffset": 5284, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 5433, "endOffset": 5501, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 5644, "endOffset": 5710, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 5867, "endOffset": 5938, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 6818, "endOffset": 6874, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 6986, "endOffset": 7028, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 7100, "endOffset": 7144, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 7327, "endOffset": 7380, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1092", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@cucumber/cucumber/lib/support_code_library_builder/parallel_can_assign_helpers.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 544, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "hasTag", + "ranges": [{ "startOffset": 132, "endOffset": 223, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "atMostOnePicklePerTag", + "ranges": [{ "startOffset": 224, "endOffset": 488, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1093", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/cucumber/dist/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2202, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 120, "endOffset": 1427, "count": 1 }, + { "startOffset": 1324, "endOffset": 1424, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 326, "endOffset": 416, "count": 1 }, + { "startOffset": 361, "endOffset": 415, "count": 5 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 433, "endOffset": 710, "count": 1 }, + { "startOffset": 488, "endOffset": 514, "count": 0 }, + { "startOffset": 555, "endOffset": 699, "count": 5 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 621, "endOffset": 634, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 728, "endOffset": 789, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "StubTracker", + "ranges": [{ "startOffset": 845, "endOffset": 875, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createDbUtils", + "ranges": [{ "startOffset": 890, "endOffset": 917, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "createFunctionWorld", + "ranges": [{ "startOffset": 938, "endOffset": 974, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "registerCommonSteps", + "ranges": [{ "startOffset": 995, "endOffset": 1032, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "registerHooks", + "ranges": [{ "startOffset": 1047, "endOffset": 1077, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1094", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/cucumber/dist/tracker.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 5983, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 122, "endOffset": 2088, "count": 1 }, + { "startOffset": 2053, "endOffset": 2085, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 326, "endOffset": 392, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 406, "endOffset": 496, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 513, "endOffset": 790, "count": 1 }, + { "startOffset": 568, "endOffset": 594, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 701, "endOffset": 714, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 808, "endOffset": 869, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "StubTracker", + "ranges": [{ "startOffset": 931, "endOffset": 946, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1012, "endOffset": 1046, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1046, "endOffset": 1075, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "stub", + "ranges": [{ "startOffset": 1076, "endOffset": 1313, "count": 22 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1144, "endOffset": 1310, "count": 17 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 1164, "endOffset": 1309, "count": 17 }, + { "startOffset": 1210, "endOffset": 1214, "count": 11 } + ], + "isBlockCoverage": true + }, + { + "functionName": "assert", + "ranges": [{ "startOffset": 1313, "endOffset": 1642, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "verify", + "ranges": [ + { "startOffset": 1642, "endOffset": 2051, "count": 3 }, + { "startOffset": 1701, "endOffset": 1908, "count": 0 }, + { "startOffset": 1925, "endOffset": 2050, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1756, "endOffset": 1770, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1823, "endOffset": 1843, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1095", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/cucumber/dist/db.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 6280, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 117, "endOffset": 2393, "count": 1 }, + { "startOffset": 2356, "endOffset": 2390, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 321, "endOffset": 387, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 401, "endOffset": 491, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 508, "endOffset": 785, "count": 1 }, + { "startOffset": 563, "endOffset": 589, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 696, "endOffset": 709, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 803, "endOffset": 864, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "createDbUtils", + "ranges": [{ "startOffset": 918, "endOffset": 935, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "createDbUtils", + "ranges": [{ "startOffset": 1142, "endOffset": 2317, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "buildBaseDb", + "ranges": [ + { "startOffset": 1221, "endOffset": 1854, "count": 1 }, + { "startOffset": 1249, "endOffset": 1267, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1578, "endOffset": 1599, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "freshScenarioDb", + "ranges": [ + { "startOffset": 1855, "endOffset": 2120, "count": 3 }, + { "startOffset": 1901, "endOffset": 1969, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "removeScenarioDb", + "ranges": [{ "startOffset": 2121, "endOffset": 2189, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "teardownDb", + "ranges": [{ "startOffset": 2190, "endOffset": 2315, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1096", + "url": "node:sqlite", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 157, "count": 1 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1097", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/cucumber/dist/world.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 8937, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 120, "endOffset": 2970, "count": 1 }, + { "startOffset": 2927, "endOffset": 2967, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 324, "endOffset": 390, "count": 11 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 404, "endOffset": 494, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 511, "endOffset": 788, "count": 1 }, + { "startOffset": 566, "endOffset": 592, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 699, "endOffset": 712, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 806, "endOffset": 867, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "createFunctionWorld", + "ranges": [{ "startOffset": 933, "endOffset": 956, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "stubHttp", + "ranges": [{ "startOffset": 1139, "endOffset": 1327, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1217, "endOffset": 1240, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1276, "endOffset": 1313, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createFunctionWorld", + "ranges": [{ "startOffset": 1355, "endOffset": 2876, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1457, "endOffset": 1497, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1497, "endOffset": 1604, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "init", + "ranges": [{ "startOffset": 1605, "endOffset": 1692, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "destroy", + "ranges": [{ "startOffset": 1692, "endOffset": 1821, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "verify", + "ranges": [{ "startOffset": 1821, "endOffset": 1852, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "readRows", + "ranges": [{ "startOffset": 1852, "endOffset": 2100, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "persona", + "ranges": [ + { "startOffset": 2100, "endOffset": 2197, "count": 4 }, + { "startOffset": 2151, "endOffset": 2188, "count": 3 } + ], + "isBlockCoverage": true + }, + { + "functionName": "setSession", + "ranges": [{ "startOffset": 2197, "endOffset": 2257, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "call", + "ranges": [ + { "startOffset": 2257, "endOffset": 2836, "count": 4 }, + { "startOffset": 2407, "endOffset": 2443, "count": 0 }, + { "startOffset": 2805, "endOffset": 2835, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1098", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/cucumber/dist/hooks.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3020, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 120, "endOffset": 1433, "count": 1 }, + { "startOffset": 1396, "endOffset": 1430, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 324, "endOffset": 390, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 404, "endOffset": 494, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 511, "endOffset": 788, "count": 1 }, + { "startOffset": 566, "endOffset": 592, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 699, "endOffset": 712, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 806, "endOffset": 867, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "registerHooks", + "ranges": [{ "startOffset": 927, "endOffset": 944, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "registerHooks", + "ranges": [{ "startOffset": 990, "endOffset": 1357, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1097, "endOffset": 1125, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1145, "endOffset": 1172, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1190, "endOffset": 1245, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1262, "endOffset": 1355, "count": 3 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1099", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/cucumber/dist/steps/common.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 12821, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 127, "endOffset": 4470, "count": 1 }, + { "startOffset": 4427, "endOffset": 4467, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 397, "endOffset": 463, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 477, "endOffset": 567, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 584, "endOffset": 861, "count": 2 }, + { "startOffset": 639, "endOffset": 665, "count": 1 }, + { "startOffset": 706, "endOffset": 850, "count": 26 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 772, "endOffset": 785, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toESM", + "ranges": [ + { "startOffset": 874, "endOffset": 1062, "count": 1 }, + { "startOffset": 944, "endOffset": 947, "count": 0 }, + { "startOffset": 1049, "endOffset": 1056, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 1080, "endOffset": 1141, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "registerCommonSteps", + "ranges": [{ "startOffset": 1209, "endOffset": 1232, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "tableToInput", + "ranges": [ + { "startOffset": 1336, "endOffset": 1647, "count": 2 }, + { "startOffset": 1432, "endOffset": 1636, "count": 4 }, + { "startOffset": 1558, "endOffset": 1602, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "result", + "ranges": [ + { "startOffset": 1683, "endOffset": 1834, "count": 1 }, + { "startOffset": 1725, "endOffset": 1810, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "registerCommonSteps", + "ranges": [{ "startOffset": 1858, "endOffset": 4376, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1936, "endOffset": 1999, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2041, "endOffset": 2103, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2151, "endOffset": 2234, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 2270, "endOffset": 2393, "count": 4 }, + { "startOffset": 2380, "endOffset": 2389, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2426, "endOffset": 2524, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2571, "endOffset": 2856, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2898, "endOffset": 3006, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3056, "endOffset": 3149, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3197, "endOffset": 3364, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3409, "endOffset": 3462, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3547, "endOffset": 3807, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3874, "endOffset": 4082, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4150, "endOffset": 4374, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1100", + "url": "node:assert/strict", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 58, "count": 1 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1101", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/function-tests/tests/support/services.ts", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 7385, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 137, "endOffset": 2858, "count": 1 }, + { "startOffset": 2813, "endOffset": 2855, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 341, "endOffset": 407, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 421, "endOffset": 511, "count": 1 }, + { "startOffset": 456, "endOffset": 510, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 528, "endOffset": 805, "count": 1 }, + { "startOffset": 583, "endOffset": 609, "count": 0 }, + { "startOffset": 650, "endOffset": 794, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 716, "endOffset": 729, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 823, "endOffset": 884, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "createStubServices", + "ranges": [{ "startOffset": 955, "endOffset": 977, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "db", + "ranges": [{ "startOffset": 981, "endOffset": 987, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1898, "endOffset": 1953, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2112, "endOffset": 2130, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "createStubServices", + "ranges": [{ "startOffset": 2148, "endOffset": 2764, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [ + { "startOffset": 2362, "endOffset": 2443, "count": 21 }, + { "startOffset": 2397, "endOffset": 2417, "count": 9 }, + { "startOffset": 2417, "endOffset": 2442, "count": 12 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [ + { "startOffset": 2633, "endOffset": 2737, "count": 26 }, + { "startOffset": 2667, "endOffset": 2690, "count": 16 }, + { "startOffset": 2691, "endOffset": 2711, "count": 16 }, + { "startOffset": 2711, "endOffset": 2736, "count": 10 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1102", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/kysely-node-sqlite/dist/src/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2064, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 134, "endOffset": 1401, "count": 1 }, + { "startOffset": 1315, "endOffset": 1398, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 340, "endOffset": 430, "count": 1 }, + { "startOffset": 375, "endOffset": 429, "count": 3 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 447, "endOffset": 724, "count": 1 }, + { "startOffset": 502, "endOffset": 528, "count": 0 }, + { "startOffset": 569, "endOffset": 713, "count": 3 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 635, "endOffset": 648, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 742, "endOffset": 803, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "NodeSqliteDatabase", + "ranges": [{ "startOffset": 864, "endOffset": 913, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createCoercionPlugin", + "ranges": [{ "startOffset": 935, "endOffset": 982, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createNodeSqliteKysely", + "ranges": [{ "startOffset": 1006, "endOffset": 1065, "count": 3 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1103", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/kysely-node-sqlite/dist/src/node-sqlite-adapter.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 4185, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 148, "endOffset": 1682, "count": 1 }, + { "startOffset": 1640, "endOffset": 1679, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 352, "endOffset": 418, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 432, "endOffset": 522, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 539, "endOffset": 816, "count": 1 }, + { "startOffset": 594, "endOffset": 620, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 727, "endOffset": 740, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 834, "endOffset": 895, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "NodeSqliteDatabase", + "ranges": [{ "startOffset": 988, "endOffset": 1010, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1096, "endOffset": 1138, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1138, "endOffset": 1154, "count": 6 }], + "isBlockCoverage": true + }, + { + "functionName": "NodeSqliteStatement", + "ranges": [{ "startOffset": 1155, "endOffset": 1188, "count": 6 }], + "isBlockCoverage": true + }, + { + "functionName": "all", + "ranges": [{ "startOffset": 1188, "endOffset": 1240, "count": 6 }], + "isBlockCoverage": true + }, + { + "functionName": "iterate", + "ranges": [{ "startOffset": 1240, "endOffset": 1323, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "run", + "ranges": [{ "startOffset": 1323, "endOffset": 1451, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1477, "endOffset": 1518, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1518, "endOffset": 1520, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "NodeSqliteDatabase", + "ranges": [{ "startOffset": 1521, "endOffset": 1548, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "prepare", + "ranges": [{ "startOffset": 1548, "endOffset": 1614, "count": 6 }], + "isBlockCoverage": true + }, + { + "functionName": "close", + "ranges": [{ "startOffset": 1614, "endOffset": 1638, "count": 3 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1104", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/kysely-node-sqlite/dist/src/create-node-sqlite-kysely.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3334, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 154, "endOffset": 1751, "count": 1 }, + { "startOffset": 1705, "endOffset": 1748, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 358, "endOffset": 424, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 438, "endOffset": 528, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 545, "endOffset": 822, "count": 1 }, + { "startOffset": 600, "endOffset": 626, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 733, "endOffset": 746, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 840, "endOffset": 901, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "createNodeSqliteKysely", + "ranges": [{ "startOffset": 1010, "endOffset": 1036, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "createNodeSqliteKysely", + "ranges": [ + { "startOffset": 1251, "endOffset": 1648, "count": 3 }, + { "startOffset": 1392, "endOffset": 1398, "count": 0 }, + { "startOffset": 1466, "endOffset": 1499, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1105", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/index.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 16216, "count": 1 }, + { "startOffset": 456, "endOffset": 537, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 137, "endOffset": 454, "count": 236 }, + { "startOffset": 281, "endOffset": 296, "count": 0 }, + { "startOffset": 313, "endOffset": 333, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 376, "endOffset": 403, "count": 10 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 459, "endOffset": 536, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__exportStar", + "ranges": [ + { "startOffset": 590, "endOffset": 741, "count": 208 }, + { "startOffset": 634, "endOffset": 739, "count": 237 }, + { "startOffset": 708, "endOffset": 739, "count": 236 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1201, "endOffset": 1266, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 15986, "endOffset": 16031, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 16160, "endOffset": 16211, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1106", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/kysely.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 31775, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2613, "endOffset": 2619, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "Kysely", + "ranges": [ + { "startOffset": 2625, "endOffset": 3743, "count": 3 }, + { "startOffset": 2721, "endOffset": 2819, "count": 0 }, + { "startOffset": 3437, "endOffset": 3442, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get schema", + "ranges": [{ "startOffset": 3841, "endOffset": 3928, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get dynamic", + "ranges": [{ "startOffset": 4137, "endOffset": 4207, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get introspection", + "ranges": [{ "startOffset": 4299, "endOffset": 4404, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "case", + "ranges": [{ "startOffset": 4409, "endOffset": 4649, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get fn", + "ranges": [{ "startOffset": 6255, "endOffset": 6336, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transaction", + "ranges": [{ "startOffset": 8850, "endOffset": 8930, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "startTransaction", + "ranges": [{ "startOffset": 12995, "endOffset": 13090, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "connection", + "ranges": [{ "startOffset": 13618, "endOffset": 13696, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "withPlugin", + "ranges": [{ "startOffset": 13796, "endOffset": 13953, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "withoutPlugins", + "ranges": [{ "startOffset": 14041, "endOffset": 14194, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "withSchema", + "ranges": [{ "startOffset": 14232, "endOffset": 14442, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "withTables", + "ranges": [{ "startOffset": 15189, "endOffset": 15256, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "destroy", + "ranges": [{ "startOffset": 15425, "endOffset": 15492, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "get isTransaction", + "ranges": [{ "startOffset": 15637, "endOffset": 15686, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getExecutor", + "ranges": [{ "startOffset": 15740, "endOffset": 15798, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "executeQuery", + "ranges": [{ "startOffset": 16112, "endOffset": 16574, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 16579, "endOffset": 16646, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 16713, "endOffset": 16719, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "Transaction", + "ranges": [{ "startOffset": 16725, "endOffset": 16802, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get isTransaction", + "ranges": [{ "startOffset": 16974, "endOffset": 17022, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transaction", + "ranges": [{ "startOffset": 17027, "endOffset": 17142, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "connection", + "ranges": [{ "startOffset": 17147, "endOffset": 17260, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "destroy", + "ranges": [{ "startOffset": 17265, "endOffset": 17378, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "withPlugin", + "ranges": [{ "startOffset": 17383, "endOffset": 17545, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "withoutPlugins", + "ranges": [{ "startOffset": 17550, "endOffset": 17708, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "withSchema", + "ranges": [{ "startOffset": 17713, "endOffset": 17928, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "withTables", + "ranges": [{ "startOffset": 17933, "endOffset": 18005, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isKyselyProps", + "ranges": [ + { "startOffset": 18043, "endOffset": 18348, "count": 3 }, + { "startOffset": 18177, "endOffset": 18231, "count": 0 }, + { "startOffset": 18232, "endOffset": 18288, "count": 0 }, + { "startOffset": 18289, "endOffset": 18344, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 18379, "endOffset": 18385, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "ConnectionBuilder", + "ranges": [{ "startOffset": 18391, "endOffset": 18477, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "execute", + "ranges": [{ "startOffset": 18482, "endOffset": 18900, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 18981, "endOffset": 18987, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "TransactionBuilder", + "ranges": [{ "startOffset": 18993, "endOffset": 19079, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setAccessMode", + "ranges": [{ "startOffset": 19084, "endOffset": 19221, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setIsolationLevel", + "ranges": [{ "startOffset": 19226, "endOffset": 19375, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "execute", + "ranges": [{ "startOffset": 19380, "endOffset": 20750, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 20843, "endOffset": 20849, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "ControlledTransactionBuilder", + "ranges": [{ "startOffset": 20855, "endOffset": 20941, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setAccessMode", + "ranges": [{ "startOffset": 20946, "endOffset": 21093, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setIsolationLevel", + "ranges": [{ "startOffset": 21098, "endOffset": 21257, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "execute", + "ranges": [{ "startOffset": 21262, "endOffset": 21937, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 22063, "endOffset": 22100, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "ControlledTransaction", + "ranges": [{ "startOffset": 22106, "endOffset": 22666, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get isCommitted", + "ranges": [{ "startOffset": 22671, "endOffset": 22736, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get isRolledBack", + "ranges": [{ "startOffset": 22741, "endOffset": 22808, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "commit", + "ranges": [{ "startOffset": 23375, "endOffset": 23678, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "rollback", + "ranges": [{ "startOffset": 24278, "endOffset": 24586, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "savepoint", + "ranges": [{ "startOffset": 25500, "endOffset": 25824, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "rollbackToSavepoint", + "ranges": [{ "startOffset": 26769, "endOffset": 27113, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "releaseSavepoint", + "ranges": [{ "startOffset": 28246, "endOffset": 28584, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "withPlugin", + "ranges": [{ "startOffset": 28589, "endOffset": 28761, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "withoutPlugins", + "ranges": [{ "startOffset": 28766, "endOffset": 28934, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "withSchema", + "ranges": [{ "startOffset": 28939, "endOffset": 29164, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "withTables", + "ranges": [{ "startOffset": 29169, "endOffset": 29251, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 29329, "endOffset": 29332, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "Command", + "ranges": [{ "startOffset": 29338, "endOffset": 29384, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "execute", + "ranges": [{ "startOffset": 29434, "endOffset": 29490, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "assertNotCommittedOrRolledBack", + "ranges": [{ "startOffset": 29520, "endOffset": 29765, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 29968, "endOffset": 29989, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "NotCommittedOrRolledBackAssertingExecutor", + "ranges": [{ "startOffset": 29995, "endOffset": 30260, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get adapter", + "ranges": [{ "startOffset": 30265, "endOffset": 30325, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get plugins", + "ranges": [{ "startOffset": 30330, "endOffset": 30390, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformQuery", + "ranges": [{ "startOffset": 30395, "endOffset": 30493, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "compileQuery", + "ranges": [{ "startOffset": 30498, "endOffset": 30592, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "provideConnection", + "ranges": [{ "startOffset": 30597, "endOffset": 30691, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "executeQuery", + "ranges": [{ "startOffset": 30696, "endOffset": 30843, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stream", + "ranges": [{ "startOffset": 30848, "endOffset": 31005, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "withConnectionProvider", + "ranges": [{ "startOffset": 31010, "endOffset": 31194, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "withPlugin", + "ranges": [{ "startOffset": 31199, "endOffset": 31335, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "withPlugins", + "ranges": [{ "startOffset": 31340, "endOffset": 31480, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "withPluginAtFront", + "ranges": [{ "startOffset": 31485, "endOffset": 31635, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "withoutPlugins", + "ranges": [{ "startOffset": 31640, "endOffset": 31772, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1107", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/schema/schema.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 10763, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2319, "endOffset": 2328, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "SchemaModule", + "ranges": [{ "startOffset": 2334, "endOffset": 2398, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createTable", + "ranges": [{ "startOffset": 4121, "endOffset": 4427, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "dropTable", + "ranges": [{ "startOffset": 4600, "endOffset": 4896, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createIndex", + "ranges": [{ "startOffset": 5170, "endOffset": 5449, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "dropIndex", + "ranges": [{ "startOffset": 5646, "endOffset": 5915, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createSchema", + "ranges": [{ "startOffset": 6103, "endOffset": 6381, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "dropSchema", + "ranges": [{ "startOffset": 6561, "endOffset": 6829, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "alterTable", + "ranges": [{ "startOffset": 7072, "endOffset": 7373, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createView", + "ranges": [{ "startOffset": 7648, "endOffset": 7920, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "refreshMaterializedView", + "ranges": [{ "startOffset": 8148, "endOffset": 8487, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "dropView", + "ranges": [{ "startOffset": 8677, "endOffset": 8939, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createType", + "ranges": [{ "startOffset": 9234, "endOffset": 9560, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "dropType", + "ranges": [{ "startOffset": 9827, "endOffset": 10143, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "withPlugin", + "ranges": [{ "startOffset": 10241, "endOffset": 10335, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "withoutPlugins", + "ranges": [{ "startOffset": 10422, "endOffset": 10512, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "withSchema", + "ranges": [{ "startOffset": 10576, "endOffset": 10723, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1108", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/alter-table-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 911, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 254, "endOffset": 317, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 323, "endOffset": 458, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWithTableProps", + "ranges": [{ "startOffset": 464, "endOffset": 606, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWithColumnAlteration", + "ranges": [{ "startOffset": 612, "endOffset": 905, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1109", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/util/object-utils.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 4157, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "isEmpty", + "ranges": [{ "startOffset": 701, "endOffset": 919, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isUndefined", + "ranges": [{ "startOffset": 920, "endOffset": 1009, "count": 20 }], + "isBlockCoverage": true + }, + { + "functionName": "isString", + "ranges": [{ "startOffset": 1010, "endOffset": 1072, "count": 38 }], + "isBlockCoverage": true + }, + { + "functionName": "isNumber", + "ranges": [{ "startOffset": 1073, "endOffset": 1135, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isBoolean", + "ranges": [{ "startOffset": 1136, "endOffset": 1200, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isNull", + "ranges": [{ "startOffset": 1201, "endOffset": 1250, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isDate", + "ranges": [{ "startOffset": 1251, "endOffset": 1307, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isBigInt", + "ranges": [{ "startOffset": 1308, "endOffset": 1370, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isBuffer", + "ranges": [{ "startOffset": 1467, "endOffset": 1559, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isFunction", + "ranges": [{ "startOffset": 1560, "endOffset": 1626, "count": 34 }], + "isBlockCoverage": true + }, + { + "functionName": "isObject", + "ranges": [ + { "startOffset": 1627, "endOffset": 1705, "count": 97 }, + { "startOffset": 1687, "endOffset": 1702, "count": 9 } + ], + "isBlockCoverage": true + }, + { + "functionName": "isArrayBufferOrView", + "ranges": [{ "startOffset": 1706, "endOffset": 1809, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isPlainObject", + "ranges": [ + { "startOffset": 1810, "endOffset": 2180, "count": 47 }, + { "startOffset": 1863, "endOffset": 1899, "count": 0 }, + { "startOffset": 1930, "endOffset": 2179, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "getLast", + "ranges": [{ "startOffset": 2181, "endOffset": 2238, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "freeze", + "ranges": [{ "startOffset": 2239, "endOffset": 2294, "count": 395 }], + "isBlockCoverage": true + }, + { + "functionName": "asArray", + "ranges": [{ "startOffset": 2295, "endOffset": 2417, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "asReadonlyArray", + "ranges": [{ "startOffset": 2418, "endOffset": 2556, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isReadonlyArray", + "ranges": [{ "startOffset": 2557, "endOffset": 2621, "count": 12 }], + "isBlockCoverage": true + }, + { + "functionName": "noop", + "ranges": [{ "startOffset": 2622, "endOffset": 2660, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "compare", + "ranges": [{ "startOffset": 2661, "endOffset": 2923, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "compareArrays", + "ranges": [{ "startOffset": 2924, "endOffset": 3174, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "compareObjects", + "ranges": [{ "startOffset": 3175, "endOffset": 3445, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "compareBuffers", + "ranges": [{ "startOffset": 3446, "endOffset": 3530, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "compareDates", + "ranges": [{ "startOffset": 3531, "endOffset": 3618, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "compareGenericObjects", + "ranges": [{ "startOffset": 3619, "endOffset": 3944, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getTag", + "ranges": [{ "startOffset": 3989, "endOffset": 4156, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1110", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/create-index-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 901, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 318, "endOffset": 382, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 388, "endOffset": 572, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWith", + "ranges": [{ "startOffset": 578, "endOffset": 710, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWithColumns", + "ranges": [{ "startOffset": 716, "endOffset": 895, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1111", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/identifier-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 462, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 254, "endOffset": 317, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 323, "endOffset": 456, "count": 24 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1112", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/create-schema-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 775, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 320, "endOffset": 385, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 391, "endOffset": 613, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWith", + "ranges": [{ "startOffset": 619, "endOffset": 769, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1113", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/create-table-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2044, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 354, "endOffset": 418, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 424, "endOffset": 616, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWithColumn", + "ranges": [{ "startOffset": 622, "endOffset": 839, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWithConstraint", + "ranges": [{ "startOffset": 845, "endOffset": 1186, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWithFrontModifier", + "ranges": [{ "startOffset": 1192, "endOffset": 1539, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWithEndModifier", + "ranges": [{ "startOffset": 1545, "endOffset": 1884, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWith", + "ranges": [{ "startOffset": 1890, "endOffset": 2038, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1114", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/drop-index-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 788, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 334, "endOffset": 396, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 402, "endOffset": 634, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWith", + "ranges": [{ "startOffset": 640, "endOffset": 782, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1115", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/schemable-identifier-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 934, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 334, "endOffset": 406, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 412, "endOffset": 622, "count": 6 }], + "isBlockCoverage": true + }, + { + "functionName": "createWithSchema", + "ranges": [{ "startOffset": 628, "endOffset": 928, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1116", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/drop-schema-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 763, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 316, "endOffset": 379, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 385, "endOffset": 605, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWith", + "ranges": [{ "startOffset": 611, "endOffset": 757, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1117", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/drop-table-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 641, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 252, "endOffset": 314, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 320, "endOffset": 485, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWith", + "ranges": [{ "startOffset": 491, "endOffset": 635, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1118", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/parser/table-parser.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2029, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "parseTableExpressionOrList", + "ranges": [ + { "startOffset": 700, "endOffset": 932, "count": 4 }, + { "startOffset": 800, "endOffset": 867, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 827, "endOffset": 859, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseTableExpression", + "ranges": [ + { "startOffset": 933, "endOffset": 1291, "count": 4 }, + { "startOffset": 1068, "endOffset": 1289, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "parseAliasedTable", + "ranges": [ + { "startOffset": 1292, "endOffset": 1651, "count": 4 }, + { "startOffset": 1403, "endOffset": 1599, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "parseTable", + "ranges": [ + { "startOffset": 1652, "endOffset": 1982, "count": 6 }, + { "startOffset": 1755, "endOffset": 1908, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "trim", + "ranges": [{ "startOffset": 1983, "endOffset": 2028, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1119", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/alias-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 468, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 244, "endOffset": 302, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 308, "endOffset": 462, "count": 2 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1120", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/table-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 838, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 326, "endOffset": 384, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 390, "endOffset": 590, "count": 6 }], + "isBlockCoverage": true + }, + { + "functionName": "createWithSchema", + "ranges": [{ "startOffset": 596, "endOffset": 832, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1121", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/parser/expression-parser.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1453, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "parseExpression", + "ranges": [{ "startOffset": 528, "endOffset": 891, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseAliasedExpression", + "ranges": [ + { "startOffset": 892, "endOffset": 1270, "count": 2 }, + { "startOffset": 1044, "endOffset": 1269, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "isExpressionOrFactory", + "ranges": [{ "startOffset": 1271, "endOffset": 1452, "count": 18 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1122", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/expression/expression.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 730, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "isExpression", + "ranges": [ + { "startOffset": 317, "endOffset": 485, "count": 18 }, + { "startOffset": 394, "endOffset": 420, "count": 0 }, + { "startOffset": 421, "endOffset": 482, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "isAliasedExpression", + "ranges": [ + { "startOffset": 486, "endOffset": 729, "count": 18 }, + { "startOffset": 571, "endOffset": 601, "count": 0 }, + { "startOffset": 602, "endOffset": 655, "count": 0 }, + { "startOffset": 656, "endOffset": 725, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1123", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/operation-node-source.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 341, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "isOperationNodeSource", + "ranges": [{ "startOffset": 194, "endOffset": 340, "count": 4 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1124", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/expression/expression-builder.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 7392, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "createExpressionBuilder", + "ranges": [{ "startOffset": 1955, "endOffset": 7319, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "binary", + "ranges": [{ "startOffset": 2051, "endOffset": 2225, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "unary", + "ranges": [{ "startOffset": 2230, "endOffset": 2388, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "selectFrom", + "ranges": [{ "startOffset": 2482, "endOffset": 2827, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "case", + "ranges": [{ "startOffset": 2837, "endOffset": 3153, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ref", + "ranges": [{ "startOffset": 3163, "endOffset": 3520, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "jsonPath", + "ranges": [{ "startOffset": 3530, "endOffset": 3658, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "table", + "ranges": [{ "startOffset": 3668, "endOffset": 3800, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "val", + "ranges": [{ "startOffset": 3810, "endOffset": 3950, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "refTuple", + "ranges": [{ "startOffset": 3960, "endOffset": 4151, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "tuple", + "ranges": [{ "startOffset": 4161, "endOffset": 4341, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lit", + "ranges": [{ "startOffset": 4351, "endOffset": 4494, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "not", + "ranges": [{ "startOffset": 4519, "endOffset": 4579, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "exists", + "ranges": [{ "startOffset": 4589, "endOffset": 4655, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "neg", + "ranges": [{ "startOffset": 4665, "endOffset": 4723, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "between", + "ranges": [{ "startOffset": 4733, "endOffset": 5133, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "betweenSymmetric", + "ranges": [{ "startOffset": 5143, "endOffset": 5562, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "and", + "ranges": [{ "startOffset": 5572, "endOffset": 5941, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "or", + "ranges": [{ "startOffset": 5951, "endOffset": 6317, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parens", + "ranges": [{ "startOffset": 6327, "endOffset": 6788, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cast", + "ranges": [{ "startOffset": 6798, "endOffset": 7049, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "withSchema", + "ranges": [{ "startOffset": 7059, "endOffset": 7215, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "expressionBuilder", + "ranges": [{ "startOffset": 7320, "endOffset": 7391, "count": 2 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1125", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/query-builder/select-query-builder.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 15038, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1665, "endOffset": 1671, "count": 12 }], + "isBlockCoverage": true + }, + { + "functionName": "SelectQueryBuilderImpl", + "ranges": [{ "startOffset": 1677, "endOffset": 1763, "count": 12 }], + "isBlockCoverage": true + }, + { + "functionName": "get expressionType", + "ranges": [{ "startOffset": 1768, "endOffset": 1822, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get isSelectQueryBuilder", + "ranges": [{ "startOffset": 1827, "endOffset": 1882, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "where", + "ranges": [{ "startOffset": 1887, "endOffset": 2140, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "whereRef", + "ranges": [{ "startOffset": 2145, "endOffset": 2408, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "having", + "ranges": [{ "startOffset": 2413, "endOffset": 2681, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "havingRef", + "ranges": [{ "startOffset": 2686, "endOffset": 2964, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "select", + "ranges": [{ "startOffset": 2969, "endOffset": 3215, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "distinctOn", + "ranges": [{ "startOffset": 3220, "endOffset": 3489, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "modifyFront", + "ranges": [{ "startOffset": 3494, "endOffset": 3791, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "modifyEnd", + "ranges": [{ "startOffset": 3796, "endOffset": 4076, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "distinct", + "ranges": [{ "startOffset": 4081, "endOffset": 4337, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "forUpdate", + "ranges": [{ "startOffset": 4342, "endOffset": 4674, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "forShare", + "ranges": [{ "startOffset": 4679, "endOffset": 5009, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "forKeyShare", + "ranges": [{ "startOffset": 5014, "endOffset": 5350, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "forNoKeyUpdate", + "ranges": [{ "startOffset": 5355, "endOffset": 5697, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "skipLocked", + "ranges": [{ "startOffset": 5702, "endOffset": 5947, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "noWait", + "ranges": [{ "startOffset": 5952, "endOffset": 6189, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "selectAll", + "ranges": [{ "startOffset": 6194, "endOffset": 6435, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "innerJoin", + "ranges": [{ "startOffset": 6440, "endOffset": 6512, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "leftJoin", + "ranges": [{ "startOffset": 6517, "endOffset": 6587, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "rightJoin", + "ranges": [{ "startOffset": 6592, "endOffset": 6664, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fullJoin", + "ranges": [{ "startOffset": 6669, "endOffset": 6739, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "crossJoin", + "ranges": [{ "startOffset": 6744, "endOffset": 6816, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "innerJoinLateral", + "ranges": [{ "startOffset": 6821, "endOffset": 6907, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "leftJoinLateral", + "ranges": [{ "startOffset": 6912, "endOffset": 6996, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "crossJoinLateral", + "ranges": [{ "startOffset": 7001, "endOffset": 7087, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "crossApply", + "ranges": [{ "startOffset": 7092, "endOffset": 7166, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "outerApply", + "ranges": [{ "startOffset": 7171, "endOffset": 7245, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#join", + "ranges": [{ "startOffset": 7250, "endOffset": 7479, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "orderBy", + "ranges": [{ "startOffset": 7484, "endOffset": 7713, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "groupBy", + "ranges": [{ "startOffset": 7718, "endOffset": 7963, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "limit", + "ranges": [{ "startOffset": 7968, "endOffset": 8239, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "offset", + "ranges": [{ "startOffset": 8244, "endOffset": 8521, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fetch", + "ranges": [{ "startOffset": 8526, "endOffset": 8788, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "top", + "ranges": [{ "startOffset": 8793, "endOffset": 9031, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "union", + "ranges": [{ "startOffset": 9036, "endOffset": 9313, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "unionAll", + "ranges": [{ "startOffset": 9318, "endOffset": 9597, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "intersect", + "ranges": [{ "startOffset": 9602, "endOffset": 9887, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "intersectAll", + "ranges": [{ "startOffset": 9892, "endOffset": 10179, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "except", + "ranges": [{ "startOffset": 10184, "endOffset": 10463, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "exceptAll", + "ranges": [{ "startOffset": 10468, "endOffset": 10749, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "as", + "ranges": [{ "startOffset": 10754, "endOffset": 10834, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "clearSelect", + "ranges": [{ "startOffset": 10839, "endOffset": 11033, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "clearWhere", + "ranges": [{ "startOffset": 11038, "endOffset": 11213, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "clearLimit", + "ranges": [{ "startOffset": 11218, "endOffset": 11406, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "clearOffset", + "ranges": [{ "startOffset": 11411, "endOffset": 11601, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "clearOrderBy", + "ranges": [{ "startOffset": 11606, "endOffset": 11785, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "clearGroupBy", + "ranges": [{ "startOffset": 11790, "endOffset": 11982, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "$call", + "ranges": [{ "startOffset": 11987, "endOffset": 12033, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "$if", + "ranges": [{ "startOffset": 12038, "endOffset": 12196, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "$castTo", + "ranges": [{ "startOffset": 12201, "endOffset": 12254, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "$narrowType", + "ranges": [{ "startOffset": 12259, "endOffset": 12316, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "$assertType", + "ranges": [{ "startOffset": 12321, "endOffset": 12378, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "$asTuple", + "ranges": [{ "startOffset": 12383, "endOffset": 12487, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "$asScalar", + "ranges": [{ "startOffset": 12492, "endOffset": 12597, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "withPlugin", + "ranges": [{ "startOffset": 12602, "endOffset": 12755, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toOperationNode", + "ranges": [{ "startOffset": 12760, "endOffset": 12881, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "compile", + "ranges": [{ "startOffset": 12886, "endOffset": 12998, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "execute", + "ranges": [{ "startOffset": 13003, "endOffset": 13179, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "executeTakeFirst", + "ranges": [{ "startOffset": 13184, "endOffset": 13286, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "executeTakeFirstOrThrow", + "ranges": [{ "startOffset": 13291, "endOffset": 13751, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stream", + "ranges": [{ "startOffset": 13756, "endOffset": 14001, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "explain", + "ranges": [{ "startOffset": 14006, "endOffset": 14264, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createSelectQueryBuilder", + "ranges": [{ "startOffset": 14296, "endOffset": 14386, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 14535, "endOffset": 14560, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "AliasedSelectQueryBuilderImpl", + "ranges": [{ "startOffset": 14566, "endOffset": 14678, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get expression", + "ranges": [{ "startOffset": 14683, "endOffset": 14742, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get alias", + "ranges": [{ "startOffset": 14747, "endOffset": 14794, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get isAliasedSelectQueryBuilder", + "ranges": [{ "startOffset": 14799, "endOffset": 14861, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toOperationNode", + "ranges": [{ "startOffset": 14866, "endOffset": 15035, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1126", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/select-modifier-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 684, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 262, "endOffset": 329, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 335, "endOffset": 500, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createWithExpression", + "ranges": [{ "startOffset": 506, "endOffset": 678, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1127", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/parser/join-parser.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1336, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "parseJoin", + "ranges": [{ "startOffset": 362, "endOffset": 760, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseCallbackJoin", + "ranges": [{ "startOffset": 761, "endOffset": 913, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseSingleOnJoin", + "ranges": [{ "startOffset": 914, "endOffset": 1186, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseOnlessJoin", + "ranges": [{ "startOffset": 1187, "endOffset": 1335, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1128", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/join-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1073, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 288, "endOffset": 345, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 351, "endOffset": 539, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createWithOn", + "ranges": [{ "startOffset": 545, "endOffset": 764, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWithOn", + "ranges": [{ "startOffset": 770, "endOffset": 1067, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1129", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/on-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 847, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 332, "endOffset": 387, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 393, "endOffset": 526, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWithOperation", + "ranges": [{ "startOffset": 532, "endOffset": 841, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1130", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/and-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 460, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 240, "endOffset": 296, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 302, "endOffset": 454, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1131", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/or-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 456, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 238, "endOffset": 293, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 299, "endOffset": 450, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1132", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/parser/binary-operation-parser.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 4030, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "parseValueBinaryOperationOrExpression", + "ranges": [ + { "startOffset": 1092, "endOffset": 1428, "count": 2 }, + { "startOffset": 1250, "endOffset": 1427, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "parseValueBinaryOperation", + "ranges": [ + { "startOffset": 1429, "endOffset": 1968, "count": 2 }, + { "startOffset": 1520, "endOffset": 1545, "count": 0 }, + { "startOffset": 1547, "endOffset": 1758, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "parseReferentialBinaryOperation", + "ranges": [{ "startOffset": 1969, "endOffset": 2246, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseFilterObject", + "ranges": [{ "startOffset": 2247, "endOffset": 2513, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseFilterList", + "ranges": [{ "startOffset": 2514, "endOffset": 3218, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isIsOperator", + "ranges": [{ "startOffset": 3219, "endOffset": 3309, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "needsIsOperator", + "ranges": [{ "startOffset": 3310, "endOffset": 3437, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseOperator", + "ranges": [ + { "startOffset": 3438, "endOffset": 3842, "count": 2 }, + { "startOffset": 3647, "endOffset": 3841, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "toOperationNode", + "ranges": [{ "startOffset": 3843, "endOffset": 4029, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1133", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/binary-operation-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 568, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 264, "endOffset": 332, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 338, "endOffset": 562, "count": 2 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1134", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/operator-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2572, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 1746, "endOffset": 1807, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 1813, "endOffset": 1952, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "isOperator", + "ranges": [{ "startOffset": 1958, "endOffset": 2067, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isBinaryOperator", + "ranges": [{ "startOffset": 2068, "endOffset": 2190, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isComparisonOperator", + "ranges": [{ "startOffset": 2191, "endOffset": 2321, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isArithmeticOperator", + "ranges": [{ "startOffset": 2322, "endOffset": 2452, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isJSONOperator", + "ranges": [{ "startOffset": 2453, "endOffset": 2571, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1135", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/parser/reference-parser.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 4816, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "parseSimpleReferenceExpression", + "ranges": [ + { "startOffset": 1435, "endOffset": 1613, "count": 4 }, + { "startOffset": 1577, "endOffset": 1612, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "parseReferenceExpressionOrList", + "ranges": [ + { "startOffset": 1614, "endOffset": 1850, "count": 2 }, + { "startOffset": 1783, "endOffset": 1848, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1739, "endOffset": 1775, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "parseReferenceExpression", + "ranges": [ + { "startOffset": 1851, "endOffset": 2078, "count": 4 }, + { "startOffset": 1956, "endOffset": 2028, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "parseJSONReference", + "ranges": [{ "startOffset": 2079, "endOffset": 2773, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseStringReference", + "ranges": [ + { "startOffset": 2774, "endOffset": 3293, "count": 6 }, + { "startOffset": 2991, "endOffset": 3292, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "parseAliasedStringReference", + "ranges": [{ "startOffset": 3294, "endOffset": 3687, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseColumnName", + "ranges": [{ "startOffset": 3688, "endOffset": 3779, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseOrderedColumnName", + "ranges": [{ "startOffset": 3780, "endOffset": 4288, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseStringReferenceWithTableAndSchema", + "ranges": [{ "startOffset": 4289, "endOffset": 4546, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseStringReferenceWithTable", + "ranges": [{ "startOffset": 4547, "endOffset": 4769, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "trim", + "ranges": [{ "startOffset": 4770, "endOffset": 4815, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1136", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/column-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 564, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 308, "endOffset": 367, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 373, "endOffset": 558, "count": 16 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1137", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/reference-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 764, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 314, "endOffset": 376, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 382, "endOffset": 544, "count": 6 }], + "isBlockCoverage": true + }, + { + "functionName": "createSelectAll", + "ranges": [{ "startOffset": 550, "endOffset": 758, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1138", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/select-all-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 436, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 252, "endOffset": 314, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 320, "endOffset": 430, "count": 2 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1139", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/parser/order-by-parser.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3323, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "isOrderByDirection", + "ranges": [ + { "startOffset": 784, "endOffset": 870, "count": 2 }, + { "startOffset": 848, "endOffset": 867, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "parseOrderBy", + "ranges": [ + { "startOffset": 871, "endOffset": 1427, "count": 2 }, + { "startOffset": 988, "endOffset": 1426, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1228, "endOffset": 1260, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseOrderByItem", + "ranges": [ + { "startOffset": 1428, "endOffset": 1782, "count": 2 }, + { "startOffset": 1588, "endOffset": 1720, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "parseOrderByExpression", + "ranges": [ + { "startOffset": 1783, "endOffset": 2451, "count": 2 }, + { "startOffset": 1888, "endOffset": 1961, "count": 0 }, + { "startOffset": 2039, "endOffset": 2085, "count": 0 }, + { "startOffset": 2151, "endOffset": 2383, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "parseOrderByWithModifiers", + "ranges": [ + { "startOffset": 2452, "endOffset": 3322, "count": 2 }, + { "startOffset": 2591, "endOffset": 2675, "count": 0 }, + { "startOffset": 2798, "endOffset": 3321, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1140", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/dynamic/dynamic-reference-builder.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1359, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 442, "endOffset": 459, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "get dynamicReference", + "ranges": [{ "startOffset": 465, "endOffset": 534, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get refType", + "ranges": [{ "startOffset": 813, "endOffset": 860, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "DynamicReferenceBuilder", + "ranges": [{ "startOffset": 865, "endOffset": 939, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toOperationNode", + "ranges": [{ "startOffset": 944, "endOffset": 1067, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isDynamicReferenceBuilder", + "ranges": [ + { "startOffset": 1129, "endOffset": 1358, "count": 4 }, + { "startOffset": 1220, "endOffset": 1289, "count": 2 }, + { "startOffset": 1290, "endOffset": 1354, "count": 2 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1141", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/order-by-item-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 644, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 256, "endOffset": 320, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 326, "endOffset": 500, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "cloneWith", + "ranges": [{ "startOffset": 506, "endOffset": 638, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1142", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/raw-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 882, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 240, "endOffset": 296, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 302, "endOffset": 568, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "createWithSql", + "ranges": [{ "startOffset": 574, "endOffset": 650, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "createWithChild", + "ranges": [{ "startOffset": 656, "endOffset": 744, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createWithChildren", + "ranges": [{ "startOffset": 750, "endOffset": 876, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1143", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/query-builder/order-by-item-builder.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2457, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 427, "endOffset": 433, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "OrderByItemBuilder", + "ranges": [{ "startOffset": 439, "endOffset": 525, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "desc", + "ranges": [{ "startOffset": 637, "endOffset": 879, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "asc", + "ranges": [{ "startOffset": 991, "endOffset": 1231, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "nullsLast", + "ranges": [{ "startOffset": 1438, "endOffset": 1615, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "nullsFirst", + "ranges": [{ "startOffset": 1822, "endOffset": 2001, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "collate", + "ranges": [{ "startOffset": 2084, "endOffset": 2342, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toOperationNode", + "ranges": [{ "startOffset": 2347, "endOffset": 2405, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1144", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/collate-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 577, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 310, "endOffset": 370, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 376, "endOffset": 571, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1145", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/util/log-once.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 418, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "logOnce", + "ranges": [{ "startOffset": 266, "endOffset": 417, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1146", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/json-reference-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 670, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 260, "endOffset": 326, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 332, "endOffset": 512, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWithTraversal", + "ranges": [{ "startOffset": 518, "endOffset": 664, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1147", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/json-operator-chain-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 750, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 268, "endOffset": 338, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 344, "endOffset": 547, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWithValue", + "ranges": [{ "startOffset": 553, "endOffset": 744, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1148", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/json-path-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 750, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 250, "endOffset": 311, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 317, "endOffset": 517, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWithLeg", + "ranges": [{ "startOffset": 523, "endOffset": 744, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1149", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/parser/value-parser.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1791, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "parseValueExpressionOrList", + "ranges": [ + { "startOffset": 679, "endOffset": 868, "count": 2 }, + { "startOffset": 775, "endOffset": 828, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "parseValueExpression", + "ranges": [ + { "startOffset": 869, "endOffset": 1094, "count": 2 }, + { "startOffset": 970, "endOffset": 1042, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "isSafeImmediateValue", + "ranges": [{ "startOffset": 1095, "endOffset": 1269, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseSafeImmediateValue", + "ranges": [{ "startOffset": 1270, "endOffset": 1496, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseValueExpressionList", + "ranges": [{ "startOffset": 1497, "endOffset": 1790, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1150", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/primitive-value-list-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 542, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 270, "endOffset": 341, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 347, "endOffset": 536, "count": 2 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1151", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/value-list-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 501, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 252, "endOffset": 314, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 320, "endOffset": 495, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1152", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/value-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 618, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 244, "endOffset": 302, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 308, "endOffset": 438, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "createImmediate", + "ranges": [{ "startOffset": 444, "endOffset": 612, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1153", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/parens-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 446, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 246, "endOffset": 305, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 311, "endOffset": 440, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1154", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/parser/parse-utils.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1848, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "createSelectQueryBuilder", + "ranges": [{ "startOffset": 979, "endOffset": 1337, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createQueryCreator", + "ranges": [{ "startOffset": 1338, "endOffset": 1492, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createJoinBuilder", + "ranges": [{ "startOffset": 1493, "endOffset": 1707, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createOverBuilder", + "ranges": [{ "startOffset": 1708, "endOffset": 1847, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1155", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/over-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1226, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 366, "endOffset": 423, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 429, "endOffset": 534, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWithOrderByItems", + "ranges": [{ "startOffset": 540, "endOffset": 861, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWithPartitionByItems", + "ranges": [{ "startOffset": 867, "endOffset": 1220, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1156", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/order-by-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 702, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 248, "endOffset": 308, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 314, "endOffset": 489, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "cloneWithItems", + "ranges": [{ "startOffset": 495, "endOffset": 696, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1157", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/partition-by-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 725, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 256, "endOffset": 320, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 326, "endOffset": 500, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWithItems", + "ranges": [{ "startOffset": 506, "endOffset": 719, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1158", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/select-query-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 4481, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 470, "endOffset": 534, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 540, "endOffset": 709, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createFrom", + "ranges": [ + { "startOffset": 715, "endOffset": 960, "count": 4 }, + { "startOffset": 919, "endOffset": 940, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "cloneWithSelections", + "ranges": [ + { "startOffset": 966, "endOffset": 1285, "count": 4 }, + { "startOffset": 1136, "endOffset": 1206, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "cloneWithDistinctOn", + "ranges": [{ "startOffset": 1291, "endOffset": 1613, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWithFrontModifier", + "ranges": [{ "startOffset": 1619, "endOffset": 1946, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWithOrderByItems", + "ranges": [{ "startOffset": 2084, "endOffset": 2161, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWithGroupByItems", + "ranges": [{ "startOffset": 2167, "endOffset": 2496, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWithLimit", + "ranges": [{ "startOffset": 2502, "endOffset": 2648, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWithOffset", + "ranges": [{ "startOffset": 2654, "endOffset": 2803, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWithFetch", + "ranges": [{ "startOffset": 2809, "endOffset": 2955, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWithHaving", + "ranges": [{ "startOffset": 2961, "endOffset": 3298, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWithSetOperations", + "ranges": [{ "startOffset": 3304, "endOffset": 3665, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWithoutSelections", + "ranges": [{ "startOffset": 3671, "endOffset": 3819, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWithoutLimit", + "ranges": [{ "startOffset": 3825, "endOffset": 3970, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWithoutOffset", + "ranges": [{ "startOffset": 3976, "endOffset": 4123, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWithoutOrderBy", + "ranges": [{ "startOffset": 4259, "endOffset": 4320, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWithoutGroupBy", + "ranges": [{ "startOffset": 4326, "endOffset": 4475, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1159", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/from-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 676, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 242, "endOffset": 299, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 305, "endOffset": 472, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "cloneWithFroms", + "ranges": [{ "startOffset": 478, "endOffset": 670, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1160", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/group-by-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 697, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 248, "endOffset": 308, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 314, "endOffset": 484, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWithItems", + "ranges": [{ "startOffset": 490, "endOffset": 691, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1161", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/having-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 895, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 340, "endOffset": 399, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 405, "endOffset": 546, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWithOperation", + "ranges": [{ "startOffset": 552, "endOffset": 889, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1162", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/query-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3845, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 852, "endOffset": 1184, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWithEndModifier", + "ranges": [{ "startOffset": 1190, "endOffset": 1501, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWithWhere", + "ranges": [ + { "startOffset": 1507, "endOffset": 1812, "count": 2 }, + { "startOffset": 1655, "endOffset": 1731, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "cloneWithJoin", + "ranges": [{ "startOffset": 1818, "endOffset": 2057, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWithReturning", + "ranges": [{ "startOffset": 2063, "endOffset": 2397, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWithoutReturning", + "ranges": [{ "startOffset": 2403, "endOffset": 2552, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWithoutWhere", + "ranges": [{ "startOffset": 2558, "endOffset": 2699, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWithExplain", + "ranges": [{ "startOffset": 2705, "endOffset": 2927, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWithTop", + "ranges": [{ "startOffset": 2933, "endOffset": 3061, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWithOutput", + "ranges": [{ "startOffset": 3067, "endOffset": 3377, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWithOrderByItems", + "ranges": [ + { "startOffset": 3383, "endOffset": 3688, "count": 2 }, + { "startOffset": 3538, "endOffset": 3606, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "cloneWithoutOrderBy", + "ranges": [{ "startOffset": 3694, "endOffset": 3839, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1163", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/insert-query-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 836, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 256, "endOffset": 320, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [ + { "startOffset": 326, "endOffset": 549, "count": 2 }, + { "startOffset": 487, "endOffset": 508, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "createWithoutInto", + "ranges": [{ "startOffset": 555, "endOffset": 678, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWith", + "ranges": [{ "startOffset": 684, "endOffset": 830, "count": 2 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1164", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/update-query-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1772, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 356, "endOffset": 420, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 426, "endOffset": 864, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createWithoutTable", + "ranges": [{ "startOffset": 870, "endOffset": 994, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWithFromItems", + "ranges": [{ "startOffset": 1000, "endOffset": 1319, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWithUpdates", + "ranges": [{ "startOffset": 1325, "endOffset": 1612, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWithLimit", + "ranges": [{ "startOffset": 1618, "endOffset": 1766, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1165", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/list-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 478, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 242, "endOffset": 299, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 305, "endOffset": 472, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1166", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/delete-query-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1780, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 410, "endOffset": 474, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 480, "endOffset": 721, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWithOrderByItems", + "ranges": [{ "startOffset": 859, "endOffset": 936, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWithoutOrderBy", + "ranges": [{ "startOffset": 1072, "endOffset": 1133, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWithLimit", + "ranges": [{ "startOffset": 1139, "endOffset": 1285, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWithoutLimit", + "ranges": [{ "startOffset": 1291, "endOffset": 1444, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWithUsing", + "ranges": [{ "startOffset": 1450, "endOffset": 1774, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1167", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/using-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 691, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 244, "endOffset": 302, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 308, "endOffset": 479, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWithTables", + "ranges": [{ "startOffset": 485, "endOffset": 685, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1168", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/where-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 883, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 338, "endOffset": 396, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 402, "endOffset": 541, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "cloneWithOperation", + "ranges": [{ "startOffset": 547, "endOffset": 877, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1169", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/returning-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 850, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 252, "endOffset": 314, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 320, "endOffset": 507, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWithSelections", + "ranges": [{ "startOffset": 513, "endOffset": 844, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1170", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/explain-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 484, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 248, "endOffset": 308, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 314, "endOffset": 478, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1171", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/merge-query-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1445, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 304, "endOffset": 367, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 373, "endOffset": 565, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWithUsing", + "ranges": [{ "startOffset": 571, "endOffset": 715, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWithWhen", + "ranges": [{ "startOffset": 721, "endOffset": 1012, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWithThen", + "ranges": [{ "startOffset": 1018, "endOffset": 1439, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1172", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/when-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 599, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 242, "endOffset": 299, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 305, "endOffset": 442, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWithResult", + "ranges": [{ "startOffset": 448, "endOffset": 593, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1173", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/output-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 826, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 246, "endOffset": 305, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 311, "endOffset": 495, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWithSelections", + "ranges": [{ "startOffset": 501, "endOffset": 820, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1174", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/query-builder/join-builder.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1806, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 409, "endOffset": 415, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "JoinBuilder", + "ranges": [{ "startOffset": 421, "endOffset": 507, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "on", + "ranges": [{ "startOffset": 512, "endOffset": 764, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "onRef", + "ranges": [{ "startOffset": 975, "endOffset": 1237, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "onTrue", + "ranges": [{ "startOffset": 1281, "endOffset": 1496, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "$call", + "ranges": [{ "startOffset": 1655, "endOffset": 1701, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toOperationNode", + "ranges": [{ "startOffset": 1706, "endOffset": 1768, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1175", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/query-builder/over-builder.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1495, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 475, "endOffset": 481, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "OverBuilder", + "ranges": [{ "startOffset": 487, "endOffset": 573, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "orderBy", + "ranges": [{ "startOffset": 578, "endOffset": 784, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "clearOrderBy", + "ranges": [{ "startOffset": 789, "endOffset": 947, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "partitionBy", + "ranges": [{ "startOffset": 952, "endOffset": 1185, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "$call", + "ranges": [{ "startOffset": 1344, "endOffset": 1390, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toOperationNode", + "ranges": [{ "startOffset": 1395, "endOffset": 1457, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1176", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/parser/partition-by-parser.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 464, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "parsePartitionBy", + "ranges": [{ "startOffset": 278, "endOffset": 463, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1177", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/partition-by-item-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 496, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 264, "endOffset": 332, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 338, "endOffset": 490, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1178", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/query-creator.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 20724, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1419, "endOffset": 1425, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "QueryCreator", + "ranges": [{ "startOffset": 1431, "endOffset": 1517, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "selectFrom", + "ranges": [{ "startOffset": 4280, "endOffset": 4643, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "selectNoFrom", + "ranges": [{ "startOffset": 4648, "endOffset": 5068, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "insertInto", + "ranges": [{ "startOffset": 6246, "endOffset": 6584, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "replaceInto", + "ranges": [{ "startOffset": 7757, "endOffset": 8102, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "deleteFrom", + "ranges": [{ "startOffset": 9396, "endOffset": 9748, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "updateTable", + "ranges": [{ "startOffset": 10403, "endOffset": 10760, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mergeInto", + "ranges": [{ "startOffset": 13421, "endOffset": 13773, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "with", + "ranges": [{ "startOffset": 17336, "endOffset": 17733, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "withRecursive", + "ranges": [{ "startOffset": 18180, "endOffset": 18607, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "withPlugin", + "ranges": [{ "startOffset": 18714, "endOffset": 18877, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "withoutPlugins", + "ranges": [{ "startOffset": 18972, "endOffset": 19131, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "withSchema", + "ranges": [{ "startOffset": 20468, "endOffset": 20684, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1179", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/query-builder/insert-query-builder.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 36813, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1217, "endOffset": 1223, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "InsertQueryBuilder", + "ranges": [{ "startOffset": 1229, "endOffset": 1315, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "values", + "ranges": [{ "startOffset": 6976, "endOffset": 7336, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "columns", + "ranges": [{ "startOffset": 7998, "endOffset": 8320, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "expression", + "ranges": [{ "startOffset": 9370, "endOffset": 9674, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "defaultValues", + "ranges": [{ "startOffset": 10020, "endOffset": 10273, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "modifyEnd", + "ranges": [{ "startOffset": 10876, "endOffset": 11105, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ignore", + "ranges": [{ "startOffset": 12447, "endOffset": 12733, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "orIgnore", + "ranges": [{ "startOffset": 13709, "endOffset": 13997, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "orAbort", + "ranges": [{ "startOffset": 14681, "endOffset": 14967, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "orFail", + "ranges": [{ "startOffset": 15649, "endOffset": 15933, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "orReplace", + "ranges": [{ "startOffset": 16707, "endOffset": 16997, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "orRollback", + "ranges": [{ "startOffset": 17687, "endOffset": 17979, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "top", + "ranges": [{ "startOffset": 19289, "endOffset": 19543, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "onConflict", + "ranges": [{ "startOffset": 24015, "endOffset": 24444, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "onDuplicateKeyUpdate", + "ranges": [{ "startOffset": 25393, "endOffset": 25773, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "returning", + "ranges": [{ "startOffset": 25778, "endOffset": 26029, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "returningAll", + "ranges": [{ "startOffset": 26034, "endOffset": 26270, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "output", + "ranges": [{ "startOffset": 26275, "endOffset": 26510, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "outputAll", + "ranges": [{ "startOffset": 26515, "endOffset": 26755, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "clearReturning", + "ranges": [{ "startOffset": 27249, "endOffset": 27448, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "$call", + "ranges": [{ "startOffset": 28176, "endOffset": 28222, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "$if", + "ranges": [{ "startOffset": 29559, "endOffset": 29733, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "$castTo", + "ranges": [{ "startOffset": 29959, "endOffset": 30028, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "$narrowType", + "ranges": [{ "startOffset": 31975, "endOffset": 32048, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "$assertType", + "ranges": [{ "startOffset": 33922, "endOffset": 33995, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "withPlugin", + "ranges": [{ "startOffset": 34107, "endOffset": 34276, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toOperationNode", + "ranges": [{ "startOffset": 34281, "endOffset": 34402, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "compile", + "ranges": [{ "startOffset": 34407, "endOffset": 34519, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "execute", + "ranges": [ + { "startOffset": 34693, "endOffset": 35225, "count": 2 }, + { "startOffset": 34958, "endOffset": 34986, "count": 0 }, + { "startOffset": 35017, "endOffset": 35042, "count": 0 }, + { "startOffset": 35045, "endOffset": 35088, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "executeTakeFirst", + "ranges": [{ "startOffset": 35354, "endOffset": 35456, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "executeTakeFirstOrThrow", + "ranges": [{ "startOffset": 35772, "endOffset": 36232, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stream", + "ranges": [{ "startOffset": 36237, "endOffset": 36482, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "explain", + "ranges": [{ "startOffset": 36487, "endOffset": 36761, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1180", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/parser/select-parser.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2173, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "parseSelectArg", + "ranges": [ + { "startOffset": 654, "endOffset": 1051, "count": 4 }, + { "startOffset": 745, "endOffset": 1049, "count": 2 }, + { "startOffset": 909, "endOffset": 981, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 940, "endOffset": 973, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseSelectExpression", + "ranges": [ + { "startOffset": 1052, "endOffset": 1599, "count": 2 }, + { "startOffset": 1148, "endOffset": 1279, "count": 0 }, + { "startOffset": 1367, "endOffset": 1460, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "parseSelectAll", + "ranges": [ + { "startOffset": 1600, "endOffset": 1876, "count": 2 }, + { "startOffset": 1726, "endOffset": 1874, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "parseSelectAllArg", + "ranges": [{ "startOffset": 1877, "endOffset": 2172, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1181", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/selection-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1014, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 374, "endOffset": 436, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 442, "endOffset": 595, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "createSelectAll", + "ranges": [{ "startOffset": 601, "endOffset": 788, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "createSelectAllFromTable", + "ranges": [{ "startOffset": 794, "endOffset": 1008, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1182", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/parser/insert-values-parser.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3029, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "parseInsertExpression", + "ranges": [ + { "startOffset": 810, "endOffset": 1172, "count": 2 }, + { "startOffset": 912, "endOffset": 967, "count": 0 }, + { "startOffset": 1053, "endOffset": 1067, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "parseInsertColumnsAndValues", + "ranges": [{ "startOffset": 1173, "endOffset": 1486, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1437, "endOffset": 1474, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "parseColumnNamesAndIndexes", + "ranges": [ + { "startOffset": 1487, "endOffset": 1827, "count": 2 }, + { "startOffset": 1663, "endOffset": 1799, "count": 10 } + ], + "isBlockCoverage": true + }, + { + "functionName": "parseRowValues", + "ranges": [ + { "startOffset": 1828, "endOffset": 3028, "count": 2 }, + { "startOffset": 2109, "endOffset": 2532, "count": 10 }, + { "startOffset": 2214, "endOffset": 2280, "count": 0 }, + { "startOffset": 2428, "endOffset": 2488, "count": 0 }, + { "startOffset": 2656, "endOffset": 2942, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2822, "endOffset": 2933, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1183", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/values-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 489, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 246, "endOffset": 305, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 311, "endOffset": 483, "count": 2 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1184", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/default-insert-value-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 472, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 270, "endOffset": 341, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 347, "endOffset": 466, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1185", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/parser/update-set-parser.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1388, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "parseUpdate", + "ranges": [{ "startOffset": 595, "endOffset": 917, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseUpdateObjectExpression", + "ranges": [{ "startOffset": 918, "endOffset": 1387, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1186", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/column-update-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 500, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 258, "endOffset": 323, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 329, "endOffset": 494, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1187", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/on-duplicate-key-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 484, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 262, "endOffset": 329, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 335, "endOffset": 478, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1188", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/query-builder/insert-result.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1874, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1591, "endOffset": 1673, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "InsertResult", + "ranges": [{ "startOffset": 1679, "endOffset": 1834, "count": 2 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1189", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/query-builder/no-result-error.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 534, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 293, "endOffset": 297, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "NoResultError", + "ranges": [{ "startOffset": 303, "endOffset": 382, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isNoResultErrorConstructor", + "ranges": [{ "startOffset": 424, "endOffset": 533, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1190", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/query-builder/on-conflict-builder.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 9026, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 664, "endOffset": 670, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "OnConflictBuilder", + "ranges": [{ "startOffset": 676, "endOffset": 762, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "column", + "ranges": [{ "startOffset": 992, "endOffset": 1517, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "columns", + "ranges": [{ "startOffset": 1748, "endOffset": 2284, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "constraint", + "ranges": [{ "startOffset": 2524, "endOffset": 2846, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "expression", + "ranges": [{ "startOffset": 3145, "endOffset": 3438, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "where", + "ranges": [{ "startOffset": 3443, "endOffset": 3737, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "whereRef", + "ranges": [{ "startOffset": 3742, "endOffset": 4046, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "clearWhere", + "ranges": [{ "startOffset": 4051, "endOffset": 4267, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "doNothing", + "ranges": [{ "startOffset": 4835, "endOffset": 5096, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "doUpdateSet", + "ranges": [{ "startOffset": 6706, "endOffset": 7029, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "$call", + "ranges": [{ "startOffset": 7188, "endOffset": 7234, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 7323, "endOffset": 7329, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "OnConflictDoNothingBuilder", + "ranges": [{ "startOffset": 7335, "endOffset": 7421, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toOperationNode", + "ranges": [{ "startOffset": 7426, "endOffset": 7494, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 7598, "endOffset": 7604, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "OnConflictUpdateBuilder", + "ranges": [{ "startOffset": 7610, "endOffset": 7696, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "where", + "ranges": [{ "startOffset": 7701, "endOffset": 8002, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "whereRef", + "ranges": [{ "startOffset": 8147, "endOffset": 8458, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "clearWhere", + "ranges": [{ "startOffset": 8463, "endOffset": 8686, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "$call", + "ranges": [{ "startOffset": 8845, "endOffset": 8891, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toOperationNode", + "ranges": [{ "startOffset": 8896, "endOffset": 8964, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1191", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/on-conflict-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2280, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 306, "endOffset": 369, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 375, "endOffset": 486, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWith", + "ranges": [{ "startOffset": 492, "endOffset": 624, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWithIndexWhere", + "ranges": [{ "startOffset": 630, "endOffset": 955, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWithIndexOrWhere", + "ranges": [{ "startOffset": 961, "endOffset": 1287, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWithUpdateWhere", + "ranges": [{ "startOffset": 1293, "endOffset": 1622, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWithUpdateOrWhere", + "ranges": [{ "startOffset": 1628, "endOffset": 1958, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWithoutIndexWhere", + "ranges": [{ "startOffset": 1964, "endOffset": 2115, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWithoutUpdateWhere", + "ranges": [{ "startOffset": 2121, "endOffset": 2274, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1192", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/parser/top-parser.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 834, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "parseTop", + "ranges": [{ "startOffset": 232, "endOffset": 674, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isTopModifiers", + "ranges": [{ "startOffset": 675, "endOffset": 833, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1193", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/top-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 480, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 240, "endOffset": 296, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 302, "endOffset": 474, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1194", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/or-action-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 458, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 250, "endOffset": 311, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 317, "endOffset": 452, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1195", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/query-builder/delete-query-builder.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 16599, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1025, "endOffset": 1031, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "DeleteQueryBuilder", + "ranges": [{ "startOffset": 1037, "endOffset": 1123, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "where", + "ranges": [{ "startOffset": 1128, "endOffset": 1381, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "whereRef", + "ranges": [{ "startOffset": 1386, "endOffset": 1649, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "clearWhere", + "ranges": [{ "startOffset": 1654, "endOffset": 1829, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "top", + "ranges": [{ "startOffset": 2724, "endOffset": 2962, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "using", + "ranges": [{ "startOffset": 2967, "endOffset": 3212, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "innerJoin", + "ranges": [{ "startOffset": 3217, "endOffset": 3289, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "leftJoin", + "ranges": [{ "startOffset": 3294, "endOffset": 3364, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "rightJoin", + "ranges": [{ "startOffset": 3369, "endOffset": 3441, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fullJoin", + "ranges": [{ "startOffset": 3446, "endOffset": 3516, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#join", + "ranges": [{ "startOffset": 3521, "endOffset": 3750, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "returning", + "ranges": [{ "startOffset": 3755, "endOffset": 3990, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "returningAll", + "ranges": [{ "startOffset": 3995, "endOffset": 4225, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "output", + "ranges": [{ "startOffset": 4230, "endOffset": 4449, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "outputAll", + "ranges": [{ "startOffset": 4454, "endOffset": 4678, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "clearReturning", + "ranges": [{ "startOffset": 5076, "endOffset": 5259, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "clearLimit", + "ranges": [{ "startOffset": 5679, "endOffset": 5867, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "orderBy", + "ranges": [{ "startOffset": 5872, "endOffset": 6101, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "clearOrderBy", + "ranges": [{ "startOffset": 6106, "endOffset": 6285, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "limit", + "ranges": [{ "startOffset": 6797, "endOffset": 7068, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "modifyEnd", + "ranges": [{ "startOffset": 7569, "endOffset": 7782, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "$call", + "ranges": [{ "startOffset": 8435, "endOffset": 8481, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "$if", + "ranges": [{ "startOffset": 9738, "endOffset": 9896, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "$castTo", + "ranges": [{ "startOffset": 10122, "endOffset": 10175, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "$narrowType", + "ranges": [{ "startOffset": 11947, "endOffset": 12004, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "$assertType", + "ranges": [{ "startOffset": 13771, "endOffset": 13828, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "withPlugin", + "ranges": [{ "startOffset": 13940, "endOffset": 14093, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toOperationNode", + "ranges": [{ "startOffset": 14098, "endOffset": 14219, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "compile", + "ranges": [{ "startOffset": 14224, "endOffset": 14336, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "execute", + "ranges": [{ "startOffset": 14510, "endOffset": 15002, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "executeTakeFirst", + "ranges": [{ "startOffset": 15131, "endOffset": 15233, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "executeTakeFirstOrThrow", + "ranges": [{ "startOffset": 15549, "endOffset": 16009, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stream", + "ranges": [{ "startOffset": 16014, "endOffset": 16259, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "explain", + "ranges": [{ "startOffset": 16264, "endOffset": 16522, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1196", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/query-builder/delete-result.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 274, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 133, "endOffset": 147, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "DeleteResult", + "ranges": [{ "startOffset": 153, "endOffset": 234, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1197", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/limit-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 444, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 244, "endOffset": 302, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 308, "endOffset": 438, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1198", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/query-builder/update-query-builder.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 17236, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1099, "endOffset": 1105, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "UpdateQueryBuilder", + "ranges": [{ "startOffset": 1111, "endOffset": 1197, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "where", + "ranges": [{ "startOffset": 1202, "endOffset": 1455, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "whereRef", + "ranges": [{ "startOffset": 1460, "endOffset": 1723, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "clearWhere", + "ranges": [{ "startOffset": 1728, "endOffset": 1903, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "top", + "ranges": [{ "startOffset": 2873, "endOffset": 3111, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "from", + "ranges": [{ "startOffset": 3116, "endOffset": 3360, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "innerJoin", + "ranges": [{ "startOffset": 3365, "endOffset": 3437, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "leftJoin", + "ranges": [{ "startOffset": 3442, "endOffset": 3512, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "rightJoin", + "ranges": [{ "startOffset": 3517, "endOffset": 3589, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fullJoin", + "ranges": [{ "startOffset": 3594, "endOffset": 3664, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#join", + "ranges": [{ "startOffset": 3669, "endOffset": 3898, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "orderBy", + "ranges": [{ "startOffset": 3903, "endOffset": 4132, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "clearOrderBy", + "ranges": [{ "startOffset": 4137, "endOffset": 4316, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "limit", + "ranges": [{ "startOffset": 4792, "endOffset": 5063, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 5068, "endOffset": 5305, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "returning", + "ranges": [{ "startOffset": 5310, "endOffset": 5545, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "returningAll", + "ranges": [{ "startOffset": 5550, "endOffset": 5780, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "output", + "ranges": [{ "startOffset": 5785, "endOffset": 6004, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "outputAll", + "ranges": [{ "startOffset": 6009, "endOffset": 6233, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "modifyEnd", + "ranges": [{ "startOffset": 6785, "endOffset": 6998, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "clearReturning", + "ranges": [{ "startOffset": 7428, "endOffset": 7611, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "$call", + "ranges": [{ "startOffset": 8448, "endOffset": 8494, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "$if", + "ranges": [{ "startOffset": 9882, "endOffset": 10040, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "$castTo", + "ranges": [{ "startOffset": 10266, "endOffset": 10319, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "$narrowType", + "ranges": [{ "startOffset": 12362, "endOffset": 12419, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "$assertType", + "ranges": [{ "startOffset": 14362, "endOffset": 14419, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "withPlugin", + "ranges": [{ "startOffset": 14531, "endOffset": 14684, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toOperationNode", + "ranges": [{ "startOffset": 14689, "endOffset": 14810, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "compile", + "ranges": [{ "startOffset": 14815, "endOffset": 14927, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "execute", + "ranges": [{ "startOffset": 15101, "endOffset": 15639, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "executeTakeFirst", + "ranges": [{ "startOffset": 15768, "endOffset": 15870, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "executeTakeFirstOrThrow", + "ranges": [{ "startOffset": 16186, "endOffset": 16646, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stream", + "ranges": [{ "startOffset": 16651, "endOffset": 16896, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "explain", + "ranges": [{ "startOffset": 16901, "endOffset": 17159, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1199", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/query-builder/update-result.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 663, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 223, "endOffset": 474, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "UpdateResult", + "ranges": [{ "startOffset": 480, "endOffset": 623, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1200", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/parser/with-parser.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1767, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "parseCommonTableExpression", + "ranges": [{ "startOffset": 545, "endOffset": 1035, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cteBuilderFactory", + "ranges": [{ "startOffset": 1036, "endOffset": 1313, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseCommonTableExpressionName", + "ranges": [{ "startOffset": 1314, "endOffset": 1766, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1201", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/common-table-expression-name-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 855, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 390, "endOffset": 468, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 474, "endOffset": 849, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1202", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/query-builder/cte-builder.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1160, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 295, "endOffset": 301, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "CTEBuilder", + "ranges": [{ "startOffset": 307, "endOffset": 393, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "materialized", + "ranges": [{ "startOffset": 469, "endOffset": 723, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "notMaterialized", + "ranges": [{ "startOffset": 803, "endOffset": 1061, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toOperationNode", + "ranges": [{ "startOffset": 1066, "endOffset": 1124, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1203", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/common-table-expression-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 680, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 276, "endOffset": 350, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 356, "endOffset": 536, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWith", + "ranges": [{ "startOffset": 542, "endOffset": 674, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1204", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/with-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 761, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 242, "endOffset": 299, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 305, "endOffset": 521, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWithExpression", + "ranges": [{ "startOffset": 527, "endOffset": 755, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1205", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/util/query-id.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 447, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "createQueryId", + "ranges": [{ "startOffset": 174, "endOffset": 232, "count": 6 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 257, "endOffset": 265, "count": 6 }], + "isBlockCoverage": true + }, + { + "functionName": "get queryId", + "ranges": [{ "startOffset": 271, "endOffset": 444, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1206", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/util/random-string.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 917, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "randomString", + "ranges": [{ "startOffset": 691, "endOffset": 838, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "randomChar", + "ranges": [{ "startOffset": 839, "endOffset": 916, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1207", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/plugin/with-schema/with-schema-plugin.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 578, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 219, "endOffset": 231, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "WithSchemaPlugin", + "ranges": [{ "startOffset": 237, "endOffset": 356, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformQuery", + "ranges": [{ "startOffset": 361, "endOffset": 462, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformResult", + "ranges": [{ "startOffset": 467, "endOffset": 530, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1208", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/plugin/with-schema/with-schema-transformer.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 7734, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1799, "endOffset": 1860, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "WithSchemaTransformer", + "ranges": [{ "startOffset": 1866, "endOffset": 1941, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformNodeImpl", + "ranges": [{ "startOffset": 1946, "endOffset": 2643, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformSchemableIdentifier", + "ranges": [{ "startOffset": 2648, "endOffset": 3037, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformReferences", + "ranges": [{ "startOffset": 3042, "endOffset": 3416, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformAggregateFunction", + "ranges": [{ "startOffset": 3421, "endOffset": 3678, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformFunction", + "ranges": [{ "startOffset": 3683, "endOffset": 3919, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformSelectModifier", + "ranges": [{ "startOffset": 3924, "endOffset": 4383, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#transformTableArgsWithoutSchemas", + "ranges": [{ "startOffset": 4388, "endOffset": 4860, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#isRootOperationNode", + "ranges": [{ "startOffset": 4865, "endOffset": 4949, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#collectSchemableIds", + "ranges": [{ "startOffset": 4954, "endOffset": 6227, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#collectCTEs", + "ranges": [{ "startOffset": 6232, "endOffset": 6414, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#collectSchemableIdsFromTableExpr", + "ranges": [{ "startOffset": 6419, "endOffset": 7223, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#collectSchemableId", + "ranges": [{ "startOffset": 7228, "endOffset": 7426, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#collectCTEIds", + "ranges": [{ "startOffset": 7431, "endOffset": 7676, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1209", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/operation-node-transformer.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 40038, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1498, "endOffset": 7463, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "transformNode", + "ranges": [ + { "startOffset": 7469, "endOffset": 7736, "count": 170 }, + { "startOffset": 7519, "endOffset": 7555, "count": 74 }, + { "startOffset": 7555, "endOffset": 7735, "count": 96 } + ], + "isBlockCoverage": true + }, + { + "functionName": "transformNodeImpl", + "ranges": [{ "startOffset": 7741, "endOffset": 7842, "count": 96 }], + "isBlockCoverage": true + }, + { + "functionName": "transformNodeList", + "ranges": [ + { "startOffset": 7847, "endOffset": 8044, "count": 40 }, + { "startOffset": 7901, "endOffset": 7937, "count": 22 }, + { "startOffset": 7937, "endOffset": 8043, "count": 18 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 7992, "endOffset": 8035, "count": 24 }], + "isBlockCoverage": true + }, + { + "functionName": "transformSelectQuery", + "ranges": [{ "startOffset": 8049, "endOffset": 9322, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "transformSelection", + "ranges": [{ "startOffset": 9327, "endOffset": 9544, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "transformColumn", + "ranges": [{ "startOffset": 9549, "endOffset": 9754, "count": 16 }], + "isBlockCoverage": true + }, + { + "functionName": "transformAlias", + "ranges": [{ "startOffset": 9759, "endOffset": 10018, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "transformTable", + "ranges": [{ "startOffset": 10023, "endOffset": 10224, "count": 6 }], + "isBlockCoverage": true + }, + { + "functionName": "transformFrom", + "ranges": [{ "startOffset": 10229, "endOffset": 10432, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "transformReference", + "ranges": [{ "startOffset": 10437, "endOffset": 10708, "count": 6 }], + "isBlockCoverage": true + }, + { + "functionName": "transformAnd", + "ranges": [{ "startOffset": 10713, "endOffset": 10968, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformOr", + "ranges": [{ "startOffset": 10973, "endOffset": 11226, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformValueList", + "ranges": [{ "startOffset": 11231, "endOffset": 11446, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformParens", + "ranges": [{ "startOffset": 11451, "endOffset": 11652, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformJoin", + "ranges": [{ "startOffset": 11657, "endOffset": 11947, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformRaw", + "ranges": [{ "startOffset": 11952, "endOffset": 12244, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "transformWhere", + "ranges": [{ "startOffset": 12249, "endOffset": 12450, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "transformInsertQuery", + "ranges": [{ "startOffset": 12455, "endOffset": 13511, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "transformValues", + "ranges": [{ "startOffset": 13516, "endOffset": 13725, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "transformDeleteQuery", + "ranges": [{ "startOffset": 13730, "endOffset": 14635, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformReturning", + "ranges": [{ "startOffset": 14640, "endOffset": 14863, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformCreateTable", + "ranges": [{ "startOffset": 14868, "endOffset": 15576, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformColumnDefinition", + "ranges": [{ "startOffset": 15581, "endOffset": 16624, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformAddColumn", + "ranges": [{ "startOffset": 16629, "endOffset": 16840, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformDropTable", + "ranges": [{ "startOffset": 16845, "endOffset": 17126, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformOrderBy", + "ranges": [{ "startOffset": 17131, "endOffset": 17340, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "transformOrderByItem", + "ranges": [{ "startOffset": 17345, "endOffset": 17729, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "transformGroupBy", + "ranges": [{ "startOffset": 17734, "endOffset": 17943, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformGroupByItem", + "ranges": [{ "startOffset": 17948, "endOffset": 18165, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformUpdateQuery", + "ranges": [{ "startOffset": 18170, "endOffset": 19143, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformColumnUpdate", + "ranges": [{ "startOffset": 19148, "endOffset": 19425, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformLimit", + "ranges": [{ "startOffset": 19430, "endOffset": 19631, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformOffset", + "ranges": [{ "startOffset": 19636, "endOffset": 19841, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformOnConflict", + "ranges": [{ "startOffset": 19846, "endOffset": 20464, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformOnDuplicateKey", + "ranges": [{ "startOffset": 20469, "endOffset": 20696, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformCreateIndex", + "ranges": [{ "startOffset": 20701, "endOffset": 21289, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformList", + "ranges": [{ "startOffset": 21294, "endOffset": 21497, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformDropIndex", + "ranges": [{ "startOffset": 21502, "endOffset": 21841, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformPrimaryKeyConstraint", + "ranges": [{ "startOffset": 21846, "endOffset": 22239, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformUniqueConstraint", + "ranges": [{ "startOffset": 22244, "endOffset": 22682, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformForeignKeyConstraint", + "ranges": [{ "startOffset": 22687, "endOffset": 23224, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformSetOperation", + "ranges": [{ "startOffset": 23229, "endOffset": 23518, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformReferences", + "ranges": [{ "startOffset": 23523, "endOffset": 23876, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformCheckConstraint", + "ranges": [{ "startOffset": 23881, "endOffset": 24170, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformWith", + "ranges": [{ "startOffset": 24175, "endOffset": 24429, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformCommonTableExpression", + "ranges": [{ "startOffset": 24434, "endOffset": 24780, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformCommonTableExpressionName", + "ranges": [{ "startOffset": 24785, "endOffset": 25094, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformHaving", + "ranges": [{ "startOffset": 25099, "endOffset": 25304, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformCreateSchema", + "ranges": [{ "startOffset": 25309, "endOffset": 25569, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformDropSchema", + "ranges": [{ "startOffset": 25574, "endOffset": 25859, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformAlterTable", + "ranges": [{ "startOffset": 25864, "endOffset": 26667, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformDropColumn", + "ranges": [{ "startOffset": 26672, "endOffset": 26885, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformRenameColumn", + "ranges": [{ "startOffset": 26890, "endOffset": 27173, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformAlterColumn", + "ranges": [{ "startOffset": 27178, "endOffset": 27742, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformModifyColumn", + "ranges": [{ "startOffset": 27747, "endOffset": 27964, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformAddConstraint", + "ranges": [{ "startOffset": 27969, "endOffset": 28196, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformDropConstraint", + "ranges": [{ "startOffset": 28201, "endOffset": 28512, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformRenameConstraint", + "ranges": [{ "startOffset": 28517, "endOffset": 28808, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformCreateView", + "ranges": [{ "startOffset": 28813, "endOffset": 29310, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformRefreshMaterializedView", + "ranges": [{ "startOffset": 29315, "endOffset": 29636, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformDropView", + "ranges": [{ "startOffset": 29641, "endOffset": 29963, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformGenerated", + "ranges": [{ "startOffset": 29968, "endOffset": 30329, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformDefaultValue", + "ranges": [{ "startOffset": 30334, "endOffset": 30563, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformOn", + "ranges": [{ "startOffset": 30568, "endOffset": 30757, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformSelectModifier", + "ranges": [{ "startOffset": 30762, "endOffset": 31088, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformCreateType", + "ranges": [{ "startOffset": 31093, "endOffset": 31360, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformDropType", + "ranges": [{ "startOffset": 31365, "endOffset": 31607, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformExplain", + "ranges": [{ "startOffset": 31612, "endOffset": 31854, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformSchemableIdentifier", + "ranges": [{ "startOffset": 31859, "endOffset": 32160, "count": 6 }], + "isBlockCoverage": true + }, + { + "functionName": "transformAggregateFunction", + "ranges": [{ "startOffset": 32165, "endOffset": 32726, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "transformOver", + "ranges": [{ "startOffset": 32731, "endOffset": 33006, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformPartitionBy", + "ranges": [{ "startOffset": 33011, "endOffset": 33228, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformPartitionByItem", + "ranges": [{ "startOffset": 33233, "endOffset": 33466, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformBinaryOperation", + "ranges": [{ "startOffset": 33471, "endOffset": 33844, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "transformUnaryOperation", + "ranges": [{ "startOffset": 33849, "endOffset": 34138, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformUsing", + "ranges": [{ "startOffset": 34143, "endOffset": 34350, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformFunction", + "ranges": [{ "startOffset": 34355, "endOffset": 34603, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformCase", + "ranges": [{ "startOffset": 34608, "endOffset": 34970, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformWhen", + "ranges": [{ "startOffset": 34975, "endOffset": 35244, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformJSONReference", + "ranges": [{ "startOffset": 35249, "endOffset": 35542, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformJSONPath", + "ranges": [{ "startOffset": 35547, "endOffset": 35834, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformJSONPathLeg", + "ranges": [{ "startOffset": 35839, "endOffset": 36053, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformJSONOperatorChain", + "ranges": [{ "startOffset": 36058, "endOffset": 36355, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformTuple", + "ranges": [{ "startOffset": 36360, "endOffset": 36567, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformMergeQuery", + "ranges": [{ "startOffset": 36572, "endOffset": 37227, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformMatched", + "ranges": [{ "startOffset": 37232, "endOffset": 37442, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformAddIndex", + "ranges": [{ "startOffset": 37447, "endOffset": 37856, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformCast", + "ranges": [{ "startOffset": 37861, "endOffset": 38136, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformFetch", + "ranges": [{ "startOffset": 38141, "endOffset": 38385, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformTop", + "ranges": [{ "startOffset": 38390, "endOffset": 38608, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformOutput", + "ranges": [{ "startOffset": 38613, "endOffset": 38830, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformDataType", + "ranges": [{ "startOffset": 38835, "endOffset": 38955, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformSelectAll", + "ranges": [{ "startOffset": 38960, "endOffset": 39081, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "transformIdentifier", + "ranges": [{ "startOffset": 39086, "endOffset": 39208, "count": 24 }], + "isBlockCoverage": true + }, + { + "functionName": "transformValue", + "ranges": [{ "startOffset": 39213, "endOffset": 39330, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "transformPrimitiveValueList", + "ranges": [{ "startOffset": 39335, "endOffset": 39465, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "transformOperator", + "ranges": [{ "startOffset": 39470, "endOffset": 39590, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "transformDefaultInsertValue", + "ranges": [{ "startOffset": 39595, "endOffset": 39725, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformOrAction", + "ranges": [{ "startOffset": 39730, "endOffset": 39850, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformCollate", + "ranges": [{ "startOffset": 39855, "endOffset": 39974, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1210", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/util/require-all-props.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1654, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "requireAllProps", + "ranges": [{ "startOffset": 1604, "endOffset": 1653, "count": 64 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1211", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/query-builder/merge-query-builder.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 21626, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1251, "endOffset": 1257, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "MergeQueryBuilder", + "ranges": [{ "startOffset": 1263, "endOffset": 1349, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "modifyEnd", + "ranges": [{ "startOffset": 1963, "endOffset": 2191, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "top", + "ranges": [{ "startOffset": 3323, "endOffset": 3576, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "using", + "ranges": [{ "startOffset": 3581, "endOffset": 3838, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "returning", + "ranges": [{ "startOffset": 3843, "endOffset": 4083, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "returningAll", + "ranges": [{ "startOffset": 4088, "endOffset": 4333, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "output", + "ranges": [{ "startOffset": 4338, "endOffset": 4572, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "outputAll", + "ranges": [{ "startOffset": 4577, "endOffset": 4816, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4905, "endOffset": 4911, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "WheneableMergeQueryBuilder", + "ranges": [{ "startOffset": 4917, "endOffset": 5003, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "modifyEnd", + "ranges": [{ "startOffset": 5617, "endOffset": 5854, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "top", + "ranges": [{ "startOffset": 5917, "endOffset": 6179, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "whenMatched", + "ranges": [{ "startOffset": 6965, "endOffset": 7024, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "whenMatchedAnd", + "ranges": [{ "startOffset": 7029, "endOffset": 7100, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "whenMatchedAndRef", + "ranges": [{ "startOffset": 7443, "endOffset": 7538, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#whenMatched", + "ranges": [{ "startOffset": 7543, "endOffset": 7847, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "whenNotMatched", + "ranges": [{ "startOffset": 8759, "endOffset": 8824, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "whenNotMatchedAnd", + "ranges": [{ "startOffset": 8829, "endOffset": 8906, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "whenNotMatchedAndRef", + "ranges": [{ "startOffset": 9356, "endOffset": 9457, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "whenNotMatchedBySource", + "ranges": [{ "startOffset": 9696, "endOffset": 9782, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "whenNotMatchedBySourceAnd", + "ranges": [{ "startOffset": 9787, "endOffset": 9885, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "whenNotMatchedBySourceAndRef", + "ranges": [{ "startOffset": 10193, "endOffset": 10308, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "returning", + "ranges": [{ "startOffset": 10313, "endOffset": 10562, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "returningAll", + "ranges": [{ "startOffset": 10567, "endOffset": 10821, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "output", + "ranges": [{ "startOffset": 10826, "endOffset": 11069, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "outputAll", + "ranges": [{ "startOffset": 11074, "endOffset": 11322, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#whenNotMatched", + "ranges": [{ "startOffset": 11327, "endOffset": 11806, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "$call", + "ranges": [{ "startOffset": 12498, "endOffset": 12544, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "$if", + "ranges": [{ "startOffset": 13932, "endOffset": 14114, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toOperationNode", + "ranges": [{ "startOffset": 14119, "endOffset": 14240, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "compile", + "ranges": [{ "startOffset": 14245, "endOffset": 14357, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "execute", + "ranges": [{ "startOffset": 14531, "endOffset": 15008, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "executeTakeFirst", + "ranges": [{ "startOffset": 15137, "endOffset": 15239, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "executeTakeFirstOrThrow", + "ranges": [{ "startOffset": 15555, "endOffset": 16015, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 16128, "endOffset": 16134, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "MatchedThenableMergeQueryBuilder", + "ranges": [{ "startOffset": 16140, "endOffset": 16226, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "thenDelete", + "ranges": [{ "startOffset": 16885, "endOffset": 17140, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "thenDoNothing", + "ranges": [{ "startOffset": 17850, "endOffset": 18112, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "thenUpdate", + "ranges": [{ "startOffset": 19183, "endOffset": 19709, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "thenUpdateSet", + "ranges": [{ "startOffset": 19714, "endOffset": 19890, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 20018, "endOffset": 20024, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "NotMatchedThenableMergeQueryBuilder", + "ranges": [{ "startOffset": 20030, "endOffset": 20116, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "thenDoNothing", + "ranges": [{ "startOffset": 20744, "endOffset": 21006, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "thenInsertValues", + "ranges": [{ "startOffset": 21011, "endOffset": 21540, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1212", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/parser/merge-parser.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1474, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "parseMergeWhen", + "ranges": [{ "startOffset": 591, "endOffset": 1182, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseMergeThen", + "ranges": [{ "startOffset": 1183, "endOffset": 1473, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1213", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/matched-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 488, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 248, "endOffset": 308, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 314, "endOffset": 482, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1214", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/query-executor/noop-query-executor.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1344, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get adapter", + "ranges": [{ "startOffset": 489, "endOffset": 575, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "compileQuery", + "ranges": [{ "startOffset": 580, "endOffset": 667, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "provideConnection", + "ranges": [{ "startOffset": 672, "endOffset": 757, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "withConnectionProvider", + "ranges": [{ "startOffset": 762, "endOffset": 867, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "withPlugin", + "ranges": [{ "startOffset": 872, "endOffset": 963, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "withPlugins", + "ranges": [{ "startOffset": 968, "endOffset": 1065, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "withPluginAtFront", + "ranges": [{ "startOffset": 1070, "endOffset": 1168, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "withoutPlugins", + "ranges": [{ "startOffset": 1173, "endOffset": 1239, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1215", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/query-executor/query-executor-base.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2566, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 409, "endOffset": 417, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "QueryExecutorBase", + "ranges": [{ "startOffset": 423, "endOffset": 497, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "get plugins", + "ranges": [{ "startOffset": 502, "endOffset": 553, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformQuery", + "ranges": [ + { "startOffset": 558, "endOffset": 1343, "count": 6 }, + { "startOffset": 953, "endOffset": 1306, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "executeQuery", + "ranges": [{ "startOffset": 1348, "endOffset": 1878, "count": 6 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 1428, "endOffset": 1870, "count": 6 }, + { "startOffset": 1578, "endOffset": 1781, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "stream", + "ranges": [{ "startOffset": 1883, "endOffset": 2313, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#transformResult", + "ranges": [{ "startOffset": 2318, "endOffset": 2516, "count": 6 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1216", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/util/provide-controlled-connection.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1171, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "provideControlledConnection", + "ranges": [{ "startOffset": 248, "endOffset": 1170, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1217", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/util/deferred.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 631, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 125, "endOffset": 598, "count": 0 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1218", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/query-builder/merge-result.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 270, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 131, "endOffset": 145, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "MergeResult", + "ranges": [{ "startOffset": 151, "endOffset": 232, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1219", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/offset-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 450, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 246, "endOffset": 305, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 311, "endOffset": 444, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1220", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/parser/group-by-parser.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 698, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "parseGroupBy", + "ranges": [{ "startOffset": 404, "endOffset": 697, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1221", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/group-by-item-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 472, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 256, "endOffset": 320, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 326, "endOffset": 466, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1222", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/parser/set-operation-parser.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 885, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "parseSetOperations", + "ranges": [{ "startOffset": 418, "endOffset": 884, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1223", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/set-operation-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 536, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 258, "endOffset": 323, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 329, "endOffset": 530, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1224", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/expression/expression-wrapper.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 4435, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 737, "endOffset": 742, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "ExpressionWrapper", + "ranges": [{ "startOffset": 748, "endOffset": 800, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get expressionType", + "ranges": [{ "startOffset": 825, "endOffset": 879, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "as", + "ranges": [{ "startOffset": 884, "endOffset": 959, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "or", + "ranges": [{ "startOffset": 964, "endOffset": 1132, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "and", + "ranges": [{ "startOffset": 1137, "endOffset": 1309, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "$castTo", + "ranges": [{ "startOffset": 1539, "endOffset": 1606, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "$notNull", + "ranges": [{ "startOffset": 1950, "endOffset": 2018, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toOperationNode", + "ranges": [{ "startOffset": 2023, "endOffset": 2075, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2162, "endOffset": 2179, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "AliasedExpressionWrapper", + "ranges": [{ "startOffset": 2185, "endOffset": 2273, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get expression", + "ranges": [{ "startOffset": 2298, "endOffset": 2349, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get alias", + "ranges": [{ "startOffset": 2374, "endOffset": 2421, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toOperationNode", + "ranges": [{ "startOffset": 2426, "endOffset": 2712, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2798, "endOffset": 2803, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "OrWrapper", + "ranges": [{ "startOffset": 2809, "endOffset": 2861, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get expressionType", + "ranges": [{ "startOffset": 2886, "endOffset": 2940, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "as", + "ranges": [{ "startOffset": 2945, "endOffset": 3020, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "or", + "ranges": [{ "startOffset": 3025, "endOffset": 3193, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "$castTo", + "ranges": [{ "startOffset": 3415, "endOffset": 3474, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toOperationNode", + "ranges": [{ "startOffset": 3479, "endOffset": 3567, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3624, "endOffset": 3629, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "AndWrapper", + "ranges": [{ "startOffset": 3635, "endOffset": 3687, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get expressionType", + "ranges": [{ "startOffset": 3712, "endOffset": 3766, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "as", + "ranges": [{ "startOffset": 3771, "endOffset": 3846, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "and", + "ranges": [{ "startOffset": 3851, "endOffset": 4023, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "$castTo", + "ranges": [{ "startOffset": 4246, "endOffset": 4306, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toOperationNode", + "ranges": [{ "startOffset": 4311, "endOffset": 4399, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1225", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/parser/fetch-parser.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 718, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "parseFetch", + "ranges": [{ "startOffset": 240, "endOffset": 627, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isFetchModifier", + "ranges": [{ "startOffset": 628, "endOffset": 717, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1226", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/fetch-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 547, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 296, "endOffset": 354, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 360, "endOffset": 541, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1227", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/query-builder/function-module.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2856, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "createFunctionModule", + "ranges": [{ "startOffset": 726, "endOffset": 2855, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "fn", + "ranges": [{ "startOffset": 775, "endOffset": 977, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "agg", + "ranges": [ + { "startOffset": 995, "endOffset": 1292, "count": 2 }, + { "startOffset": 1261, "endOffset": 1272, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "avg", + "ranges": [{ "startOffset": 1346, "endOffset": 1410, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "coalesce", + "ranges": [{ "startOffset": 1420, "endOffset": 1494, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "count", + "ranges": [{ "startOffset": 1504, "endOffset": 1572, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "countAll", + "ranges": [{ "startOffset": 1582, "endOffset": 1861, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "max", + "ranges": [{ "startOffset": 1871, "endOffset": 1935, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "min", + "ranges": [{ "startOffset": 1945, "endOffset": 2009, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "sum", + "ranges": [{ "startOffset": 2019, "endOffset": 2083, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "any", + "ranges": [{ "startOffset": 2093, "endOffset": 2156, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "jsonAgg", + "ranges": [{ "startOffset": 2166, "endOffset": 2550, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toJson", + "ranges": [{ "startOffset": 2560, "endOffset": 2844, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1228", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/aggregate-function-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2239, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 378, "endOffset": 448, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 454, "endOffset": 667, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "cloneWithDistinct", + "ranges": [{ "startOffset": 673, "endOffset": 846, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWithOrderBy", + "ranges": [{ "startOffset": 852, "endOffset": 1313, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWithFilter", + "ranges": [{ "startOffset": 1319, "endOffset": 1687, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWithOrFilter", + "ranges": [{ "startOffset": 1693, "endOffset": 2062, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWithOver", + "ranges": [{ "startOffset": 2068, "endOffset": 2233, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1229", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/function-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 489, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 250, "endOffset": 311, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 317, "endOffset": 483, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1230", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/query-builder/aggregate-function-builder.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 8276, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 787, "endOffset": 793, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "AggregateFunctionBuilder", + "ranges": [{ "startOffset": 799, "endOffset": 885, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "get expressionType", + "ranges": [{ "startOffset": 910, "endOffset": 964, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "as", + "ranges": [{ "startOffset": 1640, "endOffset": 1722, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "distinct", + "ranges": [{ "startOffset": 2231, "endOffset": 2475, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "orderBy", + "ranges": [{ "startOffset": 2480, "endOffset": 2755, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "clearOrderBy", + "ranges": [{ "startOffset": 2760, "endOffset": 2985, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "withinGroupOrderBy", + "ranges": [{ "startOffset": 2990, "endOffset": 3302, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "filterWhere", + "ranges": [{ "startOffset": 3307, "endOffset": 3638, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "filterWhereRef", + "ranges": [{ "startOffset": 4594, "endOffset": 4935, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "over", + "ranges": [{ "startOffset": 6053, "endOffset": 6412, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "$call", + "ranges": [{ "startOffset": 6571, "endOffset": 6617, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "$castTo", + "ranges": [{ "startOffset": 6852, "endOffset": 6927, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "$notNull", + "ranges": [{ "startOffset": 7271, "endOffset": 7347, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toOperationNode", + "ranges": [{ "startOffset": 7352, "endOffset": 7427, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 7653, "endOffset": 7690, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "AliasedAggregateFunctionBuilder", + "ranges": [{ "startOffset": 7696, "endOffset": 7844, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "get expression", + "ranges": [{ "startOffset": 7869, "endOffset": 7940, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get alias", + "ranges": [{ "startOffset": 7965, "endOffset": 8012, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toOperationNode", + "ranges": [{ "startOffset": 8017, "endOffset": 8198, "count": 2 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1231", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/parser/unary-operation-parser.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 835, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "parseExists", + "ranges": [{ "startOffset": 430, "endOffset": 514, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseNotExists", + "ranges": [{ "startOffset": 515, "endOffset": 606, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseUnaryOperation", + "ranges": [{ "startOffset": 607, "endOffset": 834, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1232", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/unary-operation-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 516, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 262, "endOffset": 329, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 335, "endOffset": 510, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1233", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/query-builder/case-builder.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3353, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 632, "endOffset": 638, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "CaseBuilder", + "ranges": [{ "startOffset": 644, "endOffset": 730, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "when", + "ranges": [{ "startOffset": 735, "endOffset": 1019, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1085, "endOffset": 1091, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "CaseThenBuilder", + "ranges": [{ "startOffset": 1097, "endOffset": 1183, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "then", + "ranges": [{ "startOffset": 1188, "endOffset": 1592, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1666, "endOffset": 1672, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "CaseWhenBuilder", + "ranges": [{ "startOffset": 1678, "endOffset": 1764, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "when", + "ranges": [{ "startOffset": 1769, "endOffset": 2053, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "else", + "ranges": [{ "startOffset": 2058, "endOffset": 2504, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "end", + "ranges": [{ "startOffset": 2509, "endOffset": 2661, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "endCase", + "ranges": [{ "startOffset": 2666, "endOffset": 2821, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2894, "endOffset": 2900, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "CaseEndBuilder", + "ranges": [{ "startOffset": 2906, "endOffset": 2992, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "end", + "ranges": [{ "startOffset": 2997, "endOffset": 3149, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "endCase", + "ranges": [{ "startOffset": 3154, "endOffset": 3309, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1234", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/case-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1279, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 292, "endOffset": 349, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 355, "endOffset": 484, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWithWhen", + "ranges": [{ "startOffset": 490, "endOffset": 711, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWithThen", + "ranges": [{ "startOffset": 717, "endOffset": 1127, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWith", + "ranges": [{ "startOffset": 1133, "endOffset": 1273, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1235", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/query-builder/json-path-builder.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 6830, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 898, "endOffset": 903, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "JSONPathBuilder", + "ranges": [{ "startOffset": 909, "endOffset": 961, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "at", + "ranges": [{ "startOffset": 2786, "endOffset": 3241, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "key", + "ranges": [{ "startOffset": 4438, "endOffset": 4516, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#createBuilderWithPathLeg", + "ranges": [{ "startOffset": 4521, "endOffset": 5311, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5418, "endOffset": 5423, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "TraversedJSONPathBuilder", + "ranges": [{ "startOffset": 5429, "endOffset": 5502, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get expressionType", + "ranges": [{ "startOffset": 5527, "endOffset": 5581, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "as", + "ranges": [{ "startOffset": 5586, "endOffset": 5659, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "$castTo", + "ranges": [{ "startOffset": 5886, "endOffset": 5960, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "$notNull", + "ranges": [{ "startOffset": 5965, "endOffset": 6040, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toOperationNode", + "ranges": [{ "startOffset": 6045, "endOffset": 6097, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6196, "endOffset": 6217, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "AliasedJSONPathBuilder", + "ranges": [{ "startOffset": 6223, "endOffset": 6323, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get expression", + "ranges": [{ "startOffset": 6348, "endOffset": 6403, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get alias", + "ranges": [{ "startOffset": 6428, "endOffset": 6475, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toOperationNode", + "ranges": [{ "startOffset": 6480, "endOffset": 6770, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1236", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/json-path-leg-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 492, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 256, "endOffset": 320, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 326, "endOffset": 486, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1237", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/tuple-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 485, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 244, "endOffset": 302, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 308, "endOffset": 479, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1238", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/parser/data-type-parser.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 685, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "parseDataTypeExpression", + "ranges": [{ "startOffset": 302, "endOffset": 684, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1239", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/data-type-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1758, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 1315, "endOffset": 1376, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 1382, "endOffset": 1521, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isColumnDataType", + "ranges": [{ "startOffset": 1527, "endOffset": 1757, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1240", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/cast-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 482, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 242, "endOffset": 299, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 305, "endOffset": 476, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1241", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/dynamic/dynamic-table-builder.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1663, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 615, "endOffset": 621, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "get table", + "ranges": [{ "startOffset": 627, "endOffset": 674, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "DynamicTableBuilder", + "ranges": [{ "startOffset": 679, "endOffset": 734, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "as", + "ranges": [{ "startOffset": 739, "endOffset": 823, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 916, "endOffset": 934, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "get table", + "ranges": [{ "startOffset": 940, "endOffset": 987, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get alias", + "ranges": [{ "startOffset": 992, "endOffset": 1039, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "AliasedDynamicTableBuilder", + "ranges": [{ "startOffset": 1044, "endOffset": 1135, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toOperationNode", + "ranges": [{ "startOffset": 1140, "endOffset": 1319, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isAliasedDynamicTableBuilder", + "ranges": [{ "startOffset": 1387, "endOffset": 1662, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1242", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/schema/alter-table-builder.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 13810, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2792, "endOffset": 2798, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "AlterTableBuilder", + "ranges": [{ "startOffset": 2804, "endOffset": 2890, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "renameTo", + "ranges": [{ "startOffset": 2895, "endOffset": 3217, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setSchema", + "ranges": [{ "startOffset": 3222, "endOffset": 3549, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "alterColumn", + "ranges": [{ "startOffset": 3554, "endOffset": 3907, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "dropColumn", + "ranges": [{ "startOffset": 3912, "endOffset": 4184, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "renameColumn", + "ranges": [{ "startOffset": 4189, "endOffset": 4489, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addColumn", + "ranges": [{ "startOffset": 4494, "endOffset": 5050, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "modifyColumn", + "ranges": [{ "startOffset": 5055, "endOffset": 5620, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addUniqueConstraint", + "ranges": [{ "startOffset": 5699, "endOffset": 6318, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addCheckConstraint", + "ranges": [{ "startOffset": 6396, "endOffset": 7028, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addForeignKeyConstraint", + "ranges": [{ "startOffset": 7359, "endOffset": 8004, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addPrimaryKeyConstraint", + "ranges": [{ "startOffset": 8087, "endOffset": 8712, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "dropConstraint", + "ranges": [{ "startOffset": 8717, "endOffset": 9101, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "renameConstraint", + "ranges": [{ "startOffset": 9106, "endOffset": 9502, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addIndex", + "ranges": [{ "startOffset": 9922, "endOffset": 10260, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "dropIndex", + "ranges": [{ "startOffset": 10625, "endOffset": 10951, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "$call", + "ranges": [{ "startOffset": 11092, "endOffset": 11138, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 11232, "endOffset": 11238, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "AlterTableColumnAlteringBuilder", + "ranges": [{ "startOffset": 11244, "endOffset": 11330, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "alterColumn", + "ranges": [{ "startOffset": 11335, "endOffset": 11688, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "dropColumn", + "ranges": [{ "startOffset": 11693, "endOffset": 11965, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "renameColumn", + "ranges": [{ "startOffset": 11970, "endOffset": 12270, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addColumn", + "ranges": [{ "startOffset": 12275, "endOffset": 12831, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "modifyColumn", + "ranges": [{ "startOffset": 12836, "endOffset": 13401, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toOperationNode", + "ranges": [{ "startOffset": 13406, "endOffset": 13522, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "compile", + "ranges": [{ "startOffset": 13527, "endOffset": 13639, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "execute", + "ranges": [{ "startOffset": 13644, "endOffset": 13732, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1243", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/add-column-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 462, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 252, "endOffset": 314, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 320, "endOffset": 456, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1244", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/column-definition-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1338, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 320, "endOffset": 389, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 395, "endOffset": 614, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWithFrontModifier", + "ranges": [{ "startOffset": 620, "endOffset": 908, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWithEndModifier", + "ranges": [{ "startOffset": 914, "endOffset": 1194, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWith", + "ranges": [{ "startOffset": 1200, "endOffset": 1332, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1245", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/drop-column-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 564, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 308, "endOffset": 371, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 377, "endOffset": 558, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1246", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/rename-column-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 652, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 312, "endOffset": 377, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 383, "endOffset": 646, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1247", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/schema/column-definition-builder.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 18431, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 891, "endOffset": 896, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "ColumnDefinitionBuilder", + "ranges": [{ "startOffset": 902, "endOffset": 954, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "autoIncrement", + "ranges": [{ "startOffset": 1598, "endOffset": 1762, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "identity", + "ranges": [{ "startOffset": 2365, "endOffset": 2519, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "primaryKey", + "ranges": [{ "startOffset": 3047, "endOffset": 3205, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "references", + "ranges": [{ "startOffset": 3892, "endOffset": 4500, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "onDelete", + "ranges": [{ "startOffset": 5282, "endOffset": 5747, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "onUpdate", + "ranges": [{ "startOffset": 6529, "endOffset": 6994, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "unique", + "ranges": [{ "startOffset": 7412, "endOffset": 7562, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "notNull", + "ranges": [{ "startOffset": 7997, "endOffset": 8149, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "unsigned", + "ranges": [{ "startOffset": 8618, "endOffset": 8772, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "defaultTo", + "ranges": [{ "startOffset": 9836, "endOffset": 10128, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "check", + "ranges": [{ "startOffset": 10655, "endOffset": 10913, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "generatedAlwaysAs", + "ranges": [{ "startOffset": 11541, "endOffset": 11816, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "generatedAlwaysAsIdentity", + "ranges": [{ "startOffset": 12443, "endOffset": 12706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "generatedByDefaultAsIdentity", + "ranges": [{ "startOffset": 13366, "endOffset": 13635, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stored", + "ranges": [{ "startOffset": 14334, "endOffset": 14747, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "modifyFront", + "ranges": [{ "startOffset": 15472, "endOffset": 15658, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "nullsNotDistinct", + "ranges": [{ "startOffset": 16326, "endOffset": 16496, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ifNotExists", + "ranges": [{ "startOffset": 16959, "endOffset": 17119, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "modifyEnd", + "ranges": [{ "startOffset": 17925, "endOffset": 18107, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "$call", + "ranges": [{ "startOffset": 18266, "endOffset": 18312, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toOperationNode", + "ranges": [{ "startOffset": 18317, "endOffset": 18369, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1248", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/check-constraint-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 711, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 326, "endOffset": 394, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 400, "endOffset": 705, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1249", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/references-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1021, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 414, "endOffset": 477, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 483, "endOffset": 693, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWithOnDelete", + "ranges": [{ "startOffset": 699, "endOffset": 854, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWithOnUpdate", + "ranges": [{ "startOffset": 860, "endOffset": 1015, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1250", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/parser/default-value-parser.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 516, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "parseDefaultValueExpression", + "ranges": [{ "startOffset": 302, "endOffset": 515, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1251", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/generated-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 795, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 252, "endOffset": 314, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 320, "endOffset": 459, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createWithExpression", + "ranges": [{ "startOffset": 465, "endOffset": 649, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWith", + "ranges": [{ "startOffset": 655, "endOffset": 789, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1252", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/default-value-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 486, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 258, "endOffset": 323, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 329, "endOffset": 480, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1253", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/parser/on-modify-action-parser.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 436, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "parseOnModifyForeignAction", + "ranges": [{ "startOffset": 220, "endOffset": 435, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1254", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/modify-column-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 474, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 258, "endOffset": 323, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 329, "endOffset": 468, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1255", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/schema/foreign-key-constraint-builder.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2060, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 351, "endOffset": 356, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "ForeignKeyConstraintBuilder", + "ranges": [{ "startOffset": 362, "endOffset": 414, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "onDelete", + "ranges": [{ "startOffset": 419, "endOffset": 681, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "onUpdate", + "ranges": [{ "startOffset": 686, "endOffset": 948, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "deferrable", + "ranges": [{ "startOffset": 953, "endOffset": 1124, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "notDeferrable", + "ranges": [{ "startOffset": 1129, "endOffset": 1304, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "initiallyDeferred", + "ranges": [{ "startOffset": 1309, "endOffset": 1515, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "initiallyImmediate", + "ranges": [{ "startOffset": 1520, "endOffset": 1728, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "$call", + "ranges": [{ "startOffset": 1887, "endOffset": 1933, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toOperationNode", + "ranges": [{ "startOffset": 1938, "endOffset": 1990, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1256", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/foreign-key-constraint-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1070, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 398, "endOffset": 471, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 477, "endOffset": 926, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWith", + "ranges": [{ "startOffset": 932, "endOffset": 1064, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1257", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/add-constraint-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 486, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 260, "endOffset": 326, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 332, "endOffset": 480, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1258", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/unique-constraint-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1029, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 382, "endOffset": 451, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 457, "endOffset": 885, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWith", + "ranges": [{ "startOffset": 891, "endOffset": 1023, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1259", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/drop-constraint-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 778, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 324, "endOffset": 391, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 397, "endOffset": 614, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWith", + "ranges": [{ "startOffset": 620, "endOffset": 772, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1260", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/schema/alter-column-builder.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2681, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 417, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "AlterColumnBuilder", + "ranges": [{ "startOffset": 423, "endOffset": 481, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setDataType", + "ranges": [{ "startOffset": 486, "endOffset": 691, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setDefault", + "ranges": [{ "startOffset": 696, "endOffset": 904, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "dropDefault", + "ranges": [{ "startOffset": 909, "endOffset": 1053, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setNotNull", + "ranges": [{ "startOffset": 1058, "endOffset": 1200, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "dropNotNull", + "ranges": [{ "startOffset": 1205, "endOffset": 1349, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "$call", + "ranges": [{ "startOffset": 1508, "endOffset": 1554, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2450, "endOffset": 2466, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "AlteredColumnBuilder", + "ranges": [{ "startOffset": 2472, "endOffset": 2557, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toOperationNode", + "ranges": [{ "startOffset": 2562, "endOffset": 2625, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1261", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/alter-column-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 608, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 310, "endOffset": 374, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 380, "endOffset": 602, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1262", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/schema/alter-table-executor.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 688, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 207, "endOffset": 213, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "AlterTableExecutor", + "ranges": [{ "startOffset": 219, "endOffset": 305, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toOperationNode", + "ranges": [{ "startOffset": 310, "endOffset": 426, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "compile", + "ranges": [{ "startOffset": 431, "endOffset": 543, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "execute", + "ranges": [{ "startOffset": 548, "endOffset": 636, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1263", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/schema/alter-table-add-foreign-key-constraint-builder.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2617, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 417, "endOffset": 423, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "AlterTableAddForeignKeyConstraintBuilder", + "ranges": [{ "startOffset": 429, "endOffset": 515, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "onDelete", + "ranges": [{ "startOffset": 520, "endOffset": 729, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "onUpdate", + "ranges": [{ "startOffset": 734, "endOffset": 943, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "deferrable", + "ranges": [{ "startOffset": 948, "endOffset": 1145, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "notDeferrable", + "ranges": [{ "startOffset": 1150, "endOffset": 1353, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "initiallyDeferred", + "ranges": [{ "startOffset": 1358, "endOffset": 1569, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "initiallyImmediate", + "ranges": [{ "startOffset": 1574, "endOffset": 1787, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "$call", + "ranges": [{ "startOffset": 1946, "endOffset": 1992, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toOperationNode", + "ranges": [{ "startOffset": 1997, "endOffset": 2311, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "compile", + "ranges": [{ "startOffset": 2316, "endOffset": 2428, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "execute", + "ranges": [{ "startOffset": 2433, "endOffset": 2521, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1264", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/schema/alter-table-drop-constraint-builder.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2338, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 401, "endOffset": 407, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "AlterTableDropConstraintBuilder", + "ranges": [{ "startOffset": 413, "endOffset": 499, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ifExists", + "ranges": [{ "startOffset": 504, "endOffset": 904, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cascade", + "ranges": [{ "startOffset": 909, "endOffset": 1313, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "restrict", + "ranges": [{ "startOffset": 1318, "endOffset": 1724, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "$call", + "ranges": [{ "startOffset": 1883, "endOffset": 1929, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toOperationNode", + "ranges": [{ "startOffset": 1934, "endOffset": 2050, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "compile", + "ranges": [{ "startOffset": 2055, "endOffset": 2167, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "execute", + "ranges": [{ "startOffset": 2172, "endOffset": 2260, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1265", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/primary-key-constraint-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1189, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 422, "endOffset": 495, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 501, "endOffset": 885, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWith", + "ranges": [{ "startOffset": 891, "endOffset": 990, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1266", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/add-index-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 889, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 312, "endOffset": 373, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 379, "endOffset": 560, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWith", + "ranges": [{ "startOffset": 566, "endOffset": 698, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWithColumns", + "ranges": [{ "startOffset": 704, "endOffset": 883, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1267", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/schema/alter-table-add-index-builder.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 5384, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 513, "endOffset": 519, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "AlterTableAddIndexBuilder", + "ranges": [{ "startOffset": 525, "endOffset": 611, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "unique", + "ranges": [{ "startOffset": 1040, "endOffset": 1406, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "column", + "ranges": [{ "startOffset": 2024, "endOffset": 2448, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "columns", + "ranges": [{ "startOffset": 3057, "endOffset": 3442, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "expression", + "ranges": [{ "startOffset": 3959, "endOffset": 4362, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "using", + "ranges": [{ "startOffset": 4367, "endOffset": 4782, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "$call", + "ranges": [{ "startOffset": 4941, "endOffset": 4987, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toOperationNode", + "ranges": [{ "startOffset": 4992, "endOffset": 5108, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "compile", + "ranges": [{ "startOffset": 5113, "endOffset": 5225, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "execute", + "ranges": [{ "startOffset": 5230, "endOffset": 5318, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1268", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/schema/unique-constraint-builder.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1709, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 255, "endOffset": 260, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "UniqueConstraintNodeBuilder", + "ranges": [{ "startOffset": 266, "endOffset": 318, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "nullsNotDistinct", + "ranges": [{ "startOffset": 459, "endOffset": 633, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "deferrable", + "ranges": [{ "startOffset": 638, "endOffset": 800, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "notDeferrable", + "ranges": [{ "startOffset": 805, "endOffset": 971, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "initiallyDeferred", + "ranges": [{ "startOffset": 976, "endOffset": 1173, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "initiallyImmediate", + "ranges": [{ "startOffset": 1178, "endOffset": 1377, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "$call", + "ranges": [{ "startOffset": 1536, "endOffset": 1582, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toOperationNode", + "ranges": [{ "startOffset": 1587, "endOffset": 1639, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1269", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/schema/primary-key-constraint-builder.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1440, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 265, "endOffset": 270, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "PrimaryKeyConstraintBuilder", + "ranges": [{ "startOffset": 276, "endOffset": 328, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "deferrable", + "ranges": [{ "startOffset": 333, "endOffset": 504, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "notDeferrable", + "ranges": [{ "startOffset": 509, "endOffset": 684, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "initiallyDeferred", + "ranges": [{ "startOffset": 689, "endOffset": 895, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "initiallyImmediate", + "ranges": [{ "startOffset": 900, "endOffset": 1108, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "$call", + "ranges": [{ "startOffset": 1267, "endOffset": 1313, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toOperationNode", + "ranges": [{ "startOffset": 1318, "endOffset": 1370, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1270", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/schema/check-constraint-builder.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 538, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 153, "endOffset": 158, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "CheckConstraintBuilder", + "ranges": [{ "startOffset": 164, "endOffset": 216, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "$call", + "ranges": [{ "startOffset": 375, "endOffset": 421, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toOperationNode", + "ranges": [{ "startOffset": 426, "endOffset": 478, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1271", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/rename-constraint-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 690, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 328, "endOffset": 397, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 403, "endOffset": 684, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1272", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/schema/create-index-builder.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 6499, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 753, "endOffset": 759, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "CreateIndexBuilder", + "ranges": [{ "startOffset": 765, "endOffset": 851, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ifNotExists", + "ranges": [{ "startOffset": 1008, "endOffset": 1247, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "unique", + "ranges": [{ "startOffset": 1299, "endOffset": 1528, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "nullsNotDistinct", + "ranges": [{ "startOffset": 2055, "endOffset": 2304, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "on", + "ranges": [{ "startOffset": 2367, "endOffset": 2632, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "column", + "ranges": [{ "startOffset": 3274, "endOffset": 3561, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "columns", + "ranges": [{ "startOffset": 4188, "endOffset": 4444, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "expression", + "ranges": [{ "startOffset": 4956, "endOffset": 5222, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "using", + "ranges": [{ "startOffset": 5227, "endOffset": 5505, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "where", + "ranges": [{ "startOffset": 5510, "endOffset": 5911, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "$call", + "ranges": [{ "startOffset": 6070, "endOffset": 6116, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toOperationNode", + "ranges": [{ "startOffset": 6121, "endOffset": 6237, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "compile", + "ranges": [{ "startOffset": 6242, "endOffset": 6354, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "execute", + "ranges": [{ "startOffset": 6359, "endOffset": 6447, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1273", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/plugin/immediate-value/immediate-value-transformer.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 994, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "transformPrimitiveValueList", + "ranges": [{ "startOffset": 666, "endOffset": 825, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformValue", + "ranges": [{ "startOffset": 830, "endOffset": 928, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1274", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/schema/create-schema-builder.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1199, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 293, "endOffset": 299, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "CreateSchemaBuilder", + "ranges": [{ "startOffset": 305, "endOffset": 391, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ifNotExists", + "ranges": [{ "startOffset": 396, "endOffset": 609, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "$call", + "ranges": [{ "startOffset": 768, "endOffset": 814, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toOperationNode", + "ranges": [{ "startOffset": 819, "endOffset": 935, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "compile", + "ranges": [{ "startOffset": 940, "endOffset": 1052, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "execute", + "ranges": [{ "startOffset": 1057, "endOffset": 1145, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1275", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/schema/create-table-builder.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 14744, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1629, "endOffset": 1635, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "CreateTableBuilder", + "ranges": [{ "startOffset": 1641, "endOffset": 1727, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "temporary", + "ranges": [{ "startOffset": 1838, "endOffset": 2073, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "onCommit", + "ranges": [{ "startOffset": 2247, "endOffset": 2546, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ifNotExists", + "ranges": [{ "startOffset": 2703, "endOffset": 2942, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addColumn", + "ranges": [{ "startOffset": 4840, "endOffset": 5344, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addPrimaryKeyConstraint", + "ranges": [{ "startOffset": 5851, "endOffset": 6353, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addUniqueConstraint", + "ranges": [{ "startOffset": 7362, "endOffset": 7858, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addCheckConstraint", + "ranges": [{ "startOffset": 8320, "endOffset": 8829, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addForeignKeyConstraint", + "ranges": [{ "startOffset": 9767, "endOffset": 10420, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "modifyFront", + "ranges": [{ "startOffset": 11269, "endOffset": 11505, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "modifyEnd", + "ranges": [{ "startOffset": 12329, "endOffset": 12561, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "as", + "ranges": [{ "startOffset": 13032, "endOffset": 13323, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "$call", + "ranges": [{ "startOffset": 14315, "endOffset": 14361, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toOperationNode", + "ranges": [{ "startOffset": 14366, "endOffset": 14482, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "compile", + "ranges": [{ "startOffset": 14487, "endOffset": 14599, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "execute", + "ranges": [{ "startOffset": 14604, "endOffset": 14692, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1276", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/parser/on-commit-action-parse.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 406, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "parseOnCommitAction", + "ranges": [{ "startOffset": 210, "endOffset": 405, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1277", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/schema/drop-index-builder.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1866, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 345, "endOffset": 351, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "DropIndexBuilder", + "ranges": [{ "startOffset": 357, "endOffset": 443, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "on", + "ranges": [{ "startOffset": 561, "endOffset": 820, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ifExists", + "ranges": [{ "startOffset": 825, "endOffset": 1052, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cascade", + "ranges": [{ "startOffset": 1057, "endOffset": 1282, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "$call", + "ranges": [{ "startOffset": 1441, "endOffset": 1487, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toOperationNode", + "ranges": [{ "startOffset": 1492, "endOffset": 1608, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "compile", + "ranges": [{ "startOffset": 1613, "endOffset": 1725, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "execute", + "ranges": [{ "startOffset": 1730, "endOffset": 1818, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1278", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/schema/drop-schema-builder.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1437, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 285, "endOffset": 291, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "DropSchemaBuilder", + "ranges": [{ "startOffset": 297, "endOffset": 383, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ifExists", + "ranges": [{ "startOffset": 388, "endOffset": 618, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cascade", + "ranges": [{ "startOffset": 623, "endOffset": 851, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "$call", + "ranges": [{ "startOffset": 1010, "endOffset": 1056, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toOperationNode", + "ranges": [{ "startOffset": 1061, "endOffset": 1177, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "compile", + "ranges": [{ "startOffset": 1182, "endOffset": 1294, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "execute", + "ranges": [{ "startOffset": 1299, "endOffset": 1387, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1279", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/schema/drop-table-builder.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1425, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 281, "endOffset": 287, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "DropTableBuilder", + "ranges": [{ "startOffset": 293, "endOffset": 379, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ifExists", + "ranges": [{ "startOffset": 384, "endOffset": 611, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cascade", + "ranges": [{ "startOffset": 616, "endOffset": 841, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "$call", + "ranges": [{ "startOffset": 1000, "endOffset": 1046, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toOperationNode", + "ranges": [{ "startOffset": 1051, "endOffset": 1167, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "compile", + "ranges": [{ "startOffset": 1172, "endOffset": 1284, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "execute", + "ranges": [{ "startOffset": 1289, "endOffset": 1377, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1280", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/schema/create-view-builder.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3422, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 457, "endOffset": 463, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "CreateViewBuilder", + "ranges": [{ "startOffset": 469, "endOffset": 555, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "temporary", + "ranges": [{ "startOffset": 665, "endOffset": 897, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "materialized", + "ranges": [{ "startOffset": 902, "endOffset": 1140, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ifNotExists", + "ranges": [{ "startOffset": 1256, "endOffset": 1492, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "orReplace", + "ranges": [{ "startOffset": 1497, "endOffset": 1729, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "columns", + "ranges": [{ "startOffset": 1734, "endOffset": 2015, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "as", + "ranges": [{ "startOffset": 2464, "endOffset": 2836, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "$call", + "ranges": [{ "startOffset": 2995, "endOffset": 3041, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toOperationNode", + "ranges": [{ "startOffset": 3046, "endOffset": 3162, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "compile", + "ranges": [{ "startOffset": 3167, "endOffset": 3279, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "execute", + "ranges": [{ "startOffset": 3284, "endOffset": 3372, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1281", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/create-view-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 765, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 336, "endOffset": 399, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 405, "endOffset": 607, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWith", + "ranges": [{ "startOffset": 613, "endOffset": 759, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1282", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/plugin/immediate-value/immediate-value-plugin.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 743, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 422, "endOffset": 501, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "transformQuery", + "ranges": [{ "startOffset": 507, "endOffset": 608, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformResult", + "ranges": [{ "startOffset": 613, "endOffset": 687, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1283", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/schema/drop-view-builder.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1650, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 277, "endOffset": 283, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "DropViewBuilder", + "ranges": [{ "startOffset": 289, "endOffset": 375, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "materialized", + "ranges": [{ "startOffset": 380, "endOffset": 612, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ifExists", + "ranges": [{ "startOffset": 617, "endOffset": 841, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cascade", + "ranges": [{ "startOffset": 846, "endOffset": 1068, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "$call", + "ranges": [{ "startOffset": 1227, "endOffset": 1273, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toOperationNode", + "ranges": [{ "startOffset": 1278, "endOffset": 1394, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "compile", + "ranges": [{ "startOffset": 1399, "endOffset": 1511, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "execute", + "ranges": [{ "startOffset": 1516, "endOffset": 1604, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1284", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/drop-view-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 753, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 332, "endOffset": 393, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 399, "endOffset": 599, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWith", + "ranges": [{ "startOffset": 605, "endOffset": 747, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1285", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/schema/create-type-builder.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1344, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 285, "endOffset": 291, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "CreateTypeBuilder", + "ranges": [{ "startOffset": 297, "endOffset": 383, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toOperationNode", + "ranges": [{ "startOffset": 388, "endOffset": 504, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "asEnum", + "ranges": [{ "startOffset": 682, "endOffset": 879, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "$call", + "ranges": [{ "startOffset": 1038, "endOffset": 1084, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "compile", + "ranges": [{ "startOffset": 1089, "endOffset": 1201, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "execute", + "ranges": [{ "startOffset": 1206, "endOffset": 1294, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1286", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/create-type-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 825, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 368, "endOffset": 431, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 437, "endOffset": 570, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWithEnum", + "ranges": [{ "startOffset": 576, "endOffset": 819, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1287", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/schema/drop-type-builder.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1186, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 277, "endOffset": 283, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "DropTypeBuilder", + "ranges": [{ "startOffset": 289, "endOffset": 375, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ifExists", + "ranges": [{ "startOffset": 380, "endOffset": 604, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "$call", + "ranges": [{ "startOffset": 763, "endOffset": 809, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toOperationNode", + "ranges": [{ "startOffset": 814, "endOffset": 930, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "compile", + "ranges": [{ "startOffset": 935, "endOffset": 1047, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "execute", + "ranges": [{ "startOffset": 1052, "endOffset": 1140, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1288", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/drop-type-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 602, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 250, "endOffset": 311, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 317, "endOffset": 448, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWith", + "ranges": [{ "startOffset": 454, "endOffset": 596, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1289", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/parser/identifier-parser.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 812, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "parseSchemableIdentifier", + "ranges": [{ "startOffset": 236, "endOffset": 765, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "trim", + "ranges": [{ "startOffset": 766, "endOffset": 811, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1290", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/schema/refresh-materialized-view-builder.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2668, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 339, "endOffset": 345, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "RefreshMaterializedViewBuilder", + "ranges": [{ "startOffset": 351, "endOffset": 437, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "concurrently", + "ranges": [{ "startOffset": 691, "endOffset": 1004, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "withData", + "ranges": [{ "startOffset": 1214, "endOffset": 1487, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "withNoData", + "ranges": [{ "startOffset": 1745, "endOffset": 2056, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "$call", + "ranges": [{ "startOffset": 2215, "endOffset": 2261, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toOperationNode", + "ranges": [{ "startOffset": 2266, "endOffset": 2382, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "compile", + "ranges": [{ "startOffset": 2387, "endOffset": 2499, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "execute", + "ranges": [{ "startOffset": 2504, "endOffset": 2592, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1291", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/refresh-materialized-view-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 817, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "is", + "ranges": [{ "startOffset": 362, "endOffset": 438, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 444, "endOffset": 659, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneWith", + "ranges": [{ "startOffset": 665, "endOffset": 811, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1292", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/dynamic/dynamic.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 4809, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "ref", + "ranges": [{ "startOffset": 3464, "endOffset": 3572, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "table", + "ranges": [{ "startOffset": 4673, "endOffset": 4767, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1293", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/driver/default-connection-provider.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 570, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 159, "endOffset": 166, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "DefaultConnectionProvider", + "ranges": [{ "startOffset": 172, "endOffset": 230, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "provideConnection", + "ranges": [{ "startOffset": 235, "endOffset": 504, "count": 6 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1294", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/query-executor/default-query-executor.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1641, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 270, "endOffset": 318, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "DefaultQueryExecutor", + "ranges": [{ "startOffset": 324, "endOffset": 543, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "get adapter", + "ranges": [{ "startOffset": 548, "endOffset": 599, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "compileQuery", + "ranges": [{ "startOffset": 604, "endOffset": 698, "count": 6 }], + "isBlockCoverage": true + }, + { + "functionName": "provideConnection", + "ranges": [{ "startOffset": 703, "endOffset": 807, "count": 6 }], + "isBlockCoverage": true + }, + { + "functionName": "withPlugins", + "ranges": [{ "startOffset": 812, "endOffset": 969, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "withPlugin", + "ranges": [{ "startOffset": 974, "endOffset": 1125, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "withPluginAtFront", + "ranges": [{ "startOffset": 1130, "endOffset": 1288, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "withConnectionProvider", + "ranges": [{ "startOffset": 1293, "endOffset": 1454, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "withoutPlugins", + "ranges": [{ "startOffset": 1459, "endOffset": 1585, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1295", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/driver/runtime-driver.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 5879, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 360, "endOffset": 465, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "RuntimeDriver", + "ranges": [{ "startOffset": 471, "endOffset": 591, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "init", + "ranges": [ + { "startOffset": 596, "endOffset": 1099, "count": 3 }, + { "startOffset": 645, "endOffset": 722, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 848, "endOffset": 908, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 933, "endOffset": 1048, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "acquireConnection", + "ranges": [ + { "startOffset": 1104, "endOffset": 1622, "count": 6 }, + { "startOffset": 1166, "endOffset": 1243, "count": 0 }, + { "startOffset": 1273, "endOffset": 1315, "count": 3 }, + { "startOffset": 1431, "endOffset": 1589, "count": 3 }, + { "startOffset": 1471, "endOffset": 1532, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "releaseConnection", + "ranges": [{ "startOffset": 1627, "endOffset": 1728, "count": 6 }], + "isBlockCoverage": true + }, + { + "functionName": "beginTransaction", + "ranges": [{ "startOffset": 1733, "endOffset": 1847, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "commitTransaction", + "ranges": [{ "startOffset": 1852, "endOffset": 1948, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "rollbackTransaction", + "ranges": [{ "startOffset": 1953, "endOffset": 2053, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "savepoint", + "ranges": [{ "startOffset": 2058, "endOffset": 2331, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "rollbackToSavepoint", + "ranges": [{ "startOffset": 2336, "endOffset": 2649, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "releaseSavepoint", + "ranges": [{ "startOffset": 2654, "endOffset": 2955, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "destroy", + "ranges": [ + { "startOffset": 2960, "endOffset": 3348, "count": 3 }, + { "startOffset": 3010, "endOffset": 3041, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3176, "endOffset": 3294, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#needsLogging", + "ranges": [{ "startOffset": 3353, "endOffset": 3465, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "#addLogging", + "ranges": [{ "startOffset": 3668, "endOffset": 5166, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#logError", + "ranges": [{ "startOffset": 5171, "endOffset": 5435, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#logQuery", + "ranges": [{ "startOffset": 5440, "endOffset": 5718, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#calculateDurationMillis", + "ranges": [{ "startOffset": 5723, "endOffset": 5837, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1296", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/util/performance-now.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 388, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "performanceNow", + "ranges": [{ "startOffset": 174, "endOffset": 387, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1297", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/driver/single-connection-provider.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1011, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "ignoreError", + "ranges": [{ "startOffset": 140, "endOffset": 149, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 188, "endOffset": 220, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "SingleConnectionProvider", + "ranges": [{ "startOffset": 226, "endOffset": 296, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "provideConnection", + "ranges": [{ "startOffset": 301, "endOffset": 769, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#run", + "ranges": [{ "startOffset": 874, "endOffset": 947, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1298", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/driver/driver.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 900, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "validateTransactionSettings", + "ranges": [{ "startOffset": 439, "endOffset": 899, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1299", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/util/log.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1877, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 293, "endOffset": 313, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "Log", + "ranges": [ + { "startOffset": 319, "endOffset": 821, "count": 3 }, + { "startOffset": 396, "endOffset": 575, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "isLevelEnabled", + "ranges": [{ "startOffset": 826, "endOffset": 891, "count": 6 }], + "isBlockCoverage": true + }, + { + "functionName": "query", + "ranges": [{ "startOffset": 896, "endOffset": 1013, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1018, "endOffset": 1135, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "defaultLogger", + "ranges": [{ "startOffset": 1157, "endOffset": 1876, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1300", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/util/compilable.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 306, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "isCompilable", + "ranges": [{ "startOffset": 170, "endOffset": 305, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1301", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/query-builder/where-interface.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 77, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1302", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/query-builder/returning-interface.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 77, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1303", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/query-builder/output-interface.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 77, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1304", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/query-builder/having-interface.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 77, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1305", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/query-builder/order-by-interface.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 77, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1306", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/raw-builder/raw-builder.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2933, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 533, "endOffset": 539, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "RawBuilderImpl", + "ranges": [{ "startOffset": 545, "endOffset": 631, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get expressionType", + "ranges": [{ "startOffset": 636, "endOffset": 690, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get isRawBuilder", + "ranges": [{ "startOffset": 695, "endOffset": 742, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "as", + "ranges": [{ "startOffset": 747, "endOffset": 819, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "$castTo", + "ranges": [{ "startOffset": 824, "endOffset": 896, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "$notNull", + "ranges": [{ "startOffset": 901, "endOffset": 967, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "withPlugin", + "ranges": [{ "startOffset": 972, "endOffset": 1270, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toOperationNode", + "ranges": [{ "startOffset": 1275, "endOffset": 1359, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "compile", + "ranges": [{ "startOffset": 1364, "endOffset": 1464, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "execute", + "ranges": [{ "startOffset": 1469, "endOffset": 1633, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#getExecutor", + "ranges": [{ "startOffset": 1638, "endOffset": 1966, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#toOperationNode", + "ranges": [{ "startOffset": 1971, "endOffset": 2087, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#compile", + "ranges": [{ "startOffset": 2092, "endOffset": 2210, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createRawBuilder", + "ranges": [{ "startOffset": 2213, "endOffset": 2287, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2322, "endOffset": 2345, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "AliasedRawBuilderImpl", + "ranges": [{ "startOffset": 2351, "endOffset": 2457, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get expression", + "ranges": [{ "startOffset": 2462, "endOffset": 2519, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get alias", + "ranges": [{ "startOffset": 2524, "endOffset": 2571, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get rawBuilder", + "ranges": [{ "startOffset": 2576, "endOffset": 2633, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toOperationNode", + "ranges": [{ "startOffset": 2638, "endOffset": 2930, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1307", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/raw-builder/sql.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3592, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "exports.sql.Object.assign.ref", + "ranges": [{ "startOffset": 735, "endOffset": 984, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ref", + "ranges": [{ "startOffset": 992, "endOffset": 1271, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "val", + "ranges": [{ "startOffset": 1277, "endOffset": 1532, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "value", + "ranges": [{ "startOffset": 1538, "endOffset": 1590, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "table", + "ranges": [{ "startOffset": 1596, "endOffset": 1861, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "id", + "ranges": [{ "startOffset": 1867, "endOffset": 2261, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lit", + "ranges": [{ "startOffset": 2267, "endOffset": 2520, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "literal", + "ranges": [{ "startOffset": 2526, "endOffset": 2580, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "raw", + "ranges": [{ "startOffset": 2586, "endOffset": 2790, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "join", + "ranges": [{ "startOffset": 2796, "endOffset": 3370, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseParameter", + "ranges": [{ "startOffset": 3376, "endOffset": 3591, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1308", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/query-executor/query-executor.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 77, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1309", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/query-executor/query-executor-provider.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 77, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1310", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/query-compiler/default-query-compiler.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 41356, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1090, "endOffset": 1121, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "get numParameters", + "ranges": [{ "startOffset": 1127, "endOffset": 1194, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "compileQuery", + "ranges": [{ "startOffset": 1199, "endOffset": 1560, "count": 6 }], + "isBlockCoverage": true + }, + { + "functionName": "getSql", + "ranges": [{ "startOffset": 1565, "endOffset": 1607, "count": 6 }], + "isBlockCoverage": true + }, + { + "functionName": "visitSelectQuery", + "ranges": [ + { "startOffset": 1612, "endOffset": 4229, "count": 4 }, + { "startOffset": 1696, "endOffset": 1759, "count": 0 }, + { "startOffset": 1760, "endOffset": 1834, "count": 0 }, + { "startOffset": 1835, "endOffset": 1909, "count": 0 }, + { "startOffset": 1910, "endOffset": 1982, "count": 0 }, + { "startOffset": 1983, "endOffset": 2059, "count": 0 }, + { "startOffset": 2120, "endOffset": 2203, "count": 0 }, + { "startOffset": 2230, "endOffset": 2271, "count": 0 }, + { "startOffset": 2295, "endOffset": 2375, "count": 0 }, + { "startOffset": 2436, "endOffset": 2530, "count": 0 }, + { "startOffset": 2562, "endOffset": 2570, "count": 0 }, + { "startOffset": 2572, "endOffset": 2669, "count": 0 }, + { "startOffset": 2692, "endOffset": 2771, "count": 0 }, + { "startOffset": 3018, "endOffset": 3106, "count": 0 }, + { "startOffset": 3131, "endOffset": 3212, "count": 2 }, + { "startOffset": 3239, "endOffset": 3322, "count": 0 }, + { "startOffset": 3348, "endOffset": 3430, "count": 0 }, + { "startOffset": 3463, "endOffset": 3559, "count": 0 }, + { "startOffset": 3586, "endOffset": 3669, "count": 2 }, + { "startOffset": 3694, "endOffset": 3775, "count": 0 }, + { "startOffset": 3801, "endOffset": 3883, "count": 0 }, + { "startOffset": 3908, "endOffset": 3989, "count": 0 }, + { "startOffset": 4019, "endOffset": 4027, "count": 0 }, + { "startOffset": 4029, "endOffset": 4155, "count": 0 }, + { "startOffset": 4182, "endOffset": 4223, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "visitFrom", + "ranges": [{ "startOffset": 4234, "endOffset": 4325, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "visitSelection", + "ranges": [{ "startOffset": 4330, "endOffset": 4398, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "visitColumn", + "ranges": [{ "startOffset": 4403, "endOffset": 4465, "count": 16 }], + "isBlockCoverage": true + }, + { + "functionName": "compileDistinctOn", + "ranges": [{ "startOffset": 4470, "endOffset": 4611, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "compileList", + "ranges": [ + { "startOffset": 4616, "endOffset": 4886, "count": 16 }, + { "startOffset": 4744, "endOffset": 4880, "count": 24 }, + { "startOffset": 4815, "endOffset": 4870, "count": 8 } + ], + "isBlockCoverage": true + }, + { + "functionName": "visitWhere", + "ranges": [{ "startOffset": 4891, "endOffset": 4982, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "visitHaving", + "ranges": [{ "startOffset": 4987, "endOffset": 5081, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitInsertQuery", + "ranges": [ + { "startOffset": 5086, "endOffset": 7316, "count": 2 }, + { "startOffset": 5170, "endOffset": 5233, "count": 0 }, + { "startOffset": 5234, "endOffset": 5291, "count": 0 }, + { "startOffset": 5292, "endOffset": 5351, "count": 0 }, + { "startOffset": 5412, "endOffset": 5495, "count": 0 }, + { "startOffset": 5522, "endOffset": 5563, "count": 0 }, + { "startOffset": 5587, "endOffset": 5667, "count": 0 }, + { "startOffset": 5701, "endOffset": 5712, "count": 0 }, + { "startOffset": 5784, "endOffset": 5954, "count": 0 }, + { "startOffset": 5982, "endOffset": 6066, "count": 0 }, + { "startOffset": 6089, "endOffset": 6168, "count": 0 }, + { "startOffset": 6446, "endOffset": 6528, "count": 0 }, + { "startOffset": 6669, "endOffset": 6753, "count": 0 }, + { "startOffset": 6783, "endOffset": 6869, "count": 0 }, + { "startOffset": 6903, "endOffset": 6993, "count": 0 }, + { "startOffset": 7022, "endOffset": 7107, "count": 0 }, + { "startOffset": 7134, "endOffset": 7175, "count": 0 }, + { "startOffset": 7205, "endOffset": 7213, "count": 0 }, + { "startOffset": 7215, "endOffset": 7310, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "visitValues", + "ranges": [{ "startOffset": 7321, "endOffset": 7417, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "visitDeleteQuery", + "ranges": [{ "startOffset": 7422, "endOffset": 9084, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitReturning", + "ranges": [{ "startOffset": 9089, "endOffset": 9195, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitAlias", + "ranges": [{ "startOffset": 9200, "endOffset": 9324, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "visitReference", + "ranges": [ + { "startOffset": 9329, "endOffset": 9500, "count": 6 }, + { "startOffset": 9376, "endOffset": 9457, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "visitSelectAll", + "ranges": [{ "startOffset": 9505, "endOffset": 9556, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "visitIdentifier", + "ranges": [{ "startOffset": 9561, "endOffset": 9746, "count": 24 }], + "isBlockCoverage": true + }, + { + "functionName": "compileUnwrappedIdentifier", + "ranges": [ + { "startOffset": 9751, "endOffset": 10015, "count": 24 }, + { "startOffset": 9843, "endOffset": 9952, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "visitAnd", + "ranges": [{ "startOffset": 10020, "endOffset": 10143, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitOr", + "ranges": [{ "startOffset": 10148, "endOffset": 10269, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitValue", + "ranges": [ + { "startOffset": 10274, "endOffset": 10456, "count": 2 }, + { "startOffset": 10321, "endOffset": 10383, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "visitValueList", + "ranges": [{ "startOffset": 10461, "endOffset": 10580, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitTuple", + "ranges": [{ "startOffset": 10585, "endOffset": 10700, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitPrimitiveValueList", + "ranges": [ + { "startOffset": 10705, "endOffset": 11020, "count": 2 }, + { "startOffset": 10844, "endOffset": 10988, "count": 10 }, + { "startOffset": 10928, "endOffset": 10978, "count": 8 } + ], + "isBlockCoverage": true + }, + { + "functionName": "visitParens", + "ranges": [{ "startOffset": 11025, "endOffset": 11137, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitJoin", + "ranges": [{ "startOffset": 11142, "endOffset": 11378, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitOn", + "ranges": [{ "startOffset": 11383, "endOffset": 11465, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitRaw", + "ranges": [ + { "startOffset": 11470, "endOffset": 11753, "count": 2 }, + { "startOffset": 11679, "endOffset": 11737, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "visitOperator", + "ranges": [{ "startOffset": 11758, "endOffset": 11821, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "visitTable", + "ranges": [{ "startOffset": 11826, "endOffset": 11886, "count": 6 }], + "isBlockCoverage": true + }, + { + "functionName": "visitSchemableIdentifier", + "ranges": [ + { "startOffset": 11891, "endOffset": 12078, "count": 6 }, + { "startOffset": 11949, "endOffset": 12031, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "visitCreateTable", + "ranges": [{ "startOffset": 12083, "endOffset": 13072, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitColumnDefinition", + "ranges": [{ "startOffset": 13077, "endOffset": 14677, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getAutoIncrement", + "ranges": [{ "startOffset": 14682, "endOffset": 14741, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitReferences", + "ranges": [{ "startOffset": 14746, "endOffset": 15178, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitDropTable", + "ranges": [{ "startOffset": 15183, "endOffset": 15436, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitDataType", + "ranges": [{ "startOffset": 15441, "endOffset": 15504, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitOrderBy", + "ranges": [{ "startOffset": 15509, "endOffset": 15607, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "visitOrderByItem", + "ranges": [ + { "startOffset": 15612, "endOffset": 16017, "count": 2 }, + { "startOffset": 15703, "endOffset": 15788, "count": 0 }, + { "startOffset": 15927, "endOffset": 16011, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "visitGroupBy", + "ranges": [{ "startOffset": 16022, "endOffset": 16120, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitGroupByItem", + "ranges": [{ "startOffset": 16125, "endOffset": 16193, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitUpdateQuery", + "ranges": [{ "startOffset": 16198, "endOffset": 18392, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitColumnUpdate", + "ranges": [{ "startOffset": 18397, "endOffset": 18529, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitLimit", + "ranges": [{ "startOffset": 18534, "endOffset": 18625, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitOffset", + "ranges": [{ "startOffset": 18630, "endOffset": 18724, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitOnConflict", + "ranges": [{ "startOffset": 18729, "endOffset": 19704, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitOnDuplicateKey", + "ranges": [{ "startOffset": 19709, "endOffset": 19831, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitCreateIndex", + "ranges": [{ "startOffset": 19836, "endOffset": 20687, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitDropIndex", + "ranges": [{ "startOffset": 20692, "endOffset": 21053, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitCreateSchema", + "ranges": [{ "startOffset": 21058, "endOffset": 21250, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitDropSchema", + "ranges": [{ "startOffset": 21255, "endOffset": 21511, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitPrimaryKeyConstraint", + "ranges": [{ "startOffset": 21516, "endOffset": 21839, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "buildDeferrable", + "ranges": [{ "startOffset": 21844, "endOffset": 22358, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitUniqueConstraint", + "ranges": [{ "startOffset": 22363, "endOffset": 22797, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitCheckConstraint", + "ranges": [{ "startOffset": 22802, "endOffset": 23079, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitForeignKeyConstraint", + "ranges": [{ "startOffset": 23084, "endOffset": 23687, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitList", + "ranges": [{ "startOffset": 23692, "endOffset": 23753, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitWith", + "ranges": [{ "startOffset": 23758, "endOffset": 23934, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitCommonTableExpression", + "ranges": [{ "startOffset": 23939, "endOffset": 24292, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitCommonTableExpressionName", + "ranges": [{ "startOffset": 24297, "endOffset": 24519, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitAlterTable", + "ranges": [{ "startOffset": 24524, "endOffset": 25462, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitAddColumn", + "ranges": [{ "startOffset": 25467, "endOffset": 25568, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitRenameColumn", + "ranges": [{ "startOffset": 25573, "endOffset": 25748, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitDropColumn", + "ranges": [{ "startOffset": 25753, "endOffset": 25856, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitAlterColumn", + "ranges": [{ "startOffset": 25861, "endOffset": 26708, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitModifyColumn", + "ranges": [{ "startOffset": 26713, "endOffset": 26820, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitAddConstraint", + "ranges": [{ "startOffset": 26825, "endOffset": 26927, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitDropConstraint", + "ranges": [{ "startOffset": 26932, "endOffset": 27316, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitRenameConstraint", + "ranges": [{ "startOffset": 27321, "endOffset": 27504, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitSetOperation", + "ranges": [{ "startOffset": 27509, "endOffset": 27710, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitCreateView", + "ranges": [{ "startOffset": 27715, "endOffset": 28441, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitRefreshMaterializedView", + "ranges": [{ "startOffset": 28446, "endOffset": 28806, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitDropView", + "ranges": [{ "startOffset": 28811, "endOffset": 29171, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitGenerated", + "ranges": [{ "startOffset": 29176, "endOffset": 29715, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitDefaultValue", + "ranges": [{ "startOffset": 29720, "endOffset": 29827, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitSelectModifier", + "ranges": [{ "startOffset": 29832, "endOffset": 30150, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitCreateType", + "ranges": [{ "startOffset": 30155, "endOffset": 30368, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitDropType", + "ranges": [{ "startOffset": 30373, "endOffset": 30548, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitExplain", + "ranges": [{ "startOffset": 30553, "endOffset": 31222, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitDefaultInsertValue", + "ranges": [{ "startOffset": 31227, "endOffset": 31293, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitAggregateFunction", + "ranges": [ + { "startOffset": 31298, "endOffset": 32059, "count": 2 }, + { "startOffset": 31414, "endOffset": 31463, "count": 0 }, + { "startOffset": 31533, "endOffset": 31616, "count": 0 }, + { "startOffset": 31673, "endOffset": 31804, "count": 0 }, + { "startOffset": 31830, "endOffset": 31949, "count": 0 }, + { "startOffset": 31973, "endOffset": 32053, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "visitOver", + "ranges": [{ "startOffset": 32064, "endOffset": 32391, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitPartitionBy", + "ranges": [{ "startOffset": 32396, "endOffset": 32502, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitPartitionByItem", + "ranges": [{ "startOffset": 32507, "endOffset": 32583, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitBinaryOperation", + "ranges": [{ "startOffset": 32588, "endOffset": 32798, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "visitUnaryOperation", + "ranges": [{ "startOffset": 32803, "endOffset": 33005, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isMinusOperator", + "ranges": [{ "startOffset": 33010, "endOffset": 33121, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitUsing", + "ranges": [{ "startOffset": 33126, "endOffset": 33220, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitFunction", + "ranges": [{ "startOffset": 33225, "endOffset": 33378, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitCase", + "ranges": [{ "startOffset": 33383, "endOffset": 33866, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitWhen", + "ranges": [{ "startOffset": 33871, "endOffset": 34077, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitJSONReference", + "ranges": [{ "startOffset": 34082, "endOffset": 34194, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitJSONPath", + "ranges": [{ "startOffset": 34199, "endOffset": 34459, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitJSONPathLeg", + "ranges": [{ "startOffset": 34464, "endOffset": 34912, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitJSONOperatorChain", + "ranges": [{ "startOffset": 34917, "endOffset": 35235, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitMergeQuery", + "ranges": [{ "startOffset": 35240, "endOffset": 36147, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitMatched", + "ranges": [{ "startOffset": 36152, "endOffset": 36355, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitAddIndex", + "ranges": [{ "startOffset": 36360, "endOffset": 36810, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitCast", + "ranges": [{ "startOffset": 36815, "endOffset": 37003, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitFetch", + "ranges": [{ "startOffset": 37008, "endOffset": 37154, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitOutput", + "ranges": [{ "startOffset": 37159, "endOffset": 37259, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitTop", + "ranges": [{ "startOffset": 37264, "endOffset": 37421, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitOrAction", + "ranges": [{ "startOffset": 37426, "endOffset": 37487, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitCollate", + "ranges": [{ "startOffset": 37492, "endOffset": 37591, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "append", + "ranges": [{ "startOffset": 37596, "endOffset": 37641, "count": 160 }], + "isBlockCoverage": true + }, + { + "functionName": "appendValue", + "ranges": [{ "startOffset": 37646, "endOffset": 37774, "count": 12 }], + "isBlockCoverage": true + }, + { + "functionName": "getLeftIdentifierWrapper", + "ranges": [{ "startOffset": 37779, "endOffset": 37833, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getRightIdentifierWrapper", + "ranges": [{ "startOffset": 37838, "endOffset": 37893, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getCurrentParameterPlaceholder", + "ranges": [{ "startOffset": 37898, "endOffset": 37979, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getLeftExplainOptionsWrapper", + "ranges": [{ "startOffset": 37984, "endOffset": 38042, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getExplainOptionAssignment", + "ranges": [{ "startOffset": 38047, "endOffset": 38103, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getExplainOptionsDelimiter", + "ranges": [{ "startOffset": 38108, "endOffset": 38165, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getRightExplainOptionsWrapper", + "ranges": [{ "startOffset": 38170, "endOffset": 38229, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "sanitizeIdentifier", + "ranges": [{ "startOffset": 38234, "endOffset": 38701, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "sanitizeStringLiteral", + "ranges": [{ "startOffset": 38706, "endOffset": 38794, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "sanitizeJSONPathMemberValue", + "ranges": [{ "startOffset": 38799, "endOffset": 38939, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addParameter", + "ranges": [{ "startOffset": 38944, "endOffset": 39017, "count": 12 }], + "isBlockCoverage": true + }, + { + "functionName": "appendImmediateValue", + "ranges": [{ "startOffset": 39022, "endOffset": 39680, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "appendStringLiteral", + "ranges": [{ "startOffset": 39685, "endOffset": 39827, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "sortSelectModifiers", + "ranges": [{ "startOffset": 39832, "endOffset": 40112, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "compileColumnAlterations", + "ranges": [{ "startOffset": 40117, "endOffset": 40213, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "announcesNewColumnDataType", + "ranges": [{ "startOffset": 40360, "endOffset": 40417, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1311", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/operation-node-visitor.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 6069, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 211, "endOffset": 6012, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "get parentNode", + "ranges": [{ "startOffset": 231, "endOffset": 313, "count": 12 }], + "isBlockCoverage": true + }, + { + "functionName": "visitNode", + "ranges": [{ "startOffset": 5889, "endOffset": 6012, "count": 96 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1312", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/query-compiler/compiled-query.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 649, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "raw", + "ranges": [{ "startOffset": 349, "endOffset": 643, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1313", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/driver/database-connection.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 77, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1314", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/driver/connection-provider.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 77, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1315", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/driver/dummy-driver.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2006, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "init", + "ranges": [{ "startOffset": 1132, "endOffset": 1183, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "acquireConnection", + "ranges": [{ "startOffset": 1188, "endOffset": 1259, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "beginTransaction", + "ranges": [{ "startOffset": 1264, "endOffset": 1327, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "commitTransaction", + "ranges": [{ "startOffset": 1332, "endOffset": 1396, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "rollbackTransaction", + "ranges": [{ "startOffset": 1401, "endOffset": 1467, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "releaseConnection", + "ranges": [{ "startOffset": 1472, "endOffset": 1536, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "destroy", + "ranges": [{ "startOffset": 1541, "endOffset": 1595, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "releaseSavepoint", + "ranges": [{ "startOffset": 1600, "endOffset": 1663, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "rollbackToSavepoint", + "ranges": [{ "startOffset": 1668, "endOffset": 1734, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "savepoint", + "ranges": [{ "startOffset": 1739, "endOffset": 1795, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "executeQuery", + "ranges": [{ "startOffset": 1861, "endOffset": 1939, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "streamQuery", + "ranges": [{ "startOffset": 1944, "endOffset": 2003, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1316", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/dialect/dialect.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 77, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1317", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/dialect/dialect-adapter.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 77, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1318", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/dialect/dialect-adapter-base.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 745, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get supportsCreateIfNotExists", + "ranges": [{ "startOffset": 455, "endOffset": 515, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get supportsTransactionalDdl", + "ranges": [{ "startOffset": 520, "endOffset": 580, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get supportsReturning", + "ranges": [{ "startOffset": 585, "endOffset": 638, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get supportsOutput", + "ranges": [{ "startOffset": 643, "endOffset": 693, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1319", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/dialect/database-introspector.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 77, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1320", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/dialect/sqlite/sqlite-dialect.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1559, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1025, "endOffset": 1032, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "SqliteDialect", + "ranges": [{ "startOffset": 1038, "endOffset": 1134, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "createDriver", + "ranges": [{ "startOffset": 1139, "endOffset": 1227, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "createQueryCompiler", + "ranges": [{ "startOffset": 1232, "endOffset": 1330, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "createAdapter", + "ranges": [{ "startOffset": 1335, "endOffset": 1414, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "createIntrospector", + "ranges": [{ "startOffset": 1419, "endOffset": 1517, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1321", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/dialect/sqlite/sqlite-driver.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 4275, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 494, "endOffset": 573, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "SqliteDriver", + "ranges": [{ "startOffset": 579, "endOffset": 675, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "init", + "ranges": [ + { "startOffset": 680, "endOffset": 1042, "count": 3 }, + { "startOffset": 783, "endOffset": 827, "count": 0 }, + { "startOffset": 956, "endOffset": 1036, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "acquireConnection", + "ranges": [{ "startOffset": 1047, "endOffset": 1293, "count": 6 }], + "isBlockCoverage": true + }, + { + "functionName": "beginTransaction", + "ranges": [{ "startOffset": 1298, "endOffset": 1427, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "commitTransaction", + "ranges": [{ "startOffset": 1432, "endOffset": 1563, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "rollbackTransaction", + "ranges": [{ "startOffset": 1568, "endOffset": 1703, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "savepoint", + "ranges": [{ "startOffset": 1708, "endOffset": 1939, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "rollbackToSavepoint", + "ranges": [{ "startOffset": 1944, "endOffset": 2187, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "releaseSavepoint", + "ranges": [{ "startOffset": 2192, "endOffset": 2428, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "releaseConnection", + "ranges": [{ "startOffset": 2433, "endOffset": 2506, "count": 6 }], + "isBlockCoverage": true + }, + { + "functionName": "destroy", + "ranges": [{ "startOffset": 2511, "endOffset": 2561, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2630, "endOffset": 2633, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "SqliteConnection", + "ranges": [{ "startOffset": 2639, "endOffset": 2685, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "executeQuery", + "ranges": [ + { "startOffset": 2690, "endOffset": 3341, "count": 6 }, + { "startOffset": 2948, "endOffset": 3119, "count": 0 }, + { "startOffset": 3120, "endOffset": 3137, "count": 0 }, + { "startOffset": 3138, "endOffset": 3149, "count": 0 }, + { "startOffset": 3203, "endOffset": 3230, "count": 0 }, + { "startOffset": 3247, "endOffset": 3272, "count": 0 }, + { "startOffset": 3289, "endOffset": 3300, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "streamQuery", + "ranges": [{ "startOffset": 3346, "endOffset": 3867, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3898, "endOffset": 3920, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "lock", + "ranges": [ + { "startOffset": 3926, "endOffset": 4121, "count": 6 }, + { "startOffset": 3971, "endOffset": 4015, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4052, "endOffset": 4113, "count": 6 }], + "isBlockCoverage": true + }, + { + "functionName": "unlock", + "ranges": [{ "startOffset": 4126, "endOffset": 4272, "count": 6 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1322", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/parser/savepoint-parser.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 562, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "parseSavepointCommand", + "ranges": [{ "startOffset": 274, "endOffset": 561, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1323", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/dialect/sqlite/sqlite-query-compiler.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1298, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "visitOrAction", + "ranges": [{ "startOffset": 376, "endOffset": 465, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getCurrentParameterPlaceholder", + "ranges": [{ "startOffset": 470, "endOffset": 530, "count": 12 }], + "isBlockCoverage": true + }, + { + "functionName": "getLeftExplainOptionsWrapper", + "ranges": [{ "startOffset": 535, "endOffset": 592, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getRightExplainOptionsWrapper", + "ranges": [{ "startOffset": 597, "endOffset": 655, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getLeftIdentifierWrapper", + "ranges": [{ "startOffset": 660, "endOffset": 714, "count": 24 }], + "isBlockCoverage": true + }, + { + "functionName": "getRightIdentifierWrapper", + "ranges": [{ "startOffset": 719, "endOffset": 774, "count": 24 }], + "isBlockCoverage": true + }, + { + "functionName": "getAutoIncrement", + "ranges": [{ "startOffset": 779, "endOffset": 837, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "sanitizeIdentifier", + "ranges": [{ "startOffset": 842, "endOffset": 936, "count": 24 }], + "isBlockCoverage": true + }, + { + "functionName": "sanitizeJSONPathMemberValue", + "ranges": [{ "startOffset": 941, "endOffset": 1108, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitDefaultInsertValue", + "ranges": [{ "startOffset": 1113, "endOffset": 1244, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1324", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/dialect/sqlite/sqlite-introspector.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3450, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 261, "endOffset": 264, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "SqliteIntrospector", + "ranges": [{ "startOffset": 270, "endOffset": 316, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getSchemas", + "ranges": [{ "startOffset": 321, "endOffset": 409, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getTables", + "ranges": [{ "startOffset": 414, "endOffset": 538, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getMetadata", + "ranges": [{ "startOffset": 543, "endOffset": 656, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#tablesQuery", + "ranges": [{ "startOffset": 661, "endOffset": 1225, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#getTableMetadata", + "ranges": [{ "startOffset": 1230, "endOffset": 3398, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1325", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/migration/migrator.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 22955, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1701, "endOffset": 1707, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "Migrator", + "ranges": [{ "startOffset": 1713, "endOffset": 1799, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getMigrations", + "ranges": [{ "startOffset": 1948, "endOffset": 2736, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "migrateToLatest", + "ranges": [{ "startOffset": 4433, "endOffset": 4539, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "migrateTo", + "ranges": [{ "startOffset": 6268, "endOffset": 7452, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "migrateUp", + "ranges": [{ "startOffset": 8329, "endOffset": 8422, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "migrateDown", + "ranges": [{ "startOffset": 9303, "endOffset": 9400, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#migrate", + "ranges": [{ "startOffset": 9405, "endOffset": 9954, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get #migrationTableSchema", + "ranges": [{ "startOffset": 9959, "endOffset": 10043, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get #migrationTable", + "ranges": [{ "startOffset": 10048, "endOffset": 10159, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get #migrationLockTable", + "ranges": [{ "startOffset": 10164, "endOffset": 10288, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get #allowUnorderedMigrations", + "ranges": [{ "startOffset": 10293, "endOffset": 10433, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get #schemaPlugin", + "ranges": [{ "startOffset": 10438, "endOffset": 10660, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#ensureMigrationTableSchemaExists", + "ranges": [{ "startOffset": 10665, "endOffset": 11510, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#ensureMigrationTableExists", + "ranges": [{ "startOffset": 11515, "endOffset": 12663, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#ensureMigrationLockTableExists", + "ranges": [{ "startOffset": 12668, "endOffset": 13663, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#ensureLockRowExists", + "ranges": [{ "startOffset": 13668, "endOffset": 14264, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#doesSchemaExist", + "ranges": [{ "startOffset": 14269, "endOffset": 14451, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#doesTableExist", + "ranges": [{ "startOffset": 14456, "endOffset": 14769, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#doesLockRowExists", + "ranges": [{ "startOffset": 14774, "endOffset": 15089, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#runMigrations", + "ranges": [{ "startOffset": 15094, "endOffset": 16643, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#getState", + "ranges": [{ "startOffset": 16648, "endOffset": 17333, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#getPendingMigrations", + "ranges": [{ "startOffset": 17338, "endOffset": 17526, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#resolveMigrations", + "ranges": [{ "startOffset": 17531, "endOffset": 17798, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#getExecutedMigrations", + "ranges": [{ "startOffset": 17803, "endOffset": 18543, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#ensureNoMissingMigrations", + "ranges": [{ "startOffset": 18548, "endOffset": 18942, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#ensureMigrationsInOrder", + "ranges": [{ "startOffset": 18947, "endOffset": 19537, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#migrateDown", + "ranges": [{ "startOffset": 19542, "endOffset": 21126, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#migrateUp", + "ranges": [{ "startOffset": 21131, "endOffset": 22524, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#createIfNotExists", + "ranges": [{ "startOffset": 22529, "endOffset": 22716, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 22798, "endOffset": 22808, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "MigrationResultSetError", + "ranges": [{ "startOffset": 22814, "endOffset": 22892, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get resultSet", + "ranges": [{ "startOffset": 22897, "endOffset": 22952, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1326", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/plugin/noop-plugin.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 287, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "transformQuery", + "ranges": [{ "startOffset": 129, "endOffset": 183, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformResult", + "ranges": [{ "startOffset": 188, "endOffset": 251, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1327", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/dialect/sqlite/sqlite-adapter.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 946, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get supportsTransactionalDdl", + "ranges": [{ "startOffset": 261, "endOffset": 321, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get supportsReturning", + "ranges": [{ "startOffset": 326, "endOffset": 378, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "acquireMigrationLock", + "ranges": [{ "startOffset": 383, "endOffset": 641, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "releaseMigrationLock", + "ranges": [{ "startOffset": 646, "endOffset": 904, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1328", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/dialect/sqlite/sqlite-dialect-config.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 77, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1329", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/dialect/postgres/postgres-query-compiler.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 483, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "sanitizeIdentifier", + "ranges": [{ "startOffset": 331, "endOffset": 425, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1330", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/dialect/postgres/postgres-introspector.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 4279, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 330, "endOffset": 333, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "PostgresIntrospector", + "ranges": [{ "startOffset": 339, "endOffset": 385, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getSchemas", + "ranges": [{ "startOffset": 390, "endOffset": 648, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getTables", + "ranges": [{ "startOffset": 653, "endOffset": 2968, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getMetadata", + "ranges": [{ "startOffset": 2973, "endOffset": 3086, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#parseTableMetadata", + "ranges": [{ "startOffset": 3091, "endOffset": 4223, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1331", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/dialect/postgres/postgres-adapter.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1086, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get supportsTransactionalDdl", + "ranges": [{ "startOffset": 405, "endOffset": 464, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get supportsReturning", + "ranges": [{ "startOffset": 469, "endOffset": 521, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "acquireMigrationLock", + "ranges": [{ "startOffset": 526, "endOffset": 730, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "releaseMigrationLock", + "ranges": [{ "startOffset": 735, "endOffset": 1040, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1332", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/dialect/mysql/mysql-dialect.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1509, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1023, "endOffset": 1030, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "MysqlDialect", + "ranges": [{ "startOffset": 1036, "endOffset": 1094, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createDriver", + "ranges": [{ "startOffset": 1099, "endOffset": 1185, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createQueryCompiler", + "ranges": [{ "startOffset": 1190, "endOffset": 1286, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createAdapter", + "ranges": [{ "startOffset": 1291, "endOffset": 1368, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createIntrospector", + "ranges": [{ "startOffset": 1373, "endOffset": 1469, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1333", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/dialect/mysql/mysql-driver.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 6941, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 523, "endOffset": 575, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "MysqlDriver", + "ranges": [{ "startOffset": 581, "endOffset": 689, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "init", + "ranges": [{ "startOffset": 694, "endOffset": 861, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "acquireConnection", + "ranges": [{ "startOffset": 866, "endOffset": 1723, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#acquireConnection", + "ranges": [{ "startOffset": 1728, "endOffset": 2072, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "beginTransaction", + "ranges": [{ "startOffset": 2077, "endOffset": 2780, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "commitTransaction", + "ranges": [{ "startOffset": 2785, "endOffset": 2916, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "rollbackTransaction", + "ranges": [{ "startOffset": 2921, "endOffset": 3056, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "savepoint", + "ranges": [{ "startOffset": 3061, "endOffset": 3292, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "rollbackToSavepoint", + "ranges": [{ "startOffset": 3297, "endOffset": 3540, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "releaseSavepoint", + "ranges": [{ "startOffset": 3545, "endOffset": 3791, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "releaseConnection", + "ranges": [{ "startOffset": 3796, "endOffset": 3885, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "destroy", + "ranges": [{ "startOffset": 3890, "endOffset": 4179, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isOkPacket", + "ranges": [{ "startOffset": 4217, "endOffset": 4340, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4369, "endOffset": 4383, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "MysqlConnection", + "ranges": [{ "startOffset": 4389, "endOffset": 4468, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "executeQuery", + "ranges": [{ "startOffset": 4473, "endOffset": 5693, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#executeQuery", + "ranges": [{ "startOffset": 5698, "endOffset": 6070, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "streamQuery", + "ranges": [{ "startOffset": 6075, "endOffset": 6860, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6865, "endOffset": 6938, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1334", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/util/stack-trace-utils.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 626, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "extendStackTrace", + "ranges": [{ "startOffset": 178, "endOffset": 498, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isStackHolder", + "ranges": [{ "startOffset": 499, "endOffset": 625, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1335", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/dialect/mysql/mysql-query-compiler.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2666, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "getCurrentParameterPlaceholder", + "ranges": [{ "startOffset": 413, "endOffset": 473, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getLeftExplainOptionsWrapper", + "ranges": [{ "startOffset": 478, "endOffset": 535, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getExplainOptionAssignment", + "ranges": [{ "startOffset": 540, "endOffset": 596, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getExplainOptionsDelimiter", + "ranges": [{ "startOffset": 601, "endOffset": 657, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getRightExplainOptionsWrapper", + "ranges": [{ "startOffset": 662, "endOffset": 720, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getLeftIdentifierWrapper", + "ranges": [{ "startOffset": 725, "endOffset": 796, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getRightIdentifierWrapper", + "ranges": [{ "startOffset": 801, "endOffset": 873, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "sanitizeIdentifier", + "ranges": [{ "startOffset": 878, "endOffset": 972, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "sanitizeStringLiteral", + "ranges": [{ "startOffset": 1291, "endOffset": 1420, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "sanitizeJSONPathMemberValue", + "ranges": [{ "startOffset": 1680, "endOffset": 1853, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitCreateIndex", + "ranges": [{ "startOffset": 1858, "endOffset": 2614, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1336", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/dialect/mysql/mysql-introspector.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3162, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 324, "endOffset": 327, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "MysqlIntrospector", + "ranges": [{ "startOffset": 333, "endOffset": 379, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getSchemas", + "ranges": [{ "startOffset": 384, "endOffset": 654, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getTables", + "ranges": [{ "startOffset": 659, "endOffset": 2020, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getMetadata", + "ranges": [{ "startOffset": 2025, "endOffset": 2138, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#parseTableMetadata", + "ranges": [{ "startOffset": 2143, "endOffset": 3112, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1337", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/dialect/mysql/mysql-adapter.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1380, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get supportsTransactionalDdl", + "ranges": [{ "startOffset": 407, "endOffset": 467, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get supportsReturning", + "ranges": [{ "startOffset": 472, "endOffset": 525, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "acquireMigrationLock", + "ranges": [{ "startOffset": 530, "endOffset": 1194, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "releaseMigrationLock", + "ranges": [{ "startOffset": 1199, "endOffset": 1340, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1338", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/dialect/mysql/mysql-dialect-config.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 77, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1339", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/dialect/postgres/postgres-driver.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 5376, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 529, "endOffset": 581, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "PostgresDriver", + "ranges": [{ "startOffset": 587, "endOffset": 683, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "init", + "ranges": [{ "startOffset": 688, "endOffset": 855, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "acquireConnection", + "ranges": [{ "startOffset": 860, "endOffset": 1751, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "beginTransaction", + "ranges": [{ "startOffset": 1756, "endOffset": 2356, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "commitTransaction", + "ranges": [{ "startOffset": 2361, "endOffset": 2492, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "rollbackTransaction", + "ranges": [{ "startOffset": 2497, "endOffset": 2632, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "savepoint", + "ranges": [{ "startOffset": 2637, "endOffset": 2868, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "rollbackToSavepoint", + "ranges": [{ "startOffset": 2873, "endOffset": 3116, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "releaseSavepoint", + "ranges": [{ "startOffset": 3121, "endOffset": 3357, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "releaseConnection", + "ranges": [{ "startOffset": 3362, "endOffset": 3451, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "destroy", + "ranges": [{ "startOffset": 3456, "endOffset": 3618, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3693, "endOffset": 3714, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "PostgresConnection", + "ranges": [{ "startOffset": 3720, "endOffset": 3820, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "executeQuery", + "ranges": [{ "startOffset": 3825, "endOffset": 4455, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "streamQuery", + "ranges": [{ "startOffset": 4460, "endOffset": 5302, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5307, "endOffset": 5373, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1340", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/dialect/postgres/postgres-dialect-config.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 77, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1341", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/dialect/postgres/postgres-dialect.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1534, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1018, "endOffset": 1025, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "PostgresDialect", + "ranges": [{ "startOffset": 1031, "endOffset": 1089, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createDriver", + "ranges": [{ "startOffset": 1094, "endOffset": 1186, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createQueryCompiler", + "ranges": [{ "startOffset": 1191, "endOffset": 1293, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createAdapter", + "ranges": [{ "startOffset": 1298, "endOffset": 1381, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createIntrospector", + "ranges": [{ "startOffset": 1386, "endOffset": 1488, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1342", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/dialect/mssql/mssql-adapter.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1379, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get supportsCreateIfNotExists", + "ranges": [{ "startOffset": 375, "endOffset": 436, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get supportsTransactionalDdl", + "ranges": [{ "startOffset": 441, "endOffset": 500, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get supportsOutput", + "ranges": [{ "startOffset": 505, "endOffset": 554, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "acquireMigrationLock", + "ranges": [{ "startOffset": 559, "endOffset": 1046, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "releaseMigrationLock", + "ranges": [{ "startOffset": 1051, "endOffset": 1339, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1343", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/dialect/mssql/mssql-dialect-config.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 77, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1344", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/dialect/mssql/mssql-dialect.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1728, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1242, "endOffset": 1249, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "MssqlDialect", + "ranges": [{ "startOffset": 1255, "endOffset": 1313, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createDriver", + "ranges": [{ "startOffset": 1318, "endOffset": 1404, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createQueryCompiler", + "ranges": [{ "startOffset": 1409, "endOffset": 1505, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createAdapter", + "ranges": [{ "startOffset": 1510, "endOffset": 1587, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createIntrospector", + "ranges": [{ "startOffset": 1592, "endOffset": 1688, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1345", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/dialect/mssql/mssql-driver.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 13023, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 596, "endOffset": 614, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "MssqlDriver", + "ranges": [{ "startOffset": 620, "endOffset": 1641, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "init", + "ranges": [{ "startOffset": 1646, "endOffset": 1682, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "acquireConnection", + "ranges": [{ "startOffset": 1687, "endOffset": 1771, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "beginTransaction", + "ranges": [{ "startOffset": 1776, "endOffset": 1881, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "commitTransaction", + "ranges": [{ "startOffset": 1886, "endOffset": 1975, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "rollbackTransaction", + "ranges": [{ "startOffset": 1980, "endOffset": 2073, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "savepoint", + "ranges": [{ "startOffset": 2078, "endOffset": 2179, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "rollbackToSavepoint", + "ranges": [{ "startOffset": 2184, "endOffset": 2305, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "releaseConnection", + "ranges": [{ "startOffset": 2310, "endOffset": 2572, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "destroy", + "ranges": [{ "startOffset": 2577, "endOffset": 2636, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2702, "endOffset": 2748, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "MssqlConnection", + "ranges": [{ "startOffset": 2754, "endOffset": 2904, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "beginTransaction", + "ranges": [{ "startOffset": 2909, "endOffset": 3379, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "commitTransaction", + "ranges": [{ "startOffset": 3384, "endOffset": 3632, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "connect", + "ranges": [{ "startOffset": 3637, "endOffset": 4505, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "executeQuery", + "ranges": [{ "startOffset": 4510, "endOffset": 5180, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "rollbackTransaction", + "ranges": [{ "startOffset": 5185, "endOffset": 5465, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "savepoint", + "ranges": [{ "startOffset": 5470, "endOffset": 5736, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "streamQuery", + "ranges": [{ "startOffset": 5741, "endOffset": 6550, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#getTediousIsolationLevel", + "ranges": [{ "startOffset": 6555, "endOffset": 7223, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#cancelRequest", + "ranges": [{ "startOffset": 7228, "endOffset": 7574, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 7579, "endOffset": 7875, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 7880, "endOffset": 8159, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8164, "endOffset": 8777, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#isConnectionClosed", + "ranges": [{ "startOffset": 8782, "endOffset": 8892, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8920, "endOffset": 9008, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "MssqlRequest", + "ranges": [{ "startOffset": 9014, "endOffset": 10239, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get request", + "ranges": [{ "startOffset": 10244, "endOffset": 10295, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readChunk", + "ranges": [{ "startOffset": 10300, "endOffset": 10784, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#addParametersToRequest", + "ranges": [{ "startOffset": 10789, "endOffset": 11044, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#attachListeners", + "ranges": [{ "startOffset": 11049, "endOffset": 11960, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#getTediousDataType", + "ranges": [{ "startOffset": 11965, "endOffset": 13020, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1346", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/dialect/mssql/mssql-introspector.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 5542, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 270, "endOffset": 273, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "MssqlIntrospector", + "ranges": [{ "startOffset": 279, "endOffset": 325, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getSchemas", + "ranges": [{ "startOffset": 330, "endOffset": 438, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getTables", + "ranges": [{ "startOffset": 443, "endOffset": 5374, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getMetadata", + "ranges": [{ "startOffset": 5379, "endOffset": 5492, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1347", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/dialect/mssql/mssql-query-compiler.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2980, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "getCurrentParameterPlaceholder", + "ranges": [{ "startOffset": 342, "endOffset": 423, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitOffset", + "ranges": [{ "startOffset": 428, "endOffset": 516, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "compileColumnAlterations", + "ranges": [{ "startOffset": 804, "endOffset": 2321, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitAddColumn", + "ranges": [{ "startOffset": 2326, "endOffset": 2391, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitDropColumn", + "ranges": [{ "startOffset": 2396, "endOffset": 2462, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitMergeQuery", + "ranges": [{ "startOffset": 2467, "endOffset": 2559, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visitCollate", + "ranges": [{ "startOffset": 2564, "endOffset": 2865, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "announcesNewColumnDataType", + "ranges": [{ "startOffset": 2870, "endOffset": 2928, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1348", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/query-compiler/query-compiler.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 77, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1349", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/migration/file-migration-provider.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 3210, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 760, "endOffset": 1368, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "ownKeys", + "ranges": [{ "startOffset": 792, "endOffset": 1056, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [{ "startOffset": 1069, "endOffset": 1365, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1854, "endOffset": 1860, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "FileMigrationProvider", + "ranges": [{ "startOffset": 1866, "endOffset": 1921, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getMigrations", + "ranges": [{ "startOffset": 1926, "endOffset": 3028, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isMigration", + "ranges": [{ "startOffset": 3086, "endOffset": 3209, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1350", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/plugin/kysely-plugin.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 77, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1351", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/plugin/camel-case/camel-case-plugin.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3793, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2264, "endOffset": 2326, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "CamelCasePlugin", + "ranges": [{ "startOffset": 2332, "endOffset": 2653, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "transformQuery", + "ranges": [{ "startOffset": 2658, "endOffset": 2768, "count": 6 }], + "isBlockCoverage": true + }, + { + "functionName": "transformResult", + "ranges": [ + { "startOffset": 2773, "endOffset": 3052, "count": 6 }, + { "startOffset": 3018, "endOffset": 3051, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2966, "endOffset": 2991, "count": 11 }], + "isBlockCoverage": true + }, + { + "functionName": "mapRow", + "ranges": [{ "startOffset": 3057, "endOffset": 3501, "count": 11 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 3110, "endOffset": 3489, "count": 47 }, + { "startOffset": 3198, "endOffset": 3303, "count": 0 }, + { "startOffset": 3350, "endOffset": 3409, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3234, "endOffset": 3287, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "snakeCase", + "ranges": [{ "startOffset": 3506, "endOffset": 3565, "count": 24 }], + "isBlockCoverage": true + }, + { + "functionName": "camelCase", + "ranges": [{ "startOffset": 3570, "endOffset": 3629, "count": 47 }], + "isBlockCoverage": true + }, + { + "functionName": "canMap", + "ranges": [ + { "startOffset": 3675, "endOffset": 3792, "count": 47 }, + { "startOffset": 3756, "endOffset": 3789, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1352", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/plugin/camel-case/camel-case-transformer.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 672, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 317, "endOffset": 327, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "SnakeCaseTransformer", + "ranges": [{ "startOffset": 333, "endOffset": 417, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "transformIdentifier", + "ranges": [{ "startOffset": 422, "endOffset": 616, "count": 24 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1353", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/plugin/camel-case/camel-case.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3856, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "createSnakeCaseMapper", + "ranges": [{ "startOffset": 267, "endOffset": 2365, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 423, "endOffset": 2361, "count": 16 }, + { "startOffset": 464, "endOffset": 499, "count": 0 }, + { "startOffset": 662, "endOffset": 2233, "count": 96 }, + { "startOffset": 1146, "endOffset": 1178, "count": 0 }, + { "startOffset": 1179, "endOffset": 1216, "count": 0 }, + { "startOffset": 1217, "endOffset": 1254, "count": 0 }, + { "startOffset": 1256, "endOffset": 1332, "count": 0 }, + { "startOffset": 1517, "endOffset": 1543, "count": 7 }, + { "startOffset": 1545, "endOffset": 2161, "count": 7 }, + { "startOffset": 1623, "endOffset": 1657, "count": 0 }, + { "startOffset": 2068, "endOffset": 2147, "count": 0 }, + { "startOffset": 2161, "endOffset": 2223, "count": 89 }, + { "startOffset": 2257, "endOffset": 2306, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "createCamelCaseMapper", + "ranges": [{ "startOffset": 2446, "endOffset": 3304, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 2527, "endOffset": 3300, "count": 12 }, + { "startOffset": 2568, "endOffset": 2603, "count": 0 }, + { "startOffset": 2626, "endOffset": 2657, "count": 0 }, + { "startOffset": 2659, "endOffset": 2885, "count": 0 }, + { "startOffset": 2964, "endOffset": 3274, "count": 66 }, + { "startOffset": 3070, "endOffset": 3264, "count": 62 }, + { "startOffset": 3110, "endOffset": 3176, "count": 4 }, + { "startOffset": 3176, "endOffset": 3250, "count": 58 } + ], + "isBlockCoverage": true + }, + { + "functionName": "isAllUpperCaseSnakeCase", + "ranges": [{ "startOffset": 3305, "endOffset": 3543, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isDigit", + "ranges": [{ "startOffset": 3544, "endOffset": 3609, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "memoize", + "ranges": [{ "startOffset": 3610, "endOffset": 3855, "count": 6 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 3675, "endOffset": 3852, "count": 71 }, + { "startOffset": 3744, "endOffset": 3823, "count": 28 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1354", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/plugin/deduplicate-joins/deduplicate-joins-plugin.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 751, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 422, "endOffset": 505, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "transformQuery", + "ranges": [{ "startOffset": 511, "endOffset": 612, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformResult", + "ranges": [{ "startOffset": 617, "endOffset": 691, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1355", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/plugin/deduplicate-joins/deduplicate-joins-transformer.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1624, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "transformSelectQuery", + "ranges": [{ "startOffset": 396, "endOffset": 519, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformUpdateQuery", + "ranges": [{ "startOffset": 524, "endOffset": 647, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformDeleteQuery", + "ranges": [{ "startOffset": 652, "endOffset": 775, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#transformQuery", + "ranges": [{ "startOffset": 780, "endOffset": 1033, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#deduplicateJoins", + "ranges": [{ "startOffset": 1038, "endOffset": 1554, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1356", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/plugin/parse-json-results/parse-json-results-plugin.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3028, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1474, "endOffset": 1498, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "ParseJSONResultsPlugin", + "ranges": [{ "startOffset": 1504, "endOffset": 1622, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformQuery", + "ranges": [{ "startOffset": 1639, "endOffset": 1693, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformResult", + "ranges": [{ "startOffset": 1698, "endOffset": 1859, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseArray", + "ranges": [{ "startOffset": 1919, "endOffset": 2160, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parse", + "ranges": [{ "startOffset": 2161, "endOffset": 2495, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseString", + "ranges": [{ "startOffset": 2496, "endOffset": 2740, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "maybeJson", + "ranges": [{ "startOffset": 2741, "endOffset": 2813, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseObject", + "ranges": [{ "startOffset": 2814, "endOffset": 3027, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1357", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/plugin/handle-empty-in-lists/handle-empty-in-lists-plugin.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 6017, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5588, "endOffset": 5609, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "HandleEmptyInListsPlugin", + "ranges": [{ "startOffset": 5615, "endOffset": 5779, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformQuery", + "ranges": [{ "startOffset": 5784, "endOffset": 5885, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformResult", + "ranges": [{ "startOffset": 5890, "endOffset": 5953, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1358", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/plugin/handle-empty-in-lists/handle-empty-in-lists-transformer.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1354, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 594, "endOffset": 603, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "HandleEmptyInListsTransformer", + "ranges": [{ "startOffset": 609, "endOffset": 690, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformBinaryOperation", + "ranges": [{ "startOffset": 695, "endOffset": 850, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "#isEmptyInListNode", + "ranges": [{ "startOffset": 855, "endOffset": 1280, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1359", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/plugin/handle-empty-in-lists/handle-empty-in-lists.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3204, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "replaceWithNoncontingentExpression", + "ranges": [{ "startOffset": 1100, "endOffset": 1591, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pushValueIntoList", + "ranges": [{ "startOffset": 2379, "endOffset": 3203, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1360", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/constraint-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 77, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1361", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/operation-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 77, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1362", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/operation-node/simple-reference-expression-node.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 77, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1363", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/util/column-type.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 77, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1364", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/util/explainable.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 77, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1365", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/util/streamable.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 77, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1366", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely/dist/cjs/util/infer-result.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 77, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1367", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/kysely-node-sqlite/dist/src/coercion-plugin.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 8107, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 144, "endOffset": 2292, "count": 1 }, + { "startOffset": 2248, "endOffset": 2289, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 348, "endOffset": 414, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 428, "endOffset": 518, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 535, "endOffset": 812, "count": 1 }, + { "startOffset": 590, "endOffset": 616, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 723, "endOffset": 736, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 830, "endOffset": 891, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "createCoercionPlugin", + "ranges": [{ "startOffset": 978, "endOffset": 1002, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fromDb", + "ranges": [{ "startOffset": 1058, "endOffset": 1458, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "snakeToCamel", + "ranges": [{ "startOffset": 1482, "endOffset": 1566, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "buildGlobalMap", + "ranges": [{ "startOffset": 1602, "endOffset": 1778, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createCoercionPlugin", + "ranges": [{ "startOffset": 1818, "endOffset": 2195, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1368", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/config.ts", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1778, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 110, "endOffset": 1119, "count": 1 }, + { "startOffset": 1083, "endOffset": 1116, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 329, "endOffset": 419, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 436, "endOffset": 713, "count": 1 }, + { "startOffset": 491, "endOffset": 517, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 624, "endOffset": 637, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 731, "endOffset": 792, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "createConfig", + "ranges": [{ "startOffset": 853, "endOffset": 869, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1041, "endOffset": 1080, "count": 3 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1369", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/services.ts", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 8609, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 112, "endOffset": 3182, "count": 1 }, + { "startOffset": 3135, "endOffset": 3179, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 329, "endOffset": 395, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 409, "endOffset": 499, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 516, "endOffset": 793, "count": 1 }, + { "startOffset": 571, "endOffset": 597, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 704, "endOffset": 717, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 811, "endOffset": 872, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "createSingletonServices", + "ranges": [{ "startOffset": 948, "endOffset": 975, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 1483, "endOffset": 3132, "count": 3 }, + { "startOffset": 1559, "endOffset": 1602, "count": 0 }, + { "startOffset": 1642, "endOffset": 1693, "count": 0 }, + { "startOffset": 1731, "endOffset": 1770, "count": 0 }, + { "startOffset": 1808, "endOffset": 1866, "count": 0 }, + { "startOffset": 1947, "endOffset": 2096, "count": 0 }, + { "startOffset": 2161, "endOffset": 2376, "count": 0 }, + { "startOffset": 2524, "endOffset": 2539, "count": 0 }, + { "startOffset": 2540, "endOffset": 3018, "count": 0 }, + { "startOffset": 3044, "endOffset": 3048, "count": 0 }, + { "startOffset": 3111, "endOffset": 3127, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2748, "endOffset": 2791, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2819, "endOffset": 2862, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2890, "endOffset": 2933, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2960, "endOffset": 3003, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1370", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@pikku/schema-cfworker/dist/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1363, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 95, "endOffset": 996, "count": 1 }, + { "startOffset": 933, "endOffset": 993, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 304, "endOffset": 581, "count": 3 }, + { "startOffset": 359, "endOffset": 385, "count": 0 }, + { "startOffset": 426, "endOffset": 570, "count": 4 }, + { "startOffset": 455, "endOffset": 469, "count": 3 }, + { "startOffset": 470, "endOffset": 570, "count": 3 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 492, "endOffset": 505, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__reExport", + "ranges": [{ "startOffset": 597, "endOffset": 713, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 731, "endOffset": 792, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1371", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@pikku/schema-cfworker/dist/cfworker-json-schema.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 6364, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 110, "endOffset": 2317, "count": 1 }, + { "startOffset": 2272, "endOffset": 2314, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 314, "endOffset": 380, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 394, "endOffset": 484, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 501, "endOffset": 778, "count": 1 }, + { "startOffset": 556, "endOffset": 582, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 689, "endOffset": 702, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 796, "endOffset": 857, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "CFWorkerSchemaService", + "ranges": [{ "startOffset": 955, "endOffset": 980, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1173, "endOffset": 1217, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1217, "endOffset": 1258, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "CFWorkerSchemaService", + "ranges": [{ "startOffset": 1259, "endOffset": 1298, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "compileSchema", + "ranges": [{ "startOffset": 1298, "endOffset": 1663, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "validateSchema", + "ranges": [{ "startOffset": 1663, "endOffset": 2067, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getSchemaNames", + "ranges": [{ "startOffset": 2067, "endOffset": 2123, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getSchemaKeys", + "ranges": [{ "startOffset": 2123, "endOffset": 2270, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1372", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@pikku/core/dist/errors/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1776, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 91, "endOffset": 1321, "count": 1 }, + { "startOffset": 1242, "endOffset": 1318, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 297, "endOffset": 387, "count": 1 }, + { "startOffset": 332, "endOffset": 386, "count": 3 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 404, "endOffset": 681, "count": 3 }, + { "startOffset": 459, "endOffset": 485, "count": 0 }, + { "startOffset": 526, "endOffset": 670, "count": 85 }, + { "startOffset": 555, "endOffset": 569, "count": 84 }, + { "startOffset": 570, "endOffset": 670, "count": 84 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 592, "endOffset": 605, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__reExport", + "ranges": [{ "startOffset": 697, "endOffset": 813, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 831, "endOffset": 892, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "PikkuError", + "ranges": [{ "startOffset": 951, "endOffset": 986, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addError", + "ranges": [{ "startOffset": 996, "endOffset": 1029, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addErrors", + "ranges": [{ "startOffset": 1040, "endOffset": 1074, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1373", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@pikku/core/dist/errors/errors.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 38487, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 92, "endOffset": 14876, "count": 1 }, + { "startOffset": 14015, "endOffset": 14873, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 296, "endOffset": 362, "count": 40 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 376, "endOffset": 466, "count": 1 }, + { "startOffset": 411, "endOffset": 465, "count": 40 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 483, "endOffset": 760, "count": 1 }, + { "startOffset": 538, "endOffset": 564, "count": 0 }, + { "startOffset": 605, "endOffset": 749, "count": 40 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 671, "endOffset": 684, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 778, "endOffset": 839, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "AIProviderAuthError", + "ranges": [{ "startOffset": 907, "endOffset": 930, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "AIProviderNotConfiguredError", + "ranges": [{ "startOffset": 960, "endOffset": 992, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "BadGatewayError", + "ranges": [{ "startOffset": 1009, "endOffset": 1028, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "BadRequestError", + "ranges": [{ "startOffset": 1045, "endOffset": 1064, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ConflictError", + "ranges": [{ "startOffset": 1079, "endOffset": 1096, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ExpectationFailedError", + "ranges": [{ "startOffset": 1120, "endOffset": 1146, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ForbiddenError", + "ranges": [{ "startOffset": 1162, "endOffset": 1180, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "GatewayTimeoutError", + "ranges": [{ "startOffset": 1201, "endOffset": 1224, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "GoneError", + "ranges": [{ "startOffset": 1235, "endOffset": 1248, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "HTTPVersionNotSupportedError", + "ranges": [{ "startOffset": 1278, "endOffset": 1310, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "InternalServerError", + "ranges": [{ "startOffset": 1331, "endOffset": 1354, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "InvalidMiddlewareWireError", + "ranges": [{ "startOffset": 1382, "endOffset": 1412, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "InvalidOriginError", + "ranges": [{ "startOffset": 1432, "endOffset": 1454, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "InvalidSessionError", + "ranges": [{ "startOffset": 1475, "endOffset": 1498, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "LengthRequiredError", + "ranges": [{ "startOffset": 1519, "endOffset": 1542, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "LocalEnvironmentOnlyError", + "ranges": [{ "startOffset": 1569, "endOffset": 1598, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "LockedError", + "ranges": [{ "startOffset": 1611, "endOffset": 1626, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "MaxComputeTimeReachedError", + "ranges": [{ "startOffset": 1654, "endOffset": 1684, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "MethodNotAllowedError", + "ranges": [{ "startOffset": 1707, "endOffset": 1732, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "MissingCredentialError", + "ranges": [{ "startOffset": 1756, "endOffset": 1782, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "MissingSchemaError", + "ranges": [{ "startOffset": 1802, "endOffset": 1824, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "MissingServiceError", + "ranges": [{ "startOffset": 1845, "endOffset": 1868, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "MissingSessionError", + "ranges": [{ "startOffset": 1889, "endOffset": 1912, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "NotAcceptableError", + "ranges": [{ "startOffset": 1932, "endOffset": 1954, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "NotFoundError", + "ranges": [{ "startOffset": 1969, "endOffset": 1986, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "NotImplementedError", + "ranges": [{ "startOffset": 2007, "endOffset": 2030, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "PayloadTooLargeError", + "ranges": [{ "startOffset": 2052, "endOffset": 2076, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "PaymentRequiredError", + "ranges": [{ "startOffset": 2098, "endOffset": 2122, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "PikkuMissingMetaError", + "ranges": [{ "startOffset": 2145, "endOffset": 2170, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "PreconditionFailedError", + "ranges": [{ "startOffset": 2195, "endOffset": 2222, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ProxyAuthenticationRequiredError", + "ranges": [{ "startOffset": 2256, "endOffset": 2292, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "RangeNotSatisfiableError", + "ranges": [{ "startOffset": 2318, "endOffset": 2346, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ReadonlySessionError", + "ranges": [{ "startOffset": 2368, "endOffset": 2392, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "RequestTimeoutError", + "ranges": [{ "startOffset": 2413, "endOffset": 2436, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ServiceUnavailableError", + "ranges": [{ "startOffset": 2461, "endOffset": 2488, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "TooManyRequestsError", + "ranges": [{ "startOffset": 2510, "endOffset": 2534, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "URITooLongError", + "ranges": [{ "startOffset": 2551, "endOffset": 2570, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "UnauthorizedError", + "ranges": [{ "startOffset": 2589, "endOffset": 2610, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "UnprocessableContentError", + "ranges": [{ "startOffset": 2637, "endOffset": 2666, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "UnsupportedMediaTypeError", + "ranges": [{ "startOffset": 2693, "endOffset": 2722, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2897, "endOffset": 2946, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3160, "endOffset": 3204, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3380, "endOffset": 3422, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3610, "endOffset": 3658, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3864, "endOffset": 3902, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4160, "endOffset": 4200, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4267, "endOffset": 4309, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4376, "endOffset": 4418, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4842, "endOffset": 4885, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5110, "endOffset": 5147, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5360, "endOffset": 5405, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5405, "endOffset": 5412, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "MissingCredentialError", + "ranges": [{ "startOffset": 5413, "endOffset": 5597, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5787, "endOffset": 5830, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6032, "endOffset": 6073, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6294, "endOffset": 6330, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6533, "endOffset": 6577, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6803, "endOffset": 6844, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 7115, "endOffset": 7170, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 7395, "endOffset": 7437, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 7609, "endOffset": 7645, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 7874, "endOffset": 7906, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8133, "endOffset": 8175, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8424, "endOffset": 8470, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8709, "endOffset": 8752, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8963, "endOffset": 9001, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9231, "endOffset": 9279, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9503, "endOffset": 9550, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9794, "endOffset": 9839, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 10069, "endOffset": 10117, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 10432, "endOffset": 10466, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 10727, "endOffset": 10770, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 10997, "endOffset": 11039, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 11258, "endOffset": 11300, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 11513, "endOffset": 11551, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 11799, "endOffset": 11845, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 12052, "endOffset": 12094, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 12356, "endOffset": 12407, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 12643, "endOffset": 12692, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 12936, "endOffset": 12977, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 13202, "endOffset": 13253, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "AIProviderNotConfiguredError", + "ranges": [{ "startOffset": 13253, "endOffset": 13404, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 13686, "endOffset": 13728, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "AIProviderAuthError", + "ranges": [{ "startOffset": 13728, "endOffset": 13851, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1374", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@pikku/core/dist/errors/error-handler.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 5056, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 99, "endOffset": 1953, "count": 1 }, + { "startOffset": 1883, "endOffset": 1950, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 303, "endOffset": 369, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 383, "endOffset": 473, "count": 1 }, + { "startOffset": 418, "endOffset": 472, "count": 4 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 490, "endOffset": 767, "count": 1 }, + { "startOffset": 545, "endOffset": 571, "count": 0 }, + { "startOffset": 612, "endOffset": 756, "count": 4 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 678, "endOffset": 691, "count": 80 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 785, "endOffset": 846, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "PikkuError", + "ranges": [{ "startOffset": 919, "endOffset": 933, "count": 40 }], + "isBlockCoverage": true + }, + { + "functionName": "addError", + "ranges": [{ "startOffset": 943, "endOffset": 955, "count": 40 }], + "isBlockCoverage": true + }, + { + "functionName": "addErrors", + "ranges": [{ "startOffset": 966, "endOffset": 979, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getErrorResponse", + "ranges": [{ "startOffset": 997, "endOffset": 1017, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1154, "endOffset": 1187, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "PikkuError", + "ranges": [{ "startOffset": 1187, "endOffset": 1292, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1315, "endOffset": 1442, "count": 40 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1478, "endOffset": 1540, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1584, "endOffset": 1861, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1375", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@pikku/core/dist/pikku-state.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 13976, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 90, "endOffset": 4117, "count": 1 }, + { "startOffset": 3956, "endOffset": 4114, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 294, "endOffset": 360, "count": 8 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 374, "endOffset": 464, "count": 1 }, + { "startOffset": 409, "endOffset": 463, "count": 7 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 481, "endOffset": 758, "count": 1 }, + { "startOffset": 536, "endOffset": 562, "count": 0 }, + { "startOffset": 603, "endOffset": 747, "count": 7 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 669, "endOffset": 682, "count": 40 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 776, "endOffset": 837, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "addPackageServiceFactories", + "ranges": [{ "startOffset": 922, "endOffset": 952, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getAllPackageStates", + "ranges": [{ "startOffset": 973, "endOffset": 996, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getCreateWireServices", + "ranges": [{ "startOffset": 1019, "endOffset": 1044, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getSingletonServices", + "ranges": [{ "startOffset": 1066, "endOffset": 1090, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "initializePikkuState", + "ranges": [{ "startOffset": 1112, "endOffset": 1136, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pikkuState", + "ranges": [{ "startOffset": 1148, "endOffset": 1162, "count": 40 }], + "isBlockCoverage": true + }, + { + "functionName": "resetPikkuState", + "ranges": [{ "startOffset": 1179, "endOffset": 1198, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 1333, "endOffset": 1443, "count": 84 }, + { "startOffset": 1370, "endOffset": 1408, "count": 1 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 1491, "endOffset": 1824, "count": 40 }, + { "startOffset": 1627, "endOffset": 1670, "count": 0 }, + { "startOffset": 1754, "endOffset": 1789, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1876, "endOffset": 2883, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2945, "endOffset": 3069, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 3123, "endOffset": 3380, "count": 1 }, + { "startOffset": 3186, "endOffset": 3192, "count": 0 }, + { "startOffset": 3287, "endOffset": 3379, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3495, "endOffset": 3645, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3705, "endOffset": 3776, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3842, "endOffset": 3924, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1376", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@cfworker/json-schema/dist/commonjs/index.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 1161, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 88, "endOffset": 405, "count": 14 }, + { "startOffset": 232, "endOffset": 247, "count": 0 }, + { "startOffset": 264, "endOffset": 284, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 327, "endOffset": 354, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__exportStar", + "ranges": [ + { "startOffset": 541, "endOffset": 692, "count": 8 }, + { "startOffset": 585, "endOffset": 690, "count": 14 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1377", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@cfworker/json-schema/dist/commonjs/deep-compare-strict.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1092, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "deepCompareStrict", + "ranges": [{ "startOffset": 124, "endOffset": 1091, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1378", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@cfworker/json-schema/dist/commonjs/dereference.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 4513, "count": 1 }, + { "startOffset": 1445, "endOffset": 1465, "count": 0 }, + { "startOffset": 1466, "endOffset": 1504, "count": 0 }, + { "startOffset": 1509, "endOffset": 1591, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "dereference", + "ranges": [{ "startOffset": 1638, "endOffset": 4512, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1379", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@cfworker/json-schema/dist/commonjs/pointer.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 310, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "encodePointer", + "ranges": [{ "startOffset": 155, "endOffset": 224, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "escapePointer", + "ranges": [{ "startOffset": 225, "endOffset": 309, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1380", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@cfworker/json-schema/dist/commonjs/format.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 7676, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "EMAIL", + "ranges": [{ "startOffset": 2623, "endOffset": 3199, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "DURATION", + "ranges": [{ "startOffset": 4333, "endOffset": 4590, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "bind", + "ranges": [{ "startOffset": 4592, "endOffset": 4639, "count": 10 }], + "isBlockCoverage": true + }, + { + "functionName": "isLeapYear", + "ranges": [{ "startOffset": 5162, "endOffset": 5260, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "date", + "ranges": [{ "startOffset": 5261, "endOffset": 5588, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "time", + "ranges": [{ "startOffset": 5589, "endOffset": 5971, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "date_time", + "ranges": [{ "startOffset": 6009, "endOffset": 6170, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "uri", + "ranges": [{ "startOffset": 7376, "endOffset": 7461, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "regex", + "ranges": [{ "startOffset": 7491, "endOffset": 7675, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1381", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@cfworker/json-schema/dist/commonjs/types.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 386, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 127, "endOffset": 323, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1382", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@cfworker/json-schema/dist/commonjs/ucs2-length.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 551, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "ucs2length", + "ranges": [{ "startOffset": 110, "endOffset": 550, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1383", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@cfworker/json-schema/dist/commonjs/validate.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 36462, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "validate", + "ranges": [{ "startOffset": 374, "endOffset": 36461, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1384", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@cfworker/json-schema/dist/commonjs/validator.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 861, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 229, "endOffset": 276, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "Validator", + "ranges": [{ "startOffset": 282, "endOffset": 514, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "validate", + "ranges": [{ "startOffset": 519, "endOffset": 656, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addSchema", + "ranges": [{ "startOffset": 661, "endOffset": 827, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1385", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/kysely-sqlite/dist/src/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 4517, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 129, "endOffset": 2934, "count": 1 }, + { "startOffset": 2652, "endOffset": 2931, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 335, "endOffset": 425, "count": 1 }, + { "startOffset": 370, "endOffset": 424, "count": 10 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 442, "endOffset": 719, "count": 1 }, + { "startOffset": 497, "endOffset": 523, "count": 0 }, + { "startOffset": 564, "endOffset": 708, "count": 10 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 630, "endOffset": 643, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 737, "endOffset": 798, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "LibsqlWebDialect", + "ranges": [{ "startOffset": 857, "endOffset": 903, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "SQLiteKyselyAIStorageService", + "ranges": [{ "startOffset": 933, "endOffset": 1005, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "SQLiteKyselyAgentRunService", + "ranges": [{ "startOffset": 1034, "endOffset": 1104, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "SQLiteKyselyChannelStore", + "ranges": [{ "startOffset": 1130, "endOffset": 1193, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "SQLiteKyselyDeploymentService", + "ranges": [{ "startOffset": 1224, "endOffset": 1297, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "SQLiteKyselyEventHubStore", + "ranges": [{ "startOffset": 1324, "endOffset": 1389, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "SQLiteKyselySecretService", + "ranges": [{ "startOffset": 1416, "endOffset": 1481, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "SQLiteKyselyWorkflowRunService", + "ranges": [{ "startOffset": 1513, "endOffset": 1589, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "SQLiteKyselyWorkflowService", + "ranges": [{ "startOffset": 1618, "endOffset": 1687, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createSQLiteKysely", + "ranges": [{ "startOffset": 1707, "endOffset": 1757, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1386", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/kysely-sqlite/dist/src/create-sqlite-kysely.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2399, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 144, "endOffset": 1452, "count": 1 }, + { "startOffset": 1410, "endOffset": 1449, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 348, "endOffset": 414, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 428, "endOffset": 518, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 535, "endOffset": 812, "count": 1 }, + { "startOffset": 590, "endOffset": 616, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 723, "endOffset": 736, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 830, "endOffset": 891, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "createSQLiteKysely", + "ranges": [{ "startOffset": 986, "endOffset": 1008, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createSQLiteKysely", + "ranges": [{ "startOffset": 1175, "endOffset": 1361, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1387", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/kysely-plugin-serialize/dist/index.cjs", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 5738, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 167, "endOffset": 177, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "SerializeParametersTransformer", + "ranges": [{ "startOffset": 181, "endOffset": 257, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformPrimitiveValueList", + "ranges": [{ "startOffset": 260, "endOffset": 381, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformColumnUpdate", + "ranges": [{ "startOffset": 426, "endOffset": 865, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformValue", + "ranges": [{ "startOffset": 868, "endOffset": 970, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "defaultSerializer", + "ranges": [{ "startOffset": 1020, "endOffset": 1388, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "defaultDeserializer", + "ranges": [{ "startOffset": 1488, "endOffset": 1939, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "maybeJson", + "ranges": [{ "startOffset": 1941, "endOffset": 2093, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "skipTransform", + "ranges": [{ "startOffset": 2094, "endOffset": 2311, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2376, "endOffset": 2425, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "BaseSerializePlugin", + "ranges": [{ "startOffset": 2510, "endOffset": 2809, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformQuery", + "ranges": [{ "startOffset": 2812, "endOffset": 2999, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformResult", + "ranges": [{ "startOffset": 3002, "endOffset": 3145, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseRows", + "ranges": [{ "startOffset": 3148, "endOffset": 3464, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "SerializePlugin", + "ranges": [{ "startOffset": 5125, "endOffset": 5340, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1388", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/kysely-sqlite/dist/src/sqlite-kysely-workflow-service.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1970, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 154, "endOffset": 1351, "count": 1 }, + { "startOffset": 1300, "endOffset": 1348, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 358, "endOffset": 424, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 438, "endOffset": 528, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 545, "endOffset": 822, "count": 1 }, + { "startOffset": 600, "endOffset": 626, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 733, "endOffset": 746, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 840, "endOffset": 901, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "SQLiteKyselyWorkflowService", + "ranges": [{ "startOffset": 1025, "endOffset": 1056, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1248, "endOffset": 1298, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1389", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/kysely/dist/src/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 4721, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 122, "endOffset": 3030, "count": 1 }, + { "startOffset": 2744, "endOffset": 3027, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 328, "endOffset": 418, "count": 1 }, + { "startOffset": 363, "endOffset": 417, "count": 12 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 435, "endOffset": 712, "count": 1 }, + { "startOffset": 490, "endOffset": 516, "count": 0 }, + { "startOffset": 557, "endOffset": 701, "count": 12 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 623, "endOffset": 636, "count": 8 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 730, "endOffset": 791, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "KyselyAIRunStateService", + "ranges": [{ "startOffset": 857, "endOffset": 919, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "KyselyAIStorageService", + "ranges": [{ "startOffset": 943, "endOffset": 1002, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "KyselyAgentRunService", + "ranges": [{ "startOffset": 1025, "endOffset": 1085, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "KyselyChannelStore", + "ranges": [{ "startOffset": 1105, "endOffset": 1155, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "KyselyCredentialService", + "ranges": [{ "startOffset": 1180, "endOffset": 1240, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "KyselyDeploymentService", + "ranges": [{ "startOffset": 1265, "endOffset": 1325, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "KyselyEventHubStore", + "ranges": [{ "startOffset": 1346, "endOffset": 1398, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "KyselySecretService", + "ranges": [{ "startOffset": 1419, "endOffset": 1471, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "KyselySessionStore", + "ranges": [{ "startOffset": 1491, "endOffset": 1541, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "KyselyWorkflowMirror", + "ranges": [{ "startOffset": 1563, "endOffset": 1617, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "KyselyWorkflowRunService", + "ranges": [{ "startOffset": 1643, "endOffset": 1706, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "KyselyWorkflowService", + "ranges": [{ "startOffset": 1729, "endOffset": 1785, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1390", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/kysely/dist/src/kysely-channel-store.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 11733, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 137, "endOffset": 3690, "count": 1 }, + { "startOffset": 3648, "endOffset": 3687, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 341, "endOffset": 407, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 421, "endOffset": 511, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 528, "endOffset": 805, "count": 1 }, + { "startOffset": 583, "endOffset": 609, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 716, "endOffset": 729, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 823, "endOffset": 884, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "KyselyChannelStore", + "ranges": [{ "startOffset": 979, "endOffset": 1001, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1260, "endOffset": 1301, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1301, "endOffset": 1321, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "KyselyChannelStore", + "ranges": [{ "startOffset": 1322, "endOffset": 1357, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "init", + "ranges": [{ "startOffset": 1357, "endOffset": 2233, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addChannel", + "ranges": [{ "startOffset": 2233, "endOffset": 2410, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "removeChannels", + "ranges": [{ "startOffset": 2410, "endOffset": 2558, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setPikkuUserId", + "ranges": [{ "startOffset": 2558, "endOffset": 2702, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getChannel", + "ranges": [{ "startOffset": 2702, "endOffset": 3115, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setState", + "ranges": [{ "startOffset": 3115, "endOffset": 3269, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getState", + "ranges": [{ "startOffset": 3269, "endOffset": 3504, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "clearState", + "ranges": [{ "startOffset": 3504, "endOffset": 3631, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "close", + "ranges": [{ "startOffset": 3631, "endOffset": 3646, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1391", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/kysely/dist/src/kysely-json.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1897, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 128, "endOffset": 1182, "count": 1 }, + { "startOffset": 1149, "endOffset": 1179, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 332, "endOffset": 398, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 412, "endOffset": 502, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 519, "endOffset": 796, "count": 1 }, + { "startOffset": 574, "endOffset": 600, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 707, "endOffset": 720, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 814, "endOffset": 875, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "parseJson", + "ranges": [{ "startOffset": 943, "endOffset": 956, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseJson", + "ranges": [{ "startOffset": 1008, "endOffset": 1118, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1392", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/kysely/dist/src/kysely-eventhub-store.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 5209, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 138, "endOffset": 2022, "count": 1 }, + { "startOffset": 1979, "endOffset": 2019, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 342, "endOffset": 408, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 422, "endOffset": 512, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 529, "endOffset": 806, "count": 1 }, + { "startOffset": 584, "endOffset": 610, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 717, "endOffset": 730, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 824, "endOffset": 885, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "KyselyEventHubStore", + "ranges": [{ "startOffset": 983, "endOffset": 1006, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1181, "endOffset": 1223, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1223, "endOffset": 1243, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "KyselyEventHubStore", + "ranges": [{ "startOffset": 1244, "endOffset": 1279, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "init", + "ranges": [{ "startOffset": 1279, "endOffset": 1342, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getChannelIdsForTopic", + "ranges": [{ "startOffset": 1342, "endOffset": 1532, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "subscribe", + "ranges": [{ "startOffset": 1532, "endOffset": 1748, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "unsubscribe", + "ranges": [{ "startOffset": 1748, "endOffset": 1962, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "close", + "ranges": [{ "startOffset": 1962, "endOffset": 1977, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1393", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/kysely/dist/src/kysely-workflow-service.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 54699, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 140, "endOffset": 14328, "count": 1 }, + { "startOffset": 14283, "endOffset": 14325, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 344, "endOffset": 410, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 424, "endOffset": 514, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 531, "endOffset": 808, "count": 1 }, + { "startOffset": 586, "endOffset": 612, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 719, "endOffset": 732, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 826, "endOffset": 887, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "KyselyWorkflowService", + "ranges": [{ "startOffset": 991, "endOffset": 1016, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1375, "endOffset": 1419, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1419, "endOffset": 1450, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "KyselyWorkflowService", + "ranges": [{ "startOffset": 1451, "endOffset": 1570, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "init", + "ranges": [{ "startOffset": 1570, "endOffset": 4695, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createRunImpl", + "ranges": [{ "startOffset": 4695, "endOffset": 5139, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getRun", + "ranges": [{ "startOffset": 5139, "endOffset": 5190, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "updateRunStatusImpl", + "ranges": [{ "startOffset": 5190, "endOffset": 5436, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "insertStepStateImpl", + "ranges": [{ "startOffset": 5436, "endOffset": 6077, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getStepState", + "ranges": [{ "startOffset": 6077, "endOffset": 7007, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getRunHistory", + "ranges": [{ "startOffset": 7007, "endOffset": 7078, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setStepRunningImpl", + "ranges": [{ "startOffset": 7078, "endOffset": 7569, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setStepScheduledImpl", + "ranges": [{ "startOffset": 7569, "endOffset": 7736, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "insertHistoryRecord", + "ranges": [{ "startOffset": 7736, "endOffset": 8184, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getTimestampFieldForStatus", + "ranges": [{ "startOffset": 8184, "endOffset": 8395, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setStepChildRunIdImpl", + "ranges": [{ "startOffset": 8395, "endOffset": 8566, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setStepResultImpl", + "ranges": [{ "startOffset": 8566, "endOffset": 9154, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setStepErrorImpl", + "ranges": [{ "startOffset": 9154, "endOffset": 9819, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createRetryAttemptImpl", + "ranges": [{ "startOffset": 9819, "endOffset": 10807, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "withRunLock", + "ranges": [{ "startOffset": 10807, "endOffset": 10845, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "withStepLock", + "ranges": [{ "startOffset": 10845, "endOffset": 10897, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getCompletedGraphState", + "ranges": [{ "startOffset": 10897, "endOffset": 11739, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getNodesWithoutSteps", + "ranges": [{ "startOffset": 11739, "endOffset": 12072, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getNodeResults", + "ranges": [{ "startOffset": 12072, "endOffset": 12453, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setBranchTakenImpl", + "ranges": [{ "startOffset": 12453, "endOffset": 12631, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "updateRunStateImpl", + "ranges": [{ "startOffset": 12631, "endOffset": 13011, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getRunState", + "ranges": [{ "startOffset": 13011, "endOffset": 13226, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "upsertWorkflowVersionImpl", + "ranges": [{ "startOffset": 13226, "endOffset": 13515, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "updateWorkflowVersionStatusImpl", + "ranges": [{ "startOffset": 13515, "endOffset": 13710, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getWorkflowVersion", + "ranges": [{ "startOffset": 13710, "endOffset": 13809, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getAIGeneratedWorkflows", + "ranges": [{ "startOffset": 13809, "endOffset": 14266, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "close", + "ranges": [{ "startOffset": 14266, "endOffset": 14281, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1394", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/wirings/workflow/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 4171, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 133, "endOffset": 2584, "count": 1 }, + { "startOffset": 2277, "endOffset": 2581, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 339, "endOffset": 429, "count": 1 }, + { "startOffset": 374, "endOffset": 428, "count": 13 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 446, "endOffset": 723, "count": 1 }, + { "startOffset": 501, "endOffset": 527, "count": 0 }, + { "startOffset": 568, "endOffset": 712, "count": 13 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 634, "endOffset": 647, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 741, "endOffset": 802, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "PikkuWorkflowService", + "ranges": [{ "startOffset": 875, "endOffset": 929, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "WorkflowCancelledException", + "ranges": [{ "startOffset": 957, "endOffset": 1017, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "WorkflowNotFoundError", + "ranges": [{ "startOffset": 1040, "endOffset": 1095, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "WorkflowRunNotFoundError", + "ranges": [{ "startOffset": 1121, "endOffset": 1179, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "WorkflowSuspendedException", + "ranges": [{ "startOffset": 1207, "endOffset": 1267, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addWorkflow", + "ranges": [{ "startOffset": 1280, "endOffset": 1318, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "computeEntryNodeIds", + "ranges": [{ "startOffset": 1339, "endOffset": 1386, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pikkuWorkflowGraph", + "ranges": [{ "startOffset": 1406, "endOffset": 1455, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pikkuWorkflowOrchestratorFunc", + "ranges": [{ "startOffset": 1486, "endOffset": 1549, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pikkuWorkflowSleeperFunc", + "ranges": [{ "startOffset": 1575, "endOffset": 1633, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pikkuWorkflowWorkerFunc", + "ranges": [{ "startOffset": 1658, "endOffset": 1715, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "template", + "ranges": [{ "startOffset": 1725, "endOffset": 1753, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "validateWorkflowWiring", + "ranges": [{ "startOffset": 1777, "endOffset": 1827, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1395", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/wirings/workflow/dsl/workflow-runner.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3774, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 147, "endOffset": 1827, "count": 1 }, + { "startOffset": 1792, "endOffset": 1824, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 351, "endOffset": 417, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 431, "endOffset": 521, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 538, "endOffset": 815, "count": 1 }, + { "startOffset": 593, "endOffset": 619, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 726, "endOffset": 739, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 833, "endOffset": 894, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "addWorkflow", + "ranges": [{ "startOffset": 972, "endOffset": 987, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1201, "endOffset": 1775, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1396", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/wirings/workflow/graph/template.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3817, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 142, "endOffset": 1614, "count": 1 }, + { "startOffset": 1582, "endOffset": 1611, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 346, "endOffset": 412, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 426, "endOffset": 516, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 533, "endOffset": 810, "count": 1 }, + { "startOffset": 588, "endOffset": 614, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 721, "endOffset": 734, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 828, "endOffset": 889, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "template", + "ranges": [{ "startOffset": 950, "endOffset": 962, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "template", + "ranges": [{ "startOffset": 1011, "endOffset": 1553, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1397", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/wirings/workflow/graph/wire-workflow-graph.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2094, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 153, "endOffset": 1303, "count": 1 }, + { "startOffset": 1261, "endOffset": 1300, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 357, "endOffset": 423, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 437, "endOffset": 527, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 544, "endOffset": 821, "count": 1 }, + { "startOffset": 599, "endOffset": 625, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 732, "endOffset": 745, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 839, "endOffset": 900, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "pikkuWorkflowGraph", + "ranges": [{ "startOffset": 993, "endOffset": 1015, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pikkuWorkflowGraph", + "ranges": [{ "startOffset": 1075, "endOffset": 1212, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1398", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/wirings/workflow/graph/graph-validation.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 23140, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 150, "endOffset": 6849, "count": 1 }, + { "startOffset": 6760, "endOffset": 6846, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 354, "endOffset": 420, "count": 6 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 434, "endOffset": 524, "count": 1 }, + { "startOffset": 469, "endOffset": 523, "count": 3 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 541, "endOffset": 818, "count": 1 }, + { "startOffset": 596, "endOffset": 622, "count": 0 }, + { "startOffset": 663, "endOffset": 807, "count": 3 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 729, "endOffset": 742, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 836, "endOffset": 897, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "computeEntryNodeIds", + "ranges": [{ "startOffset": 985, "endOffset": 1008, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "generateMermaidDiagram", + "ranges": [{ "startOffset": 1032, "endOffset": 1058, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "validateWorkflowWiring", + "ranges": [{ "startOffset": 1082, "endOffset": 1108, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "normalizeTargets", + "ranges": [{ "startOffset": 1280, "endOffset": 1584, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "collectRefs", + "ranges": [{ "startOffset": 1628, "endOffset": 1955, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolveToolMeta", + "ranges": [{ "startOffset": 1989, "endOffset": 2692, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "computeEntryNodeIds", + "ranges": [{ "startOffset": 2734, "endOffset": 3074, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "validateWorkflowWiring", + "ranges": [{ "startOffset": 3124, "endOffset": 6084, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "generateMermaidDiagram", + "ranges": [{ "startOffset": 6140, "endOffset": 6703, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1399", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/kysely/dist/src/kysely-workflow-run-service.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 20929, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 144, "endOffset": 5878, "count": 1 }, + { "startOffset": 5830, "endOffset": 5875, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 348, "endOffset": 414, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 428, "endOffset": 518, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 535, "endOffset": 812, "count": 1 }, + { "startOffset": 590, "endOffset": 616, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 723, "endOffset": 736, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 830, "endOffset": 891, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "KyselyWorkflowRunService", + "ranges": [{ "startOffset": 1006, "endOffset": 1034, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1184, "endOffset": 1231, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1231, "endOffset": 1233, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "KyselyWorkflowRunService", + "ranges": [{ "startOffset": 1234, "endOffset": 1261, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "listRuns", + "ranges": [{ "startOffset": 1261, "endOffset": 1790, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getRun", + "ranges": [{ "startOffset": 1790, "endOffset": 2108, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getRunSteps", + "ranges": [{ "startOffset": 2108, "endOffset": 3106, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getRunHistory", + "ranges": [{ "startOffset": 3106, "endOffset": 4230, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getDistinctWorkflowNames", + "ranges": [{ "startOffset": 4230, "endOffset": 4414, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getWorkflowVersion", + "ranges": [{ "startOffset": 4414, "endOffset": 4716, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getAIGeneratedWorkflows", + "ranges": [{ "startOffset": 4716, "endOffset": 5157, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "deleteRun", + "ranges": [{ "startOffset": 5157, "endOffset": 5320, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mapRunRow", + "ranges": [{ "startOffset": 5320, "endOffset": 5828, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1400", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/kysely/dist/src/kysely-workflow-mirror.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 34912, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 139, "endOffset": 8965, "count": 1 }, + { "startOffset": 8921, "endOffset": 8962, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 343, "endOffset": 409, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 423, "endOffset": 513, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 530, "endOffset": 807, "count": 1 }, + { "startOffset": 585, "endOffset": 611, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 718, "endOffset": 731, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 825, "endOffset": 886, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "KyselyWorkflowMirror", + "ranges": [{ "startOffset": 987, "endOffset": 1011, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1137, "endOffset": 1180, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1180, "endOffset": 1200, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "KyselyWorkflowMirror", + "ranges": [{ "startOffset": 1201, "endOffset": 1228, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "init", + "ranges": [{ "startOffset": 1228, "endOffset": 4100, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createRun", + "ranges": [{ "startOffset": 4100, "endOffset": 4510, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "updateRunStatus", + "ranges": [{ "startOffset": 4510, "endOffset": 4770, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "insertStepState", + "ranges": [{ "startOffset": 4770, "endOffset": 5218, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setStepRunning", + "ranges": [{ "startOffset": 5218, "endOffset": 5350, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setStepScheduled", + "ranges": [{ "startOffset": 5350, "endOffset": 5429, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setStepResult", + "ranges": [{ "startOffset": 5429, "endOffset": 5735, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setStepChildRunId", + "ranges": [{ "startOffset": 5735, "endOffset": 5902, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setStepError", + "ranges": [{ "startOffset": 5902, "endOffset": 6203, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createRetryAttempt", + "ranges": [{ "startOffset": 6203, "endOffset": 6474, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setBranchTaken", + "ranges": [{ "startOffset": 6474, "endOffset": 6648, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "updateRunState", + "ranges": [{ "startOffset": 6648, "endOffset": 7055, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "upsertWorkflowVersion", + "ranges": [{ "startOffset": 7055, "endOffset": 7332, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "updateWorkflowVersionStatus", + "ranges": [{ "startOffset": 7332, "endOffset": 7523, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "updateStepStatus", + "ranges": [{ "startOffset": 7523, "endOffset": 7681, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "insertHistoryRecord", + "ranges": [{ "startOffset": 7681, "endOffset": 8040, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "appendOrUpdateLatestHistory", + "ranges": [{ "startOffset": 8040, "endOffset": 8668, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "timestampFieldFor", + "ranges": [{ "startOffset": 8669, "endOffset": 8874, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1401", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/kysely/dist/src/kysely-deployment-service.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 17676, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 142, "endOffset": 5161, "count": 1 }, + { "startOffset": 5114, "endOffset": 5158, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 346, "endOffset": 412, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 426, "endOffset": 516, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 533, "endOffset": 810, "count": 1 }, + { "startOffset": 588, "endOffset": 614, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 721, "endOffset": 734, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 828, "endOffset": 889, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "KyselyDeploymentService", + "ranges": [{ "startOffset": 999, "endOffset": 1026, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1258, "endOffset": 1304, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1304, "endOffset": 1399, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "KyselyDeploymentService", + "ranges": [{ "startOffset": 1400, "endOffset": 1576, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "init", + "ranges": [{ "startOffset": 1576, "endOffset": 2699, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "start", + "ranges": [{ "startOffset": 2699, "endOffset": 3485, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stop", + "ranges": [{ "startOffset": 3485, "endOffset": 3727, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "invoke", + "ranges": [{ "startOffset": 3727, "endOffset": 4690, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createIndexSafe", + "ranges": [{ "startOffset": 4690, "endOffset": 4898, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "sendHeartbeat", + "ranges": [{ "startOffset": 4898, "endOffset": 5112, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1402", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/remote.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 4114, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 117, "endOffset": 1679, "count": 1 }, + { "startOffset": 1637, "endOffset": 1676, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 321, "endOffset": 387, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 401, "endOffset": 491, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 508, "endOffset": 785, "count": 1 }, + { "startOffset": 563, "endOffset": 589, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 696, "endOffset": 709, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 803, "endOffset": 864, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "buildRemoteHeaders", + "ranges": [{ "startOffset": 931, "endOffset": 953, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "buildRemoteHeaders", + "ranges": [{ "startOffset": 1053, "endOffset": 1588, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1403", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/kysely/dist/src/kysely-ai-storage-service.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 60867, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 142, "endOffset": 14940, "count": 1 }, + { "startOffset": 14894, "endOffset": 14937, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 346, "endOffset": 412, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 426, "endOffset": 516, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 533, "endOffset": 810, "count": 1 }, + { "startOffset": 588, "endOffset": 614, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 721, "endOffset": 734, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 828, "endOffset": 889, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "KyselyAIStorageService", + "ranges": [{ "startOffset": 998, "endOffset": 1024, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1206, "endOffset": 1251, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1251, "endOffset": 1271, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "KyselyAIStorageService", + "ranges": [{ "startOffset": 1272, "endOffset": 1299, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createIndexSafe", + "ranges": [{ "startOffset": 1299, "endOffset": 1507, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "init", + "ranges": [{ "startOffset": 1507, "endOffset": 5185, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createThread", + "ranges": [{ "startOffset": 5185, "endOffset": 5565, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getThread", + "ranges": [{ "startOffset": 5565, "endOffset": 6004, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getThreads", + "ranges": [{ "startOffset": 6004, "endOffset": 6440, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "deleteThread", + "ranges": [{ "startOffset": 6440, "endOffset": 6542, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getMessages", + "ranges": [{ "startOffset": 6542, "endOffset": 8330, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "saveMessages", + "ranges": [{ "startOffset": 8330, "endOffset": 9345, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getWorkingMemory", + "ranges": [{ "startOffset": 9345, "endOffset": 9579, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "saveWorkingMemory", + "ranges": [{ "startOffset": 9579, "endOffset": 9839, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createRun", + "ranges": [{ "startOffset": 9839, "endOffset": 10434, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "updateRun", + "ranges": [{ "startOffset": 10434, "endOffset": 11428, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getRun", + "ranges": [{ "startOffset": 11428, "endOffset": 11998, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getRunsByThread", + "ranges": [{ "startOffset": 11998, "endOffset": 12647, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setApprovals", + "ranges": [{ "startOffset": 12647, "endOffset": 13127, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mapRunRow", + "ranges": [{ "startOffset": 13127, "endOffset": 13995, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "findRunByToolCallId", + "ranges": [{ "startOffset": 13995, "endOffset": 14730, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolveApproval", + "ranges": [{ "startOffset": 14730, "endOffset": 14877, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "close", + "ranges": [{ "startOffset": 14877, "endOffset": 14892, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1404", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/kysely/dist/src/kysely-ai-agent-run-service.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 16504, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 144, "endOffset": 4529, "count": 1 }, + { "startOffset": 4484, "endOffset": 4526, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 348, "endOffset": 414, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 428, "endOffset": 518, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 535, "endOffset": 812, "count": 1 }, + { "startOffset": 590, "endOffset": 616, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 723, "endOffset": 736, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 830, "endOffset": 891, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "KyselyAgentRunService", + "ranges": [{ "startOffset": 1003, "endOffset": 1028, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1175, "endOffset": 1219, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1219, "endOffset": 1221, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "KyselyAgentRunService", + "ranges": [{ "startOffset": 1222, "endOffset": 1249, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "listThreads", + "ranges": [{ "startOffset": 1249, "endOffset": 1729, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getThread", + "ranges": [{ "startOffset": 1729, "endOffset": 1968, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getThreadMessages", + "ranges": [{ "startOffset": 1968, "endOffset": 3100, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getThreadRuns", + "ranges": [{ "startOffset": 3100, "endOffset": 3474, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "deleteThread", + "ranges": [{ "startOffset": 3474, "endOffset": 3638, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getDistinctAgentNames", + "ranges": [{ "startOffset": 3638, "endOffset": 3815, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mapThreadRow", + "ranges": [{ "startOffset": 3815, "endOffset": 4025, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mapRunRow", + "ranges": [{ "startOffset": 4025, "endOffset": 4482, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1405", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/kysely/dist/src/kysely-ai-run-state-service.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 19604, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 144, "endOffset": 5537, "count": 1 }, + { "startOffset": 5490, "endOffset": 5534, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 348, "endOffset": 414, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 428, "endOffset": 518, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 535, "endOffset": 812, "count": 1 }, + { "startOffset": 590, "endOffset": 616, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 723, "endOffset": 736, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 830, "endOffset": 891, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "KyselyAIRunStateService", + "ranges": [{ "startOffset": 1005, "endOffset": 1032, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1166, "endOffset": 1212, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1212, "endOffset": 1232, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "KyselyAIRunStateService", + "ranges": [{ "startOffset": 1233, "endOffset": 1260, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "init", + "ranges": [{ "startOffset": 1260, "endOffset": 2169, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createRun", + "ranges": [{ "startOffset": 2169, "endOffset": 2664, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "updateRun", + "ranges": [{ "startOffset": 2664, "endOffset": 3393, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getRun", + "ranges": [{ "startOffset": 3393, "endOffset": 3550, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getRunsByThread", + "ranges": [{ "startOffset": 3550, "endOffset": 3747, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolveApproval", + "ranges": [{ "startOffset": 3747, "endOffset": 4491, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "findRunByToolCallId", + "ranges": [{ "startOffset": 4491, "endOffset": 4964, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toRunState", + "ranges": [{ "startOffset": 4964, "endOffset": 5488, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1406", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/kysely/dist/src/kysely-secret-service.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 15770, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 138, "endOffset": 4671, "count": 1 }, + { "startOffset": 4628, "endOffset": 4668, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 342, "endOffset": 408, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 422, "endOffset": 512, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 529, "endOffset": 806, "count": 1 }, + { "startOffset": 584, "endOffset": 610, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 717, "endOffset": 730, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 824, "endOffset": 885, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "KyselySecretService", + "ranges": [{ "startOffset": 983, "endOffset": 1006, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1190, "endOffset": 1232, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1232, "endOffset": 1296, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "KyselySecretService", + "ranges": [{ "startOffset": 1297, "endOffset": 1496, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "init", + "ranges": [{ "startOffset": 1496, "endOffset": 2398, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "logAudit", + "ranges": [{ "startOffset": 2398, "endOffset": 2635, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getKEK", + "ranges": [{ "startOffset": 2635, "endOffset": 2803, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getSecret", + "ranges": [{ "startOffset": 2803, "endOffset": 3190, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getSecretJSON", + "ranges": [{ "startOffset": 3190, "endOffset": 3274, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hasSecret", + "ranges": [{ "startOffset": 3274, "endOffset": 3407, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setSecretJSON", + "ranges": [{ "startOffset": 3407, "endOffset": 3908, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "deleteSecret", + "ranges": [{ "startOffset": 3908, "endOffset": 4033, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "rotateKEK", + "ranges": [{ "startOffset": 4033, "endOffset": 4626, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1407", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/kysely/dist/src/kysely-credential-service.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 22824, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 142, "endOffset": 6381, "count": 1 }, + { "startOffset": 6334, "endOffset": 6378, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 346, "endOffset": 412, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 426, "endOffset": 516, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 533, "endOffset": 810, "count": 1 }, + { "startOffset": 588, "endOffset": 614, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 721, "endOffset": 734, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 828, "endOffset": 889, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "KyselyCredentialService", + "ranges": [{ "startOffset": 999, "endOffset": 1026, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1218, "endOffset": 1264, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1264, "endOffset": 1328, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "KyselyCredentialService", + "ranges": [{ "startOffset": 1329, "endOffset": 1528, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "init", + "ranges": [{ "startOffset": 1528, "endOffset": 2666, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "logAudit", + "ranges": [{ "startOffset": 2666, "endOffset": 2939, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getKEK", + "ranges": [{ "startOffset": 2939, "endOffset": 3107, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "whereUserId", + "ranges": [{ "startOffset": 3107, "endOffset": 3203, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3203, "endOffset": 3704, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 3704, "endOffset": 4367, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "delete", + "ranges": [{ "startOffset": 4367, "endOffset": 4549, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "has", + "ranges": [{ "startOffset": 4549, "endOffset": 4732, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getAll", + "ranges": [{ "startOffset": 4732, "endOffset": 5243, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getUsersWithCredential", + "ranges": [{ "startOffset": 5243, "endOffset": 5458, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getAllUsers", + "ranges": [{ "startOffset": 5458, "endOffset": 5646, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "rotateKEK", + "ranges": [{ "startOffset": 5646, "endOffset": 6332, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1408", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/kysely/dist/src/kysely-session-store.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 6453, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 137, "endOffset": 2382, "count": 1 }, + { "startOffset": 2340, "endOffset": 2379, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 341, "endOffset": 407, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 421, "endOffset": 511, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 528, "endOffset": 805, "count": 1 }, + { "startOffset": 583, "endOffset": 609, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 716, "endOffset": 729, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 823, "endOffset": 884, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "KyselySessionStore", + "ranges": [{ "startOffset": 979, "endOffset": 1001, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1174, "endOffset": 1215, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1215, "endOffset": 1235, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "KyselySessionStore", + "ranges": [{ "startOffset": 1236, "endOffset": 1263, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "init", + "ranges": [{ "startOffset": 1263, "endOffset": 1715, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1715, "endOffset": 1953, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 1953, "endOffset": 2220, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "clear", + "ranges": [{ "startOffset": 2220, "endOffset": 2338, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1409", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/kysely-sqlite/dist/src/sqlite-kysely-deployment-service.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2002, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 156, "endOffset": 1371, "count": 1 }, + { "startOffset": 1318, "endOffset": 1368, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 360, "endOffset": 426, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 440, "endOffset": 530, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 547, "endOffset": 824, "count": 1 }, + { "startOffset": 602, "endOffset": 628, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 735, "endOffset": 748, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 842, "endOffset": 903, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "SQLiteKyselyDeploymentService", + "ranges": [{ "startOffset": 1033, "endOffset": 1066, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1264, "endOffset": 1316, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1410", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/kysely-sqlite/dist/src/sqlite-kysely-ai-storage-service.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1992, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 156, "endOffset": 1365, "count": 1 }, + { "startOffset": 1313, "endOffset": 1362, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 360, "endOffset": 426, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 440, "endOffset": 530, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 547, "endOffset": 824, "count": 1 }, + { "startOffset": 602, "endOffset": 628, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 735, "endOffset": 748, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 842, "endOffset": 903, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "SQLiteKyselyAIStorageService", + "ranges": [{ "startOffset": 1032, "endOffset": 1064, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1260, "endOffset": 1311, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1411", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/kysely-sqlite/dist/src/sqlite-kysely-agent-run-service.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1974, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 155, "endOffset": 1355, "count": 1 }, + { "startOffset": 1304, "endOffset": 1352, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 359, "endOffset": 425, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 439, "endOffset": 529, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 546, "endOffset": 823, "count": 1 }, + { "startOffset": 601, "endOffset": 627, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 734, "endOffset": 747, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 841, "endOffset": 902, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "SQLiteKyselyAgentRunService", + "ranges": [{ "startOffset": 1028, "endOffset": 1059, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1252, "endOffset": 1302, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1412", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/kysely-sqlite/dist/src/sqlite-kysely-workflow-run-service.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2020, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 158, "endOffset": 1385, "count": 1 }, + { "startOffset": 1331, "endOffset": 1382, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 362, "endOffset": 428, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 442, "endOffset": 532, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 549, "endOffset": 826, "count": 1 }, + { "startOffset": 604, "endOffset": 630, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 737, "endOffset": 750, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 844, "endOffset": 905, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "SQLiteKyselyWorkflowRunService", + "ranges": [{ "startOffset": 1040, "endOffset": 1074, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1276, "endOffset": 1329, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1413", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/kysely-sqlite/dist/src/sqlite-kysely-channel-store.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1924, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 151, "endOffset": 1321, "count": 1 }, + { "startOffset": 1273, "endOffset": 1318, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 355, "endOffset": 421, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 435, "endOffset": 525, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 542, "endOffset": 819, "count": 1 }, + { "startOffset": 597, "endOffset": 623, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 730, "endOffset": 743, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 837, "endOffset": 898, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "SQLiteKyselyChannelStore", + "ranges": [{ "startOffset": 1013, "endOffset": 1041, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1224, "endOffset": 1271, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1414", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/kysely-sqlite/dist/src/sqlite-kysely-eventhub-store.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1938, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 152, "endOffset": 1331, "count": 1 }, + { "startOffset": 1282, "endOffset": 1328, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 356, "endOffset": 422, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 436, "endOffset": 526, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 543, "endOffset": 820, "count": 1 }, + { "startOffset": 598, "endOffset": 624, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 731, "endOffset": 744, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 838, "endOffset": 899, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "SQLiteKyselyEventHubStore", + "ranges": [{ "startOffset": 1017, "endOffset": 1046, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1232, "endOffset": 1280, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1415", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/kysely-sqlite/dist/src/sqlite-kysely-secret-service.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1938, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 152, "endOffset": 1331, "count": 1 }, + { "startOffset": 1282, "endOffset": 1328, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 356, "endOffset": 422, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 436, "endOffset": 526, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 543, "endOffset": 820, "count": 1 }, + { "startOffset": 598, "endOffset": 624, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 731, "endOffset": 744, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 838, "endOffset": 899, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "SQLiteKyselySecretService", + "ranges": [{ "startOffset": 1017, "endOffset": 1046, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1232, "endOffset": 1280, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1416", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/kysely-sqlite/dist/src/libsql-web-dialect.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 18245, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 142, "endOffset": 5218, "count": 1 }, + { "startOffset": 5178, "endOffset": 5215, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 346, "endOffset": 412, "count": 8 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 426, "endOffset": 516, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 533, "endOffset": 810, "count": 1 }, + { "startOffset": 588, "endOffset": 614, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 721, "endOffset": 734, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 828, "endOffset": 889, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "LibsqlWebDialect", + "ranges": [{ "startOffset": 978, "endOffset": 998, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1116, "endOffset": 1155, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1155, "endOffset": 1161, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "LibsqlWebDialect", + "ranges": [{ "startOffset": 1162, "endOffset": 1201, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createAdapter", + "ranges": [{ "startOffset": 1201, "endOffset": 1256, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createDriver", + "ranges": [{ "startOffset": 1256, "endOffset": 1311, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createQueryCompiler", + "ranges": [{ "startOffset": 1311, "endOffset": 1378, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createIntrospector", + "ranges": [{ "startOffset": 1378, "endOffset": 1449, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1472, "endOffset": 1510, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1510, "endOffset": 1529, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "LibsqlWebDriver", + "ranges": [{ "startOffset": 1530, "endOffset": 1832, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "init", + "ranges": [{ "startOffset": 1832, "endOffset": 1846, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "acquireConnection", + "ranges": [{ "startOffset": 1846, "endOffset": 1934, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "beginTransaction", + "ranges": [{ "startOffset": 1934, "endOffset": 1994, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "commitTransaction", + "ranges": [{ "startOffset": 1994, "endOffset": 2056, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "rollbackTransaction", + "ranges": [{ "startOffset": 2056, "endOffset": 2122, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "releaseConnection", + "ranges": [{ "startOffset": 2122, "endOffset": 2171, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "destroy", + "ranges": [{ "startOffset": 2171, "endOffset": 2188, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2215, "endOffset": 2257, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2257, "endOffset": 2287, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "LibsqlWebConnection", + "ranges": [{ "startOffset": 2288, "endOffset": 2385, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "executeQuery", + "ranges": [{ "startOffset": 2385, "endOffset": 2499, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "streamQuery", + "ranges": [{ "startOffset": 2499, "endOffset": 2555, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "executeRaw", + "ranges": [{ "startOffset": 2555, "endOffset": 2604, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "close", + "ranges": [{ "startOffset": 2604, "endOffset": 2696, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "runStmt", + "ranges": [{ "startOffset": 2696, "endOffset": 3116, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "send", + "ranges": [{ "startOffset": 3116, "endOffset": 3604, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "encodeArg", + "ranges": [{ "startOffset": 3605, "endOffset": 4180, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "decodeValue", + "ranges": [{ "startOffset": 4210, "endOffset": 4456, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "decodeResult", + "ranges": [{ "startOffset": 4490, "endOffset": 4813, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "bytesToBase64", + "ranges": [{ "startOffset": 4849, "endOffset": 4955, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "base64ToBytes", + "ranges": [{ "startOffset": 4993, "endOffset": 5139, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1417", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@pikku/ai-vercel/dist/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1424, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 89, "endOffset": 1037, "count": 1 }, + { "startOffset": 994, "endOffset": 1034, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 295, "endOffset": 385, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 402, "endOffset": 679, "count": 1 }, + { "startOffset": 457, "endOffset": 483, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 590, "endOffset": 603, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 697, "endOffset": 758, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "VercelAIAgentRunner", + "ranges": [{ "startOffset": 822, "endOffset": 875, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1418", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@pikku/ai-vercel/dist/vercel-ai-agent-runner.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 37803, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 106, "endOffset": 9048, "count": 1 }, + { "startOffset": 9005, "endOffset": 9045, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 310, "endOffset": 376, "count": 5 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 390, "endOffset": 480, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 497, "endOffset": 774, "count": 1 }, + { "startOffset": 552, "endOffset": 578, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 685, "endOffset": 698, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 792, "endOffset": 853, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "VercelAIAgentRunner", + "ranges": [{ "startOffset": 953, "endOffset": 976, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cleanSchema", + "ranges": [{ "startOffset": 1130, "endOffset": 2058, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stripNulls", + "ranges": [{ "startOffset": 2092, "endOffset": 2352, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "extractStructuredText", + "ranges": [{ "startOffset": 2384, "endOffset": 2530, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "extractStructuredUI", + "ranges": [{ "startOffset": 2584, "endOffset": 2693, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2769, "endOffset": 2811, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2811, "endOffset": 2820, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "VercelAIAgentRunner", + "ranges": [{ "startOffset": 2821, "endOffset": 2869, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseModel", + "ranges": [{ "startOffset": 2869, "endOffset": 3270, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getProvider", + "ranges": [{ "startOffset": 3270, "endOffset": 3516, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "buildTools", + "ranges": [{ "startOffset": 3516, "endOffset": 4217, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stream", + "ranges": [{ "startOffset": 4217, "endOffset": 7547, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "run", + "ranges": [{ "startOffset": 7547, "endOffset": 9003, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1419", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/ai/dist/index.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 451607, "count": 1 }, + { "startOffset": 36610, "endOffset": 36624, "count": 0 }, + { "startOffset": 448544, "endOffset": 451572, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 228, "endOffset": 345, "count": 2 }, + { "startOffset": 277, "endOffset": 343, "count": 134 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 365, "endOffset": 711, "count": 1 }, + { "startOffset": 434, "endOffset": 463, "count": 0 }, + { "startOffset": 518, "endOffset": 692, "count": 129 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 603, "endOffset": 618, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 732, "endOffset": 803, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "AISDKError", + "ranges": [{ "startOffset": 882, "endOffset": 916, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "APICallError", + "ranges": [{ "startOffset": 934, "endOffset": 970, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "AbstractChat", + "ranges": [{ "startOffset": 988, "endOffset": 1006, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "DefaultChatTransport", + "ranges": [{ "startOffset": 1032, "endOffset": 1058, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "DefaultGeneratedFile", + "ranges": [{ "startOffset": 1084, "endOffset": 1110, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "DirectChatTransport", + "ranges": [{ "startOffset": 1135, "endOffset": 1160, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "DownloadError", + "ranges": [{ "startOffset": 1179, "endOffset": 1220, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "EmptyResponseBodyError", + "ranges": [{ "startOffset": 1248, "endOffset": 1294, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Experimental_Agent", + "ranges": [{ "startOffset": 1318, "endOffset": 1337, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "HttpChatTransport", + "ranges": [{ "startOffset": 1360, "endOffset": 1383, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "InvalidArgumentError", + "ranges": [{ "startOffset": 1409, "endOffset": 1435, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "InvalidDataContentError", + "ranges": [{ "startOffset": 1464, "endOffset": 1493, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "InvalidMessageRoleError", + "ranges": [{ "startOffset": 1522, "endOffset": 1551, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "InvalidPromptError", + "ranges": [{ "startOffset": 1575, "endOffset": 1617, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "InvalidResponseDataError", + "ranges": [{ "startOffset": 1647, "endOffset": 1695, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "InvalidStreamPartError", + "ranges": [{ "startOffset": 1723, "endOffset": 1751, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "InvalidToolApprovalError", + "ranges": [{ "startOffset": 1781, "endOffset": 1811, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "InvalidToolInputError", + "ranges": [{ "startOffset": 1838, "endOffset": 1865, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "JSONParseError", + "ranges": [{ "startOffset": 1885, "endOffset": 1923, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "JsonToSseTransformStream", + "ranges": [{ "startOffset": 1953, "endOffset": 1983, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "LoadAPIKeyError", + "ranges": [{ "startOffset": 2004, "endOffset": 2043, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "LoadSettingError", + "ranges": [{ "startOffset": 2065, "endOffset": 2105, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "MessageConversionError", + "ranges": [{ "startOffset": 2133, "endOffset": 2161, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "MissingToolResultsError", + "ranges": [{ "startOffset": 2190, "endOffset": 2219, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "NoContentGeneratedError", + "ranges": [{ "startOffset": 2248, "endOffset": 2295, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "NoImageGeneratedError", + "ranges": [{ "startOffset": 2322, "endOffset": 2349, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "NoObjectGeneratedError", + "ranges": [{ "startOffset": 2377, "endOffset": 2405, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "NoOutputGeneratedError", + "ranges": [{ "startOffset": 2433, "endOffset": 2461, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "NoSpeechGeneratedError", + "ranges": [{ "startOffset": 2489, "endOffset": 2517, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "NoSuchModelError", + "ranges": [{ "startOffset": 2539, "endOffset": 2579, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "NoSuchProviderError", + "ranges": [{ "startOffset": 2604, "endOffset": 2629, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "NoSuchToolError", + "ranges": [{ "startOffset": 2650, "endOffset": 2671, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "NoTranscriptGeneratedError", + "ranges": [{ "startOffset": 2703, "endOffset": 2735, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "NoVideoGeneratedError", + "ranges": [{ "startOffset": 2762, "endOffset": 2789, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Output", + "ranges": [{ "startOffset": 2801, "endOffset": 2821, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "RetryError", + "ranges": [{ "startOffset": 2837, "endOffset": 2853, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "SerialJobExecutor", + "ranges": [{ "startOffset": 2876, "endOffset": 2899, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "TextStreamChatTransport", + "ranges": [{ "startOffset": 2928, "endOffset": 2957, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "TooManyEmbeddingValuesForCallError", + "ranges": [{ "startOffset": 2997, "endOffset": 3055, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ToolCallNotFoundForApprovalError", + "ranges": [{ "startOffset": 3093, "endOffset": 3131, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ToolCallRepairError", + "ranges": [{ "startOffset": 3156, "endOffset": 3181, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ToolLoopAgent", + "ranges": [{ "startOffset": 3200, "endOffset": 3219, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "TypeValidationError", + "ranges": [{ "startOffset": 3244, "endOffset": 3287, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "UIMessageStreamError", + "ranges": [{ "startOffset": 3313, "endOffset": 3339, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "UI_MESSAGE_STREAM_HEADERS", + "ranges": [{ "startOffset": 3370, "endOffset": 3401, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "UnsupportedFunctionalityError", + "ranges": [{ "startOffset": 3436, "endOffset": 3489, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "UnsupportedModelVersionError", + "ranges": [{ "startOffset": 3523, "endOffset": 3557, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addToolInputExamplesMiddleware", + "ranges": [{ "startOffset": 3593, "endOffset": 3629, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "asSchema", + "ranges": [{ "startOffset": 3643, "endOffset": 3681, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "assistantModelMessageSchema", + "ranges": [{ "startOffset": 3714, "endOffset": 3747, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "bindTelemetryIntegration", + "ranges": [{ "startOffset": 3777, "endOffset": 3807, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "callCompletionApi", + "ranges": [{ "startOffset": 3830, "endOffset": 3853, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "consumeStream", + "ranges": [{ "startOffset": 3872, "endOffset": 3891, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "convertFileListToFileUIParts", + "ranges": [{ "startOffset": 3925, "endOffset": 3959, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "convertToModelMessages", + "ranges": [{ "startOffset": 3987, "endOffset": 4015, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cosineSimilarity", + "ranges": [{ "startOffset": 4037, "endOffset": 4059, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createAgentUIStream", + "ranges": [{ "startOffset": 4084, "endOffset": 4109, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createAgentUIStreamResponse", + "ranges": [{ "startOffset": 4142, "endOffset": 4175, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createDownload", + "ranges": [{ "startOffset": 4195, "endOffset": 4215, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createGateway", + "ranges": [{ "startOffset": 4234, "endOffset": 4269, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createIdGenerator", + "ranges": [{ "startOffset": 4292, "endOffset": 4339, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createProviderRegistry", + "ranges": [{ "startOffset": 4367, "endOffset": 4395, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createTextStreamResponse", + "ranges": [{ "startOffset": 4425, "endOffset": 4455, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createUIMessageStream", + "ranges": [{ "startOffset": 4482, "endOffset": 4509, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createUIMessageStreamResponse", + "ranges": [{ "startOffset": 4544, "endOffset": 4579, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "customProvider", + "ranges": [{ "startOffset": 4599, "endOffset": 4619, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "defaultEmbeddingSettingsMiddleware", + "ranges": [{ "startOffset": 4659, "endOffset": 4699, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "defaultSettingsMiddleware", + "ranges": [{ "startOffset": 4730, "endOffset": 4761, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "dynamicTool", + "ranges": [{ "startOffset": 4778, "endOffset": 4819, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "embed", + "ranges": [{ "startOffset": 4830, "endOffset": 4841, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "embedMany", + "ranges": [{ "startOffset": 4856, "endOffset": 4871, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "experimental_createProviderRegistry", + "ranges": [{ "startOffset": 4912, "endOffset": 4953, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "experimental_customProvider", + "ranges": [{ "startOffset": 4986, "endOffset": 5019, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "experimental_generateImage", + "ranges": [{ "startOffset": 5051, "endOffset": 5083, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "experimental_generateSpeech", + "ranges": [{ "startOffset": 5116, "endOffset": 5136, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "experimental_generateVideo", + "ranges": [{ "startOffset": 5168, "endOffset": 5200, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "experimental_transcribe", + "ranges": [{ "startOffset": 5229, "endOffset": 5245, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "extractJsonMiddleware", + "ranges": [{ "startOffset": 5272, "endOffset": 5299, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "extractReasoningMiddleware", + "ranges": [{ "startOffset": 5331, "endOffset": 5363, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "gateway", + "ranges": [{ "startOffset": 5376, "endOffset": 5405, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "generateId", + "ranges": [{ "startOffset": 5421, "endOffset": 5461, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "generateImage", + "ranges": [{ "startOffset": 5480, "endOffset": 5499, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "generateObject", + "ranges": [{ "startOffset": 5519, "endOffset": 5539, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "generateText", + "ranges": [{ "startOffset": 5557, "endOffset": 5575, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getStaticToolName", + "ranges": [{ "startOffset": 5598, "endOffset": 5621, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getTextFromDataUrl", + "ranges": [{ "startOffset": 5645, "endOffset": 5669, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getToolName", + "ranges": [{ "startOffset": 5686, "endOffset": 5703, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getToolOrDynamicToolName", + "ranges": [{ "startOffset": 5733, "endOffset": 5763, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hasToolCall", + "ranges": [{ "startOffset": 5780, "endOffset": 5797, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isDataUIPart", + "ranges": [{ "startOffset": 5815, "endOffset": 5833, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isDeepEqualData", + "ranges": [{ "startOffset": 5854, "endOffset": 5875, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isFileUIPart", + "ranges": [{ "startOffset": 5893, "endOffset": 5911, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isLoopFinished", + "ranges": [{ "startOffset": 5931, "endOffset": 5951, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isReasoningUIPart", + "ranges": [{ "startOffset": 5974, "endOffset": 5997, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isStaticToolUIPart", + "ranges": [{ "startOffset": 6021, "endOffset": 6045, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isTextUIPart", + "ranges": [{ "startOffset": 6063, "endOffset": 6081, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isToolOrDynamicToolUIPart", + "ranges": [{ "startOffset": 6112, "endOffset": 6143, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isToolUIPart", + "ranges": [{ "startOffset": 6161, "endOffset": 6179, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "jsonSchema", + "ranges": [{ "startOffset": 6195, "endOffset": 6235, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lastAssistantMessageIsCompleteWithApprovalResponses", + "ranges": [{ "startOffset": 6292, "endOffset": 6349, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lastAssistantMessageIsCompleteWithToolCalls", + "ranges": [{ "startOffset": 6398, "endOffset": 6447, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "modelMessageSchema", + "ranges": [{ "startOffset": 6471, "endOffset": 6495, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseJsonEventStream", + "ranges": [{ "startOffset": 6521, "endOffset": 6571, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parsePartialJson", + "ranges": [{ "startOffset": 6593, "endOffset": 6615, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pipeAgentUIStreamToResponse", + "ranges": [{ "startOffset": 6648, "endOffset": 6681, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pipeTextStreamToResponse", + "ranges": [{ "startOffset": 6711, "endOffset": 6741, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pipeUIMessageStreamToResponse", + "ranges": [{ "startOffset": 6776, "endOffset": 6811, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pruneMessages", + "ranges": [{ "startOffset": 6830, "endOffset": 6849, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readUIMessageStream", + "ranges": [{ "startOffset": 6874, "endOffset": 6899, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "registerTelemetryIntegration", + "ranges": [{ "startOffset": 6933, "endOffset": 6967, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "rerank", + "ranges": [{ "startOffset": 6979, "endOffset": 6991, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "safeValidateUIMessages", + "ranges": [{ "startOffset": 7019, "endOffset": 7047, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "simulateReadableStream", + "ranges": [{ "startOffset": 7075, "endOffset": 7103, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "simulateStreamingMiddleware", + "ranges": [{ "startOffset": 7136, "endOffset": 7169, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "smoothStream", + "ranges": [{ "startOffset": 7187, "endOffset": 7205, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stepCountIs", + "ranges": [{ "startOffset": 7222, "endOffset": 7239, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "streamObject", + "ranges": [{ "startOffset": 7257, "endOffset": 7275, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "streamText", + "ranges": [{ "startOffset": 7291, "endOffset": 7307, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "systemModelMessageSchema", + "ranges": [{ "startOffset": 7337, "endOffset": 7367, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "tool", + "ranges": [{ "startOffset": 7377, "endOffset": 7411, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toolModelMessageSchema", + "ranges": [{ "startOffset": 7439, "endOffset": 7467, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "uiMessageChunkSchema", + "ranges": [{ "startOffset": 7493, "endOffset": 7519, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "userModelMessageSchema", + "ranges": [{ "startOffset": 7547, "endOffset": 7575, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "validateUIMessages", + "ranges": [{ "startOffset": 7599, "endOffset": 7623, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "wrapEmbeddingModel", + "ranges": [{ "startOffset": 7647, "endOffset": 7671, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "wrapImageModel", + "ranges": [{ "startOffset": 7691, "endOffset": 7711, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "wrapLanguageModel", + "ranges": [{ "startOffset": 7734, "endOffset": 7757, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "wrapProvider", + "ranges": [{ "startOffset": 7775, "endOffset": 7793, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "zodSchema", + "ranges": [{ "startOffset": 7808, "endOffset": 7847, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "InvalidArgumentError", + "ranges": [{ "startOffset": 8473, "endOffset": 8717, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isInstance", + "ranges": [{ "startOffset": 8727, "endOffset": 8814, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "InvalidStreamPartError", + "ranges": [{ "startOffset": 9128, "endOffset": 9258, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isInstance", + "ranges": [{ "startOffset": 9268, "endOffset": 9357, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "InvalidToolApprovalError", + "ranges": [{ "startOffset": 9679, "endOffset": 9955, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isInstance", + "ranges": [{ "startOffset": 9965, "endOffset": 10054, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "InvalidToolInputError", + "ranges": [{ "startOffset": 10367, "endOffset": 10659, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isInstance", + "ranges": [{ "startOffset": 10669, "endOffset": 10758, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ToolCallNotFoundForApprovalError", + "ranges": [{ "startOffset": 11107, "endOffset": 11382, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isInstance", + "ranges": [{ "startOffset": 11392, "endOffset": 11481, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "MissingToolResultsError", + "ranges": [{ "startOffset": 11799, "endOffset": 12103, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isInstance", + "ranges": [{ "startOffset": 12113, "endOffset": 12202, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "NoImageGeneratedError", + "ranges": [{ "startOffset": 12515, "endOffset": 12699, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isInstance", + "ranges": [{ "startOffset": 12709, "endOffset": 12798, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "NoObjectGeneratedError", + "ranges": [{ "startOffset": 13114, "endOffset": 13427, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isInstance", + "ranges": [{ "startOffset": 13437, "endOffset": 13526, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "NoOutputGeneratedError", + "ranges": [{ "startOffset": 13866, "endOffset": 14009, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isInstance", + "ranges": [{ "startOffset": 14019, "endOffset": 14108, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "NoSpeechGeneratedError", + "ranges": [{ "startOffset": 14432, "endOffset": 14605, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isInstance", + "ranges": [{ "startOffset": 14615, "endOffset": 14706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "NoTranscriptGeneratedError", + "ranges": [{ "startOffset": 15044, "endOffset": 15215, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isInstance", + "ranges": [{ "startOffset": 15225, "endOffset": 15316, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "NoVideoGeneratedError", + "ranges": [{ "startOffset": 15639, "endOffset": 15825, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isInstance", + "ranges": [{ "startOffset": 15835, "endOffset": 15926, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isNoVideoGeneratedError", + "ranges": [{ "startOffset": 15990, "endOffset": 16143, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toJSON", + "ranges": [{ "startOffset": 16245, "endOffset": 16413, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "NoSuchToolError", + "ranges": [{ "startOffset": 16718, "endOffset": 17094, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isInstance", + "ranges": [{ "startOffset": 17104, "endOffset": 17195, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ToolCallRepairError", + "ranges": [{ "startOffset": 17512, "endOffset": 17766, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isInstance", + "ranges": [{ "startOffset": 17776, "endOffset": 17867, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "UnsupportedModelVersionError", + "ranges": [{ "startOffset": 18072, "endOffset": 18477, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "UIMessageStreamError", + "ranges": [{ "startOffset": 18780, "endOffset": 18965, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isInstance", + "ranges": [{ "startOffset": 18975, "endOffset": 19066, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "InvalidDataContentError", + "ranges": [{ "startOffset": 19396, "endOffset": 19667, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isInstance", + "ranges": [{ "startOffset": 19677, "endOffset": 19768, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "InvalidMessageRoleError", + "ranges": [{ "startOffset": 20098, "endOffset": 20319, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isInstance", + "ranges": [{ "startOffset": 20329, "endOffset": 20420, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "MessageConversionError", + "ranges": [{ "startOffset": 20746, "endOffset": 20908, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isInstance", + "ranges": [{ "startOffset": 20918, "endOffset": 21009, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "RetryError", + "ranges": [{ "startOffset": 21382, "endOffset": 21603, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isInstance", + "ranges": [{ "startOffset": 21613, "endOffset": 21704, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "asArray", + "ranges": [{ "startOffset": 21750, "endOffset": 21850, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "notify", + "ranges": [{ "startOffset": 21874, "endOffset": 22087, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "formatWarning", + "ranges": [{ "startOffset": 22119, "endOffset": 22877, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "logWarnings", + "ranges": [{ "startOffset": 23058, "endOffset": 23585, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "logV2CompatibilityWarning", + "ranges": [{ "startOffset": 23712, "endOffset": 24041, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "asEmbeddingModelV3", + "ranges": [{ "startOffset": 24081, "endOffset": 24434, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "asImageModelV3", + "ranges": [{ "startOffset": 24470, "endOffset": 24819, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "asLanguageModelV3", + "ranges": [{ "startOffset": 24858, "endOffset": 25840, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "convertV2StreamToV3", + "ranges": [{ "startOffset": 25841, "endOffset": 26355, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "convertV2FinishReasonToV3", + "ranges": [{ "startOffset": 26356, "endOffset": 26506, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "convertV2UsageToV3", + "ranges": [{ "startOffset": 26507, "endOffset": 26827, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "asSpeechModelV3", + "ranges": [{ "startOffset": 26864, "endOffset": 27214, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "asTranscriptionModelV3", + "ranges": [{ "startOffset": 27258, "endOffset": 27615, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolveLanguageModel", + "ranges": [{ "startOffset": 27647, "endOffset": 28144, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolveEmbeddingModel", + "ranges": [{ "startOffset": 28145, "endOffset": 28645, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolveTranscriptionModel", + "ranges": [{ "startOffset": 28646, "endOffset": 29223, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolveSpeechModel", + "ranges": [{ "startOffset": 29224, "endOffset": 29780, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolveImageModel", + "ranges": [{ "startOffset": 29781, "endOffset": 30269, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolveVideoModel", + "ranges": [{ "startOffset": 30270, "endOffset": 30972, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolveRerankingModel", + "ranges": [{ "startOffset": 30973, "endOffset": 31698, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getGlobalProvider", + "ranges": [{ "startOffset": 31699, "endOffset": 31837, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getTotalTimeoutMs", + "ranges": [{ "startOffset": 31870, "endOffset": 32044, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getStepTimeoutMs", + "ranges": [{ "startOffset": 32045, "endOffset": 32187, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getChunkTimeoutMs", + "ranges": [{ "startOffset": 32188, "endOffset": 32332, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stripID3", + "ranges": [{ "startOffset": 35296, "endOffset": 35564, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stripID3TagsIfPresent", + "ranges": [{ "startOffset": 35566, "endOffset": 35837, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "detectMediaType", + "ranges": [{ "startOffset": 35838, "endOffset": 36397, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "download", + "ranges": [{ "startOffset": 36675, "endOffset": 37937, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createDefaultDownloadFunction", + "ranges": [{ "startOffset": 38018, "endOffset": 38223, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "splitDataUrl", + "ranges": [{ "startOffset": 38441, "endOffset": 38729, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "import_v4.z.union.import_v4.z.custom.message", + "ranges": [{ "startOffset": 39010, "endOffset": 39157, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "convertToLanguageModelV3DataContent", + "ranges": [{ "startOffset": 39203, "endOffset": 40100, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "convertDataContentToBase64String", + "ranges": [{ "startOffset": 40101, "endOffset": 40424, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "convertDataContentToUint8Array", + "ranges": [{ "startOffset": 40425, "endOffset": 41004, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "convertToLanguageModelPrompt", + "ranges": [{ "startOffset": 41056, "endOffset": 44479, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "convertToLanguageModelMessage", + "ranges": [{ "startOffset": 44480, "endOffset": 48567, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "downloadAssets", + "ranges": [{ "startOffset": 48568, "endOffset": 49839, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "convertPartToLanguageModelPart", + "ranges": [{ "startOffset": 49840, "endOffset": 51535, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mapToolResultOutput", + "ranges": [{ "startOffset": 51536, "endOffset": 52070, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createToolModelOutput", + "ranges": [{ "startOffset": 52167, "endOffset": 52741, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toJSONValue", + "ranges": [{ "startOffset": 52742, "endOffset": 52815, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "prepareCallSettings", + "ranges": [{ "startOffset": 52856, "endOffset": 55004, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isNonEmptyObject", + "ranges": [{ "startOffset": 55153, "endOffset": 55252, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "prepareToolsAndToolChoice", + "ranges": [{ "startOffset": 55301, "endOffset": 56843, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 57274, "endOffset": 57528, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "standardizePrompt", + "ranges": [{ "startOffset": 64285, "endOffset": 66167, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "wrapGatewayError", + "ranges": [{ "startOffset": 66308, "endOffset": 67192, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "assembleOperationName", + "ranges": [{ "startOffset": 67238, "endOffset": 67732, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getBaseTelemetryAttributes", + "ranges": [{ "startOffset": 67784, "endOffset": 68930, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "startSpan", + "ranges": [{ "startOffset": 69065, "endOffset": 69103, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "startActiveSpan", + "ranges": [{ "startOffset": 69107, "endOffset": 69373, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "spanContext", + "ranges": [{ "startOffset": 69396, "endOffset": 69443, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setAttribute", + "ranges": [{ "startOffset": 69447, "endOffset": 69484, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setAttributes", + "ranges": [{ "startOffset": 69488, "endOffset": 69526, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addEvent", + "ranges": [{ "startOffset": 69530, "endOffset": 69563, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addLink", + "ranges": [{ "startOffset": 69567, "endOffset": 69599, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addLinks", + "ranges": [{ "startOffset": 69603, "endOffset": 69636, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setStatus", + "ranges": [{ "startOffset": 69640, "endOffset": 69674, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "updateName", + "ranges": [{ "startOffset": 69678, "endOffset": 69713, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "end", + "ranges": [{ "startOffset": 69717, "endOffset": 69745, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isRecording", + "ranges": [{ "startOffset": 69749, "endOffset": 69786, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "recordException", + "ranges": [{ "startOffset": 69790, "endOffset": 69830, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getTracer", + "ranges": [{ "startOffset": 69938, "endOffset": 70129, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "recordSpan", + "ranges": [{ "startOffset": 70212, "endOffset": 70808, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "recordErrorOnSpan", + "ranges": [{ "startOffset": 70809, "endOffset": 71181, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "selectTelemetryAttributes", + "ranges": [{ "startOffset": 71231, "endOffset": 72275, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stringifyForTelemetry", + "ranges": [{ "startOffset": 72321, "endOffset": 72735, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "registerTelemetryIntegration", + "ranges": [{ "startOffset": 72788, "endOffset": 73010, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getGlobalTelemetryIntegrations", + "ranges": [{ "startOffset": 73011, "endOffset": 73148, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "bindTelemetryIntegration", + "ranges": [{ "startOffset": 73203, "endOffset": 73844, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getGlobalTelemetryIntegration", + "ranges": [{ "startOffset": 73845, "endOffset": 75077, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "asLanguageModelUsage", + "ranges": [{ "startOffset": 75101, "endOffset": 75780, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createNullLanguageModelUsage", + "ranges": [{ "startOffset": 75781, "endOffset": 76144, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addLanguageModelUsage", + "ranges": [{ "startOffset": 76145, "endOffset": 77770, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addTokenCounts", + "ranges": [{ "startOffset": 77771, "endOffset": 77970, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addImageModelUsage", + "ranges": [{ "startOffset": 77971, "endOffset": 78255, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mergeObjects", + "ranges": [{ "startOffset": 78286, "endOffset": 79417, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getRetryDelayInMs", + "ranges": [{ "startOffset": 79582, "endOffset": 80377, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "retryWithExponentialBackoffRespectingRetryHeaders", + "ranges": [{ "startOffset": 80434, "endOffset": 80652, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_retryWithExponentialBackoff", + "ranges": [{ "startOffset": 80654, "endOffset": 82150, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "prepareRetries", + "ranges": [{ "startOffset": 82183, "endOffset": 82902, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "collectToolApprovals", + "ranges": [{ "startOffset": 82951, "endOffset": 85204, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "now", + "ranges": [{ "startOffset": 85333, "endOffset": 85502, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "executeToolCall", + "ranges": [{ "startOffset": 85546, "endOffset": 88922, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "extractReasoningContent", + "ranges": [{ "startOffset": 88974, "endOffset": 89194, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "extractTextContent", + "ranges": [{ "startOffset": 89241, "endOffset": 89470, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "DefaultGeneratedFile", + "ranges": [{ "startOffset": 89613, "endOffset": 89854, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get base64", + "ranges": [{ "startOffset": 89933, "endOffset": 90121, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get uint8Array", + "ranges": [{ "startOffset": 90200, "endOffset": 90400, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "DefaultGeneratedFileWithType", + "ranges": [{ "startOffset": 90478, "endOffset": 90548, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isApprovalNeeded", + "ranges": [{ "startOffset": 90596, "endOffset": 90978, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "array", + "ranges": [{ "startOffset": 91072, "endOffset": 91083, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "choice", + "ranges": [{ "startOffset": 91095, "endOffset": 91107, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "json", + "ranges": [{ "startOffset": 91117, "endOffset": 91127, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "object", + "ranges": [{ "startOffset": 91139, "endOffset": 91151, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "text", + "ranges": [{ "startOffset": 91161, "endOffset": 91171, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fixJson", + "ranges": [{ "startOffset": 91419, "endOffset": 99312, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parsePartialJson", + "ranges": [{ "startOffset": 99348, "endOffset": 99888, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "text", + "ranges": [{ "startOffset": 99932, "endOffset": 100222, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "object", + "ranges": [{ "startOffset": 100237, "endOffset": 102217, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "array", + "ranges": [{ "startOffset": 102231, "endOffset": 106380, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "choice", + "ranges": [{ "startOffset": 106395, "endOffset": 109233, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "json", + "ranges": [{ "startOffset": 109246, "endOffset": 110486, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseToolCall", + "ranges": [{ "startOffset": 110594, "endOffset": 112474, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseProviderExecutedDynamicToolCall", + "ranges": [{ "startOffset": 112475, "endOffset": 113122, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "doParseToolCall", + "ranges": [{ "startOffset": 113123, "endOffset": 114524, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "DefaultStepResult", + "ranges": [{ "startOffset": 114596, "endOffset": 115272, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get text", + "ranges": [{ "startOffset": 115275, "endOffset": 115389, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get reasoning", + "ranges": [{ "startOffset": 115392, "endOffset": 115482, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get reasoningText", + "ranges": [{ "startOffset": 115485, "endOffset": 115610, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get files", + "ranges": [{ "startOffset": 115613, "endOffset": 115719, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get sources", + "ranges": [{ "startOffset": 115722, "endOffset": 115807, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get toolCalls", + "ranges": [{ "startOffset": 115810, "endOffset": 115900, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get staticToolCalls", + "ranges": [{ "startOffset": 115903, "endOffset": 116017, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get dynamicToolCalls", + "ranges": [{ "startOffset": 116020, "endOffset": 116135, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get toolResults", + "ranges": [{ "startOffset": 116138, "endOffset": 116232, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get staticToolResults", + "ranges": [{ "startOffset": 116235, "endOffset": 116357, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get dynamicToolResults", + "ranges": [{ "startOffset": 116360, "endOffset": 116483, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stepCountIs", + "ranges": [{ "startOffset": 116527, "endOffset": 116614, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isLoopFinished", + "ranges": [{ "startOffset": 116615, "endOffset": 116666, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hasToolCall", + "ranges": [{ "startOffset": 116667, "endOffset": 116953, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isStopConditionMet", + "ranges": [{ "startOffset": 116954, "endOffset": 117134, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toResponseMessages", + "ranges": [{ "startOffset": 117181, "endOffset": 120797, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mergeAbortSignals", + "ranges": [{ "startOffset": 120834, "endOffset": 121430, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "generateText", + "ranges": [{ "startOffset": 121578, "endOffset": 149722, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "executeTools", + "ranges": [{ "startOffset": 149723, "endOffset": 150327, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "DefaultGenerateTextResult", + "ranges": [{ "startOffset": 150370, "endOffset": 150505, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get finalStep", + "ranges": [{ "startOffset": 150508, "endOffset": 150575, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get content", + "ranges": [{ "startOffset": 150578, "endOffset": 150632, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get text", + "ranges": [{ "startOffset": 150635, "endOffset": 150683, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get files", + "ranges": [{ "startOffset": 150686, "endOffset": 150736, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get reasoningText", + "ranges": [{ "startOffset": 150739, "endOffset": 150805, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get reasoning", + "ranges": [{ "startOffset": 150808, "endOffset": 150866, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get toolCalls", + "ranges": [{ "startOffset": 150869, "endOffset": 150927, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get staticToolCalls", + "ranges": [{ "startOffset": 150930, "endOffset": 151000, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get dynamicToolCalls", + "ranges": [{ "startOffset": 151003, "endOffset": 151075, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get toolResults", + "ranges": [{ "startOffset": 151078, "endOffset": 151140, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get staticToolResults", + "ranges": [{ "startOffset": 151143, "endOffset": 151217, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get dynamicToolResults", + "ranges": [{ "startOffset": 151220, "endOffset": 151296, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get sources", + "ranges": [{ "startOffset": 151299, "endOffset": 151353, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get finishReason", + "ranges": [{ "startOffset": 151356, "endOffset": 151420, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get rawFinishReason", + "ranges": [{ "startOffset": 151423, "endOffset": 151493, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get warnings", + "ranges": [{ "startOffset": 151496, "endOffset": 151552, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get providerMetadata", + "ranges": [{ "startOffset": 151555, "endOffset": 151627, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get response", + "ranges": [{ "startOffset": 151630, "endOffset": 151686, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get request", + "ranges": [{ "startOffset": 151689, "endOffset": 151743, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get usage", + "ranges": [{ "startOffset": 151746, "endOffset": 151796, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get experimental_output", + "ranges": [{ "startOffset": 151799, "endOffset": 151854, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get output", + "ranges": [{ "startOffset": 151857, "endOffset": 151980, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "asToolCalls", + "ranges": [{ "startOffset": 151984, "endOffset": 152284, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "asContent", + "ranges": [{ "startOffset": 152285, "endOffset": 155843, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "prepareHeaders", + "ranges": [{ "startOffset": 156031, "endOffset": 156329, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createTextStreamResponse", + "ranges": [{ "startOffset": 156381, "endOffset": 156705, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writeToServerResponse", + "ranges": [{ "startOffset": 156747, "endOffset": 157528, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pipeTextStreamToResponse", + "ranges": [{ "startOffset": 157581, "endOffset": 157960, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "JsonToSseTransformStream", + "ranges": [{ "startOffset": 158084, "endOffset": 158313, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createUIMessageStreamResponse", + "ranges": [{ "startOffset": 158668, "endOffset": 159165, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getResponseUIMessageId", + "ranges": [{ "startOffset": 159222, "endOffset": 159605, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 159929, "endOffset": 166212, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isDataUIMessageChunk", + "ranges": [{ "startOffset": 166216, "endOffset": 166297, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isDataUIPart", + "ranges": [{ "startOffset": 166324, "endOffset": 166395, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isTextUIPart", + "ranges": [{ "startOffset": 166396, "endOffset": 166458, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isFileUIPart", + "ranges": [{ "startOffset": 166459, "endOffset": 166521, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isReasoningUIPart", + "ranges": [{ "startOffset": 166522, "endOffset": 166594, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isStaticToolUIPart", + "ranges": [{ "startOffset": 166595, "endOffset": 166672, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isDynamicToolUIPart", + "ranges": [{ "startOffset": 166673, "endOffset": 166750, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isToolUIPart", + "ranges": [{ "startOffset": 166751, "endOffset": 166846, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getStaticToolName", + "ranges": [{ "startOffset": 166893, "endOffset": 166979, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getToolName", + "ranges": [{ "startOffset": 166980, "endOffset": 167088, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createStreamingUIMessageState", + "ranges": [{ "startOffset": 167173, "endOffset": 167533, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "processUIMessageStream", + "ranges": [{ "startOffset": 167534, "endOffset": 189899, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "handleUIMessageStreamFinish", + "ranges": [{ "startOffset": 189961, "endOffset": 192865, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pipeUIMessageStreamToResponse", + "ranges": [{ "startOffset": 192930, "endOffset": 193509, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createAsyncIterableStream", + "ranges": [{ "startOffset": 193548, "endOffset": 195303, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "consumeStream", + "ranges": [{ "startOffset": 195335, "endOffset": 195648, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createResolvablePromise", + "ranges": [{ "startOffset": 195691, "endOffset": 195912, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createStitchableStream", + "ranges": [{ "startOffset": 195954, "endOffset": 198294, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "runToolsTransformation", + "ranges": [{ "startOffset": 198410, "endOffset": 206013, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "streamText", + "ranges": [{ "startOffset": 206160, "endOffset": 208532, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createOutputTransformStream", + "ranges": [{ "startOffset": 208533, "endOffset": 210576, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "DefaultStreamTextResult", + "ranges": [{ "startOffset": 210617, "endOffset": 256311, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get steps", + "ranges": [{ "startOffset": 256314, "endOffset": 256389, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get finalStep", + "ranges": [{ "startOffset": 256392, "endOffset": 256477, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get content", + "ranges": [{ "startOffset": 256480, "endOffset": 256555, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get warnings", + "ranges": [{ "startOffset": 256558, "endOffset": 256635, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get providerMetadata", + "ranges": [{ "startOffset": 256638, "endOffset": 256731, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get text", + "ranges": [{ "startOffset": 256734, "endOffset": 256803, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get reasoningText", + "ranges": [{ "startOffset": 256806, "endOffset": 256893, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get reasoning", + "ranges": [{ "startOffset": 256896, "endOffset": 256975, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get sources", + "ranges": [{ "startOffset": 256978, "endOffset": 257053, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get files", + "ranges": [{ "startOffset": 257056, "endOffset": 257127, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get toolCalls", + "ranges": [{ "startOffset": 257130, "endOffset": 257209, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get staticToolCalls", + "ranges": [{ "startOffset": 257212, "endOffset": 257303, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get dynamicToolCalls", + "ranges": [{ "startOffset": 257306, "endOffset": 257399, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get toolResults", + "ranges": [{ "startOffset": 257402, "endOffset": 257485, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get staticToolResults", + "ranges": [{ "startOffset": 257488, "endOffset": 257583, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get dynamicToolResults", + "ranges": [{ "startOffset": 257586, "endOffset": 257683, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get usage", + "ranges": [{ "startOffset": 257686, "endOffset": 257757, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get request", + "ranges": [{ "startOffset": 257760, "endOffset": 257835, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get response", + "ranges": [{ "startOffset": 257838, "endOffset": 257915, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get totalUsage", + "ranges": [{ "startOffset": 257918, "endOffset": 258003, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get finishReason", + "ranges": [{ "startOffset": 258006, "endOffset": 258095, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get rawFinishReason", + "ranges": [{ "startOffset": 258098, "endOffset": 258193, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "teeStream", + "ranges": [{ "startOffset": 258555, "endOffset": 258677, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get textStream", + "ranges": [{ "startOffset": 258680, "endOffset": 258993, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get fullStream", + "ranges": [{ "startOffset": 258996, "endOffset": 259242, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "consumeStream", + "ranges": [{ "startOffset": 259245, "endOffset": 259566, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get experimental_partialOutputStream", + "ranges": [{ "startOffset": 259569, "endOffset": 259650, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get partialOutputStream", + "ranges": [{ "startOffset": 259653, "endOffset": 259983, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get elementStream", + "ranges": [{ "startOffset": 259986, "endOffset": 260475, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get output", + "ranges": [{ "startOffset": 260478, "endOffset": 260848, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toUIMessageStream", + "ranges": [{ "startOffset": 260851, "endOffset": 270978, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pipeUIMessageStreamToResponse", + "ranges": [{ "startOffset": 270981, "endOffset": 271528, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pipeTextStreamToResponse", + "ranges": [{ "startOffset": 271531, "endOffset": 271681, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toUIMessageStreamResponse", + "ranges": [{ "startOffset": 271684, "endOffset": 272208, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toTextStreamResponse", + "ranges": [{ "startOffset": 272211, "endOffset": 272338, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ToolLoopAgent", + "ranges": [{ "startOffset": 272405, "endOffset": 272493, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get id", + "ranges": [{ "startOffset": 272534, "endOffset": 272577, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get tools", + "ranges": [{ "startOffset": 272631, "endOffset": 272680, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "prepareCall", + "ranges": [{ "startOffset": 272683, "endOffset": 273378, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mergeOnStepFinishCallbacks", + "ranges": [{ "startOffset": 273381, "endOffset": 273753, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "generate", + "ranges": [{ "startOffset": 273825, "endOffset": 274091, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stream", + "ranges": [{ "startOffset": 274157, "endOffset": 274477, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createUIMessageStream", + "ranges": [{ "startOffset": 274600, "endOffset": 276513, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readUIMessageStream", + "ranges": [{ "startOffset": 276566, "endOffset": 277737, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "convertToModelMessages", + "ranges": [{ "startOffset": 277843, "endOffset": 287438, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 287694, "endOffset": 300572, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "safeValidateUIMessages", + "ranges": [{ "startOffset": 300576, "endOffset": 304627, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "validateUIMessages", + "ranges": [{ "startOffset": 304628, "endOffset": 304915, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createAgentUIStream", + "ranges": [{ "startOffset": 304956, "endOffset": 305784, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createAgentUIStreamResponse", + "ranges": [{ "startOffset": 305834, "endOffset": 306110, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pipeAgentUIStreamToResponse", + "ranges": [{ "startOffset": 306161, "endOffset": 306456, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "embed", + "ranges": [{ "startOffset": 306545, "endOffset": 310025, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "DefaultEmbedResult", + "ranges": [{ "startOffset": 310061, "endOffset": 310321, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "splitArray", + "ranges": [{ "startOffset": 310446, "endOffset": 310719, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "embedMany", + "ranges": [{ "startOffset": 310748, "endOffset": 318764, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "DefaultEmbedManyResult", + "ranges": [{ "startOffset": 318804, "endOffset": 319070, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "generateImage", + "ranges": [{ "startOffset": 319180, "endOffset": 322767, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "DefaultGenerateImageResult", + "ranges": [{ "startOffset": 322811, "endOffset": 323035, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get image", + "ranges": [{ "startOffset": 323038, "endOffset": 323082, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "invokeModelMaxImagesPerCall", + "ranges": [{ "startOffset": 323086, "endOffset": 323331, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "normalizePrompt", + "ranges": [{ "startOffset": 323332, "endOffset": 323616, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toImageModelV3File", + "ranges": [{ "startOffset": 323617, "endOffset": 324574, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "jsonSchema", + "ranges": [{ "startOffset": 324990, "endOffset": 325008, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "validatePartialResult", + "ranges": [{ "startOffset": 325012, "endOffset": 325135, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "validateFinalResult", + "ranges": [{ "startOffset": 325139, "endOffset": 325539, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createElementStream", + "ranges": [{ "startOffset": 325543, "endOffset": 325699, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "objectOutputStrategy", + "ranges": [{ "startOffset": 325730, "endOffset": 326318, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "arrayOutputStrategy", + "ranges": [{ "startOffset": 326346, "endOffset": 330192, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "enumOutputStrategy", + "ranges": [{ "startOffset": 330219, "endOffset": 332603, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getOutputStrategy", + "ranges": [{ "startOffset": 332605, "endOffset": 333144, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseAndValidateObjectResult", + "ranges": [{ "startOffset": 333323, "endOffset": 334346, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseAndValidateObjectResultWithRepair", + "ranges": [{ "startOffset": 334347, "endOffset": 335077, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "validateObjectGenerationInput", + "ranges": [{ "startOffset": 335138, "endOffset": 338413, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "generateObject", + "ranges": [{ "startOffset": 338562, "endOffset": 347672, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "DefaultGenerateObjectResult", + "ranges": [{ "startOffset": 347717, "endOffset": 348061, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toJsonResponse", + "ranges": [{ "startOffset": 348064, "endOffset": 348385, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cosineSimilarity", + "ranges": [{ "startOffset": 348529, "endOffset": 349336, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createDownload", + "ranges": [{ "startOffset": 349378, "endOffset": 349536, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 349422, "endOffset": 349533, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getTextFromDataUrl", + "ranges": [{ "startOffset": 349562, "endOffset": 349935, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isDeepEqualData", + "ranges": [{ "startOffset": 349971, "endOffset": 350872, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "SerialJobExecutor", + "ranges": [{ "startOffset": 350943, "endOffset": 351014, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "processQueue", + "ranges": [{ "startOffset": 351017, "endOffset": 351250, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "run", + "ranges": [{ "startOffset": 351253, "endOffset": 351526, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "simulateReadableStream", + "ranges": [{ "startOffset": 351636, "endOffset": 352165, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "streamObject", + "ranges": [{ "startOffset": 352312, "endOffset": 353690, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "DefaultStreamObjectResult", + "ranges": [{ "startOffset": 353733, "endOffset": 367914, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get object", + "ranges": [{ "startOffset": 367917, "endOffset": 367968, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get usage", + "ranges": [{ "startOffset": 367971, "endOffset": 368020, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get providerMetadata", + "ranges": [{ "startOffset": 368023, "endOffset": 368094, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get warnings", + "ranges": [{ "startOffset": 368097, "endOffset": 368152, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get request", + "ranges": [{ "startOffset": 368155, "endOffset": 368208, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get response", + "ranges": [{ "startOffset": 368211, "endOffset": 368266, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get finishReason", + "ranges": [{ "startOffset": 368269, "endOffset": 368332, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get partialObjectStream", + "ranges": [{ "startOffset": 368335, "endOffset": 368980, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get elementStream", + "ranges": [{ "startOffset": 368983, "endOffset": 369077, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get textStream", + "ranges": [{ "startOffset": 369080, "endOffset": 369719, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get fullStream", + "ranges": [{ "startOffset": 369722, "endOffset": 369799, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pipeTextStreamToResponse", + "ranges": [{ "startOffset": 369802, "endOffset": 369952, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toTextStreamResponse", + "ranges": [{ "startOffset": 369955, "endOffset": 370082, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "DefaultGeneratedAudioFile", + "ranges": [{ "startOffset": 370313, "endOffset": 370789, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "generateSpeech", + "ranges": [{ "startOffset": 370836, "endOffset": 372307, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "DefaultSpeechResult", + "ranges": [{ "startOffset": 372344, "endOffset": 372577, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pruneMessages", + "ranges": [{ "startOffset": 372621, "endOffset": 376022, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "smoothStream", + "ranges": [{ "startOffset": 376242, "endOffset": 379238, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "experimental_generateVideo", + "ranges": [{ "startOffset": 379385, "endOffset": 383823, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "normalizePrompt2", + "ranges": [{ "startOffset": 383824, "endOffset": 385380, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "invokeModelMaxVideosPerCall", + "ranges": [{ "startOffset": 385381, "endOffset": 385594, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "defaultEmbeddingSettingsMiddleware", + "ranges": [{ "startOffset": 385655, "endOffset": 385862, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "defaultSettingsMiddleware", + "ranges": [{ "startOffset": 385913, "endOffset": 386111, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "defaultTransform", + "ranges": [{ "startOffset": 386158, "endOffset": 386278, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "extractJsonMiddleware", + "ranges": [{ "startOffset": 386279, "endOffset": 390940, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getPotentialStartIndex", + "ranges": [{ "startOffset": 390983, "endOffset": 391373, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "extractReasoningMiddleware", + "ranges": [{ "startOffset": 391425, "endOffset": 397652, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "simulateStreamingMiddleware", + "ranges": [{ "startOffset": 397705, "endOffset": 399791, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "defaultFormatExample", + "ranges": [{ "startOffset": 399849, "endOffset": 399931, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addToolInputExamplesMiddleware", + "ranges": [{ "startOffset": 399932, "endOffset": 401029, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "wrapLanguageModel", + "ranges": [{ "startOffset": 401096, "endOffset": 401346, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "doWrap", + "ranges": [{ "startOffset": 401361, "endOffset": 402985, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "wrapEmbeddingModel", + "ranges": [{ "startOffset": 403055, "endOffset": 403306, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "doWrap2", + "ranges": [{ "startOffset": 403322, "endOffset": 404656, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "wrapImageModel", + "ranges": [{ "startOffset": 404718, "endOffset": 404969, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "doWrap3", + "ranges": [{ "startOffset": 404985, "endOffset": 406264, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "asProviderV3", + "ranges": [{ "startOffset": 406298, "endOffset": 407110, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "wrapProvider", + "ranges": [{ "startOffset": 407147, "endOffset": 407906, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "customProvider", + "ranges": [{ "startOffset": 407996, "endOffset": 410947, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "NoSuchProviderError", + "ranges": [{ "startOffset": 411303, "endOffset": 411665, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isInstance", + "ranges": [{ "startOffset": 411675, "endOffset": 411766, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createProviderRegistry", + "ranges": [{ "startOffset": 411878, "endOffset": 412259, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "DefaultProviderRegistry", + "ranges": [{ "startOffset": 412366, "endOffset": 412630, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "registerProvider", + "ranges": [{ "startOffset": 412633, "endOffset": 412718, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getProvider", + "ranges": [{ "startOffset": 412721, "endOffset": 413017, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "splitId", + "ranges": [{ "startOffset": 413020, "endOffset": 413425, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "languageModel", + "ranges": [{ "startOffset": 413428, "endOffset": 413999, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "embeddingModel", + "ranges": [{ "startOffset": 414002, "endOffset": 414448, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "imageModel", + "ranges": [{ "startOffset": 414451, "endOffset": 415006, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transcriptionModel", + "ranges": [{ "startOffset": 415009, "endOffset": 415475, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "speechModel", + "ranges": [{ "startOffset": 415478, "endOffset": 415887, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "rerankingModel", + "ranges": [{ "startOffset": 415890, "endOffset": 416314, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "rerank", + "ranges": [{ "startOffset": 416343, "endOffset": 420226, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "DefaultRerankResult", + "ranges": [{ "startOffset": 420263, "endOffset": 420473, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get rerankedDocuments", + "ranges": [{ "startOffset": 420476, "endOffset": 420565, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transcribe", + "ranges": [{ "startOffset": 420708, "endOffset": 422297, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "DefaultTranscriptionResult", + "ranges": [{ "startOffset": 422341, "endOffset": 422704, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "processTextStream", + "ranges": [{ "startOffset": 422841, "endOffset": 423113, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getOriginalFetch", + "ranges": [{ "startOffset": 423171, "endOffset": 423182, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "callCompletionApi", + "ranges": [{ "startOffset": 423184, "endOffset": 426009, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "convertFileListToFileUIParts", + "ranges": [{ "startOffset": 426143, "endOffset": 426988, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "HttpChatTransport", + "ranges": [{ "startOffset": 427224, "endOffset": 427671, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "sendMessages", + "ranges": [{ "startOffset": 427674, "endOffset": 429940, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "reconnectToStream", + "ranges": [{ "startOffset": 429943, "endOffset": 431748, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "DefaultChatTransport", + "ranges": [{ "startOffset": 431852, "endOffset": 431903, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "processResponseStream", + "ranges": [{ "startOffset": 431906, "endOffset": 432290, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "AbstractChat", + "ranges": [{ "startOffset": 432342, "endOffset": 439399, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get status", + "ranges": [{ "startOffset": 439841, "endOffset": 439889, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setStatus", + "ranges": [{ "startOffset": 439892, "endOffset": 440044, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get error", + "ranges": [{ "startOffset": 440047, "endOffset": 440093, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get messages", + "ranges": [{ "startOffset": 440096, "endOffset": 440148, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get lastMessage", + "ranges": [{ "startOffset": 440151, "endOffset": 440238, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set messages", + "ranges": [{ "startOffset": 440241, "endOffset": 440305, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "shouldSendAutomatically", + "ranges": [{ "startOffset": 440308, "endOffset": 440614, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "makeRequest", + "ranges": [{ "startOffset": 440617, "endOffset": 444763, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "DirectChatTransport", + "ranges": [{ "startOffset": 444839, "endOffset": 445032, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "sendMessages", + "ranges": [{ "startOffset": 445035, "endOffset": 445564, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "reconnectToStream", + "ranges": [{ "startOffset": 445742, "endOffset": 445798, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lastAssistantMessageIsCompleteWithApprovalResponses", + "ranges": [{ "startOffset": 445875, "endOffset": 446718, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lastAssistantMessageIsCompleteWithToolCalls", + "ranges": [{ "startOffset": 446784, "endOffset": 447459, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformTextToUiMessageStream", + "ranges": [{ "startOffset": 447510, "endOffset": 448169, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "TextStreamChatTransport", + "ranges": [{ "startOffset": 448277, "endOffset": 448328, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "processResponseStream", + "ranges": [{ "startOffset": 448331, "endOffset": 448476, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1420", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@ai-sdk/gateway/dist/index.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 63187, "count": 1 }, + { "startOffset": 56235, "endOffset": 56249, "count": 0 }, + { "startOffset": 62891, "endOffset": 63152, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 228, "endOffset": 342, "count": 1 }, + { "startOffset": 276, "endOffset": 340, "count": 10 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 362, "endOffset": 708, "count": 1 }, + { "startOffset": 431, "endOffset": 460, "count": 0 }, + { "startOffset": 515, "endOffset": 689, "count": 10 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 600, "endOffset": 615, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 729, "endOffset": 800, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "GatewayAuthenticationError", + "ranges": [{ "startOffset": 899, "endOffset": 931, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "GatewayError", + "ranges": [{ "startOffset": 949, "endOffset": 967, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "GatewayInternalServerError", + "ranges": [{ "startOffset": 999, "endOffset": 1031, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "GatewayInvalidRequestError", + "ranges": [{ "startOffset": 1063, "endOffset": 1095, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "GatewayModelNotFoundError", + "ranges": [{ "startOffset": 1126, "endOffset": 1157, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "GatewayRateLimitError", + "ranges": [{ "startOffset": 1184, "endOffset": 1211, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "GatewayResponseError", + "ranges": [{ "startOffset": 1237, "endOffset": 1263, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createGateway", + "ranges": [{ "startOffset": 1282, "endOffset": 1309, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createGatewayProvider", + "ranges": [{ "startOffset": 1336, "endOffset": 1363, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "gateway", + "ranges": [{ "startOffset": 1376, "endOffset": 1389, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_GatewayError", + "ranges": [{ "startOffset": 1892, "endOffset": 2164, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isInstance", + "ranges": [{ "startOffset": 2366, "endOffset": 2432, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hasMarker", + "ranges": [{ "startOffset": 2442, "endOffset": 2565, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_GatewayAuthenticationError", + "ranges": [{ "startOffset": 2875, "endOffset": 3160, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isInstance", + "ranges": [{ "startOffset": 3170, "endOffset": 3255, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createContextualError", + "ranges": [{ "startOffset": 3343, "endOffset": 4623, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "GatewayInvalidRequestError", + "ranges": [{ "startOffset": 4908, "endOffset": 5189, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isInstance", + "ranges": [{ "startOffset": 5199, "endOffset": 5284, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "GatewayRateLimitError", + "ranges": [{ "startOffset": 5554, "endOffset": 5837, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isInstance", + "ranges": [{ "startOffset": 5847, "endOffset": 5932, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6280, "endOffset": 6395, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "GatewayModelNotFoundError", + "ranges": [{ "startOffset": 6504, "endOffset": 6820, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isInstance", + "ranges": [{ "startOffset": 6830, "endOffset": 6915, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "GatewayInternalServerError", + "ranges": [{ "startOffset": 7200, "endOffset": 7487, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isInstance", + "ranges": [{ "startOffset": 7497, "endOffset": 7582, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "GatewayResponseError", + "ranges": [{ "startOffset": 7848, "endOffset": 8245, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isInstance", + "ranges": [{ "startOffset": 8255, "endOffset": 8340, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createGatewayErrorFromResponse", + "ranges": [{ "startOffset": 8447, "endOffset": 10725, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 10801, "endOffset": 11206, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_GatewayTimeoutError", + "ranges": [{ "startOffset": 11490, "endOffset": 11765, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isInstance", + "ranges": [{ "startOffset": 11775, "endOffset": 11860, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createTimeoutError", + "ranges": [{ "startOffset": 11957, "endOffset": 12425, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isTimeoutError", + "ranges": [{ "startOffset": 12464, "endOffset": 12832, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "asGatewayError", + "ranges": [{ "startOffset": 12833, "endOffset": 13893, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "extractApiCallResponse", + "ranges": [{ "startOffset": 13938, "endOffset": 14203, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseAuthMethod", + "ranges": [{ "startOffset": 14399, "endOffset": 14652, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 14725, "endOffset": 14853, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "GatewayFetchMetadata", + "ranges": [{ "startOffset": 15187, "endOffset": 15238, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getAvailableModels", + "ranges": [{ "startOffset": 15241, "endOffset": 15951, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getCredits", + "ranges": [{ "startOffset": 15954, "endOffset": 16699, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 16788, "endOffset": 18096, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 18177, "endOffset": 18429, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "GatewaySpendReport", + "ranges": [{ "startOffset": 18600, "endOffset": 18651, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getSpendReport", + "ranges": [{ "startOffset": 18654, "endOffset": 20269, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 20354, "endOffset": 22482, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "GatewayGenerationInfoFetcher", + "ranges": [{ "startOffset": 22666, "endOffset": 22717, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getGenerationInfo", + "ranges": [{ "startOffset": 22720, "endOffset": 23524, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 23612, "endOffset": 25692, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "GatewayLanguageModel", + "ranges": [{ "startOffset": 25867, "endOffset": 26037, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get provider", + "ranges": [{ "startOffset": 26040, "endOffset": 26093, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getArgs", + "ranges": [{ "startOffset": 26096, "endOffset": 26300, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "doGenerate", + "ranges": [{ "startOffset": 26303, "endOffset": 27662, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "doStream", + "ranges": [{ "startOffset": 27665, "endOffset": 29833, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isFilePart", + "ranges": [{ "startOffset": 29836, "endOffset": 29945, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "maybeEncodeFileParts", + "ranges": [{ "startOffset": 30191, "endOffset": 30769, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getUrl", + "ranges": [{ "startOffset": 30772, "endOffset": 30838, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getModelConfigHeaders", + "ranges": [{ "startOffset": 30841, "endOffset": 31056, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "GatewayEmbeddingModel", + "ranges": [{ "startOffset": 31233, "endOffset": 31436, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get provider", + "ranges": [{ "startOffset": 31439, "endOffset": 31492, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "doEmbed", + "ranges": [{ "startOffset": 31495, "endOffset": 33034, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getUrl", + "ranges": [{ "startOffset": 33037, "endOffset": 33104, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getModelConfigHeaders", + "ranges": [{ "startOffset": 33107, "endOffset": 33245, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 33328, "endOffset": 33715, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "GatewayImageModel", + "ranges": [{ "startOffset": 33884, "endOffset": 34139, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get provider", + "ranges": [{ "startOffset": 34142, "endOffset": 34195, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "doGenerate", + "ranges": [{ "startOffset": 34198, "endOffset": 36540, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getUrl", + "ranges": [{ "startOffset": 36543, "endOffset": 36606, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getModelConfigHeaders", + "ranges": [{ "startOffset": 36609, "endOffset": 36743, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "maybeEncodeImageFile", + "ranges": [{ "startOffset": 36747, "endOffset": 36982, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "GatewayVideoModel", + "ranges": [{ "startOffset": 38433, "endOffset": 38688, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get provider", + "ranges": [{ "startOffset": 38691, "endOffset": 38744, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "doGenerate", + "ranges": [{ "startOffset": 38747, "endOffset": 42766, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getUrl", + "ranges": [{ "startOffset": 42769, "endOffset": 42832, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getModelConfigHeaders", + "ranges": [{ "startOffset": 42835, "endOffset": 42969, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "maybeEncodeVideoFile", + "ranges": [{ "startOffset": 42973, "endOffset": 43209, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "GatewayRerankingModel", + "ranges": [{ "startOffset": 45027, "endOffset": 45153, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get provider", + "ranges": [{ "startOffset": 45156, "endOffset": 45209, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "doRerank", + "ranges": [{ "startOffset": 45212, "endOffset": 46761, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getUrl", + "ranges": [{ "startOffset": 46764, "endOffset": 46831, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getModelConfigHeaders", + "ranges": [{ "startOffset": 46834, "endOffset": 46972, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 47056, "endOffset": 47467, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 47676, "endOffset": 49817, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 49897, "endOffset": 50781, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parallelSearch", + "ranges": [{ "startOffset": 51033, "endOffset": 51083, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 51295, "endOffset": 53907, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 53989, "endOffset": 54827, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "perplexitySearch", + "ranges": [{ "startOffset": 55089, "endOffset": 55141, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getVercelRequestId", + "ranges": [{ "startOffset": 55947, "endOffset": 56091, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createGatewayProvider", + "ranges": [ + { "startOffset": 56322, "endOffset": 62365, "count": 1 }, + { "startOffset": 56523, "endOffset": 56528, "count": 0 }, + { "startOffset": 56671, "endOffset": 56676, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "getHeaders", + "ranges": [{ "startOffset": 56738, "endOffset": 57366, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createO11yHeaders", + "ranges": [{ "startOffset": 57396, "endOffset": 58457, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createLanguageModel", + "ranges": [{ "startOffset": 58489, "endOffset": 58698, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getAvailableModels", + "ranges": [{ "startOffset": 58729, "endOffset": 59515, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getCredits", + "ranges": [{ "startOffset": 59538, "endOffset": 59823, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getSpendReport", + "ranges": [{ "startOffset": 59850, "endOffset": 60149, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getGenerationInfo", + "ranges": [{ "startOffset": 60179, "endOffset": 60491, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "provider", + "ranges": [{ "startOffset": 60512, "endOffset": 60721, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "provider.imageModel", + "ranges": [{ "startOffset": 60969, "endOffset": 61175, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createEmbeddingModel", + "ranges": [{ "startOffset": 61256, "endOffset": 61466, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "provider.videoModel", + "ranges": [{ "startOffset": 61596, "endOffset": 61802, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createRerankingModel", + "ranges": [{ "startOffset": 61835, "endOffset": 62045, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getGatewayAuthToken", + "ranges": [{ "startOffset": 62405, "endOffset": 62826, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1421", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@ai-sdk/provider-utils/dist/index.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 83849, "count": 1 }, + { "startOffset": 20646, "endOffset": 20660, "count": 0 }, + { "startOffset": 82458, "endOffset": 83814, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 300, "endOffset": 414, "count": 1 }, + { "startOffset": 348, "endOffset": 412, "count": 61 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 434, "endOffset": 780, "count": 2 }, + { "startOffset": 503, "endOffset": 532, "count": 0 }, + { "startOffset": 587, "endOffset": 761, "count": 300 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 672, "endOffset": 687, "count": 22 }], + "isBlockCoverage": true + }, + { + "functionName": "__toESM", + "ranges": [ + { "startOffset": 796, "endOffset": 1305, "count": 1 }, + { "startOffset": 877, "endOffset": 881, "count": 0 }, + { "startOffset": 1222, "endOffset": 1286, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 1326, "endOffset": 1397, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "DEFAULT_MAX_DOWNLOAD_SIZE", + "ranges": [{ "startOffset": 1495, "endOffset": 1526, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "DelayedPromise", + "ranges": [{ "startOffset": 1546, "endOffset": 1566, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "DownloadError", + "ranges": [{ "startOffset": 1585, "endOffset": 1604, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "EventSourceParserStream", + "ranges": [{ "startOffset": 1633, "endOffset": 1677, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "VERSION", + "ranges": [{ "startOffset": 1690, "endOffset": 1703, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "asSchema", + "ranges": [{ "startOffset": 1717, "endOffset": 1731, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "combineHeaders", + "ranges": [{ "startOffset": 1751, "endOffset": 1771, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "convertAsyncIteratorToReadableStream", + "ranges": [{ "startOffset": 1813, "endOffset": 1855, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "convertBase64ToUint8Array", + "ranges": [{ "startOffset": 1886, "endOffset": 1917, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "convertImageModelFileToDataUri", + "ranges": [{ "startOffset": 1953, "endOffset": 1989, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "convertToBase64", + "ranges": [{ "startOffset": 2010, "endOffset": 2031, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "convertToFormData", + "ranges": [{ "startOffset": 2054, "endOffset": 2077, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "convertUint8ArrayToBase64", + "ranges": [{ "startOffset": 2108, "endOffset": 2139, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createBinaryResponseHandler", + "ranges": [{ "startOffset": 2172, "endOffset": 2205, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createEventSourceResponseHandler", + "ranges": [{ "startOffset": 2243, "endOffset": 2281, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createIdGenerator", + "ranges": [{ "startOffset": 2304, "endOffset": 2327, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "createJsonErrorResponseHandler", + "ranges": [{ "startOffset": 2363, "endOffset": 2399, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createJsonResponseHandler", + "ranges": [{ "startOffset": 2430, "endOffset": 2461, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createProviderToolFactory", + "ranges": [{ "startOffset": 2492, "endOffset": 2523, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createProviderToolFactoryWithOutputSchema", + "ranges": [{ "startOffset": 2570, "endOffset": 2617, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "createStatusCodeErrorResponseHandler", + "ranges": [{ "startOffset": 2659, "endOffset": 2701, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createToolNameMapping", + "ranges": [{ "startOffset": 2728, "endOffset": 2755, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "delay", + "ranges": [{ "startOffset": 2766, "endOffset": 2777, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "downloadBlob", + "ranges": [{ "startOffset": 2795, "endOffset": 2813, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "dynamicTool", + "ranges": [{ "startOffset": 2830, "endOffset": 2847, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "executeTool", + "ranges": [{ "startOffset": 2864, "endOffset": 2881, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "extractResponseHeaders", + "ranges": [{ "startOffset": 2909, "endOffset": 2937, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "generateId", + "ranges": [{ "startOffset": 2953, "endOffset": 2969, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getErrorMessage", + "ranges": [{ "startOffset": 2990, "endOffset": 3011, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getFromApi", + "ranges": [{ "startOffset": 3027, "endOffset": 3043, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getRuntimeEnvironmentUserAgent", + "ranges": [{ "startOffset": 3079, "endOffset": 3115, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "injectJsonInstructionIntoMessages", + "ranges": [{ "startOffset": 3154, "endOffset": 3193, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isAbortError", + "ranges": [{ "startOffset": 3211, "endOffset": 3229, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isNonNullable", + "ranges": [{ "startOffset": 3248, "endOffset": 3267, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isParsableJson", + "ranges": [{ "startOffset": 3287, "endOffset": 3307, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isUrlSupported", + "ranges": [{ "startOffset": 3327, "endOffset": 3347, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "jsonSchema", + "ranges": [{ "startOffset": 3363, "endOffset": 3379, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lazySchema", + "ranges": [{ "startOffset": 3395, "endOffset": 3411, "count": 15 }], + "isBlockCoverage": true + }, + { + "functionName": "loadApiKey", + "ranges": [{ "startOffset": 3427, "endOffset": 3443, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "loadOptionalSetting", + "ranges": [{ "startOffset": 3468, "endOffset": 3493, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "loadSetting", + "ranges": [{ "startOffset": 3510, "endOffset": 3527, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mediaTypeToExtension", + "ranges": [{ "startOffset": 3553, "endOffset": 3579, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "normalizeHeaders", + "ranges": [{ "startOffset": 3601, "endOffset": 3623, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseJSON", + "ranges": [{ "startOffset": 3638, "endOffset": 3653, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseJsonEventStream", + "ranges": [{ "startOffset": 3679, "endOffset": 3705, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseProviderOptions", + "ranges": [{ "startOffset": 3731, "endOffset": 3757, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "postFormDataToApi", + "ranges": [{ "startOffset": 3780, "endOffset": 3803, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "postJsonToApi", + "ranges": [{ "startOffset": 3822, "endOffset": 3841, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "postToApi", + "ranges": [{ "startOffset": 3856, "endOffset": 3871, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readResponseWithSizeLimit", + "ranges": [{ "startOffset": 3902, "endOffset": 3933, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "removeUndefinedEntries", + "ranges": [{ "startOffset": 3961, "endOffset": 3989, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolve", + "ranges": [{ "startOffset": 4002, "endOffset": 4015, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "safeParseJSON", + "ranges": [{ "startOffset": 4034, "endOffset": 4053, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "safeValidateTypes", + "ranges": [{ "startOffset": 4076, "endOffset": 4099, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stripFileExtension", + "ranges": [{ "startOffset": 4123, "endOffset": 4147, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "tool", + "ranges": [{ "startOffset": 4157, "endOffset": 4167, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "validateDownloadUrl", + "ranges": [{ "startOffset": 4192, "endOffset": 4217, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "validateTypes", + "ranges": [{ "startOffset": 4236, "endOffset": 4255, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "withUserAgentSuffix", + "ranges": [{ "startOffset": 4280, "endOffset": 4305, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "withoutTrailingSlash", + "ranges": [{ "startOffset": 4331, "endOffset": 4357, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "zodSchema", + "ranges": [{ "startOffset": 4372, "endOffset": 4387, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "combineHeaders", + "ranges": [{ "startOffset": 4465, "endOffset": 4673, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "convertAsyncIteratorToReadableStream", + "ranges": [{ "startOffset": 4727, "endOffset": 5647, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createToolNameMapping", + "ranges": [{ "startOffset": 5684, "endOffset": 6731, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "delay", + "ranges": [{ "startOffset": 6749, "endOffset": 7474, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createAbortError", + "ranges": [{ "startOffset": 7475, "endOffset": 7568, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "DelayedPromise", + "ranges": [{ "startOffset": 7627, "endOffset": 7740, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get promise", + "ranges": [{ "startOffset": 7743, "endOffset": 8149, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolve", + "ranges": [{ "startOffset": 8152, "endOffset": 8333, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "reject", + "ranges": [{ "startOffset": 8336, "endOffset": 8515, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isResolved", + "ranges": [{ "startOffset": 8518, "endOffset": 8580, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isRejected", + "ranges": [{ "startOffset": 8583, "endOffset": 8645, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isPending", + "ranges": [{ "startOffset": 8648, "endOffset": 8708, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "extractResponseHeaders", + "ranges": [{ "startOffset": 8748, "endOffset": 8845, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "convertBase64ToUint8Array", + "ranges": [{ "startOffset": 8902, "endOffset": 9137, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "convertUint8ArrayToBase64", + "ranges": [{ "startOffset": 9138, "endOffset": 9336, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "convertToBase64", + "ranges": [{ "startOffset": 9337, "endOffset": 9453, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "convertImageModelFileToDataUri", + "ranges": [{ "startOffset": 9502, "endOffset": 9721, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "convertToFormData", + "ranges": [{ "startOffset": 9754, "endOffset": 10339, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "DownloadError", + "ranges": [{ "startOffset": 10622, "endOffset": 10971, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isInstance", + "ranges": [{ "startOffset": 10981, "endOffset": 11068, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readResponseWithSizeLimit", + "ranges": [{ "startOffset": 11169, "endOffset": 12460, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "validateDownloadUrl", + "ranges": [{ "startOffset": 12494, "endOffset": 13787, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isIPv4", + "ranges": [{ "startOffset": 13788, "endOffset": 14047, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isPrivateIPv4", + "ranges": [{ "startOffset": 14048, "endOffset": 14386, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isPrivateIPv6", + "ranges": [{ "startOffset": 14387, "endOffset": 15252, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "downloadBlob", + "ranges": [{ "startOffset": 15278, "endOffset": 16232, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createIdGenerator", + "ranges": [ + { "startOffset": 16332, "endOffset": 17045, "count": 5 }, + { "startOffset": 16735, "endOffset": 16762, "count": 1 }, + { "startOffset": 16762, "endOffset": 16799, "count": 4 }, + { "startOffset": 16799, "endOffset": 16989, "count": 0 }, + { "startOffset": 16989, "endOffset": 17044, "count": 4 } + ], + "isBlockCoverage": true + }, + { + "functionName": "generator", + "ranges": [{ "startOffset": 16488, "endOffset": 16711, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 16999, "endOffset": 17042, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getErrorMessage", + "ranges": [{ "startOffset": 17114, "endOffset": 17355, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isAbortError", + "ranges": [{ "startOffset": 17540, "endOffset": 17755, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isBunNetworkError", + "ranges": [{ "startOffset": 18012, "endOffset": 18238, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "handleFetchError", + "ranges": [{ "startOffset": 18239, "endOffset": 19014, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getRuntimeEnvironmentUserAgent", + "ranges": [{ "startOffset": 19061, "endOffset": 19653, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "normalizeHeaders", + "ranges": [{ "startOffset": 19683, "endOffset": 20165, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "withUserAgentSuffix", + "ranges": [{ "startOffset": 20200, "endOffset": 20596, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getOriginalFetch", + "ranges": [{ "startOffset": 20709, "endOffset": 20731, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getFromApi", + "ranges": [{ "startOffset": 20750, "endOffset": 22510, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "injectJsonInstruction", + "ranges": [{ "startOffset": 22752, "endOffset": 23262, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "injectJsonInstructionIntoMessages", + "ranges": [{ "startOffset": 23263, "endOffset": 23800, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isNonNullable", + "ranges": [{ "startOffset": 23828, "endOffset": 23885, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isUrlSupported", + "ranges": [{ "startOffset": 23914, "endOffset": 24466, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "loadApiKey", + "ranges": [{ "startOffset": 24543, "endOffset": 25675, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "loadOptionalSetting", + "ranges": [{ "startOffset": 25709, "endOffset": 26113, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "loadSetting", + "ranges": [{ "startOffset": 26190, "endOffset": 27340, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mediaTypeToExtension", + "ranges": [{ "startOffset": 27376, "endOffset": 27645, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 28104, "endOffset": 28362, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "filter", + "ranges": [{ "startOffset": 28363, "endOffset": 29141, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "secureJsonParse", + "ranges": [{ "startOffset": 29142, "endOffset": 29393, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addAdditionalPropertiesToJsonSchema", + "ranges": [{ "startOffset": 29631, "endOffset": 30674, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visit", + "ranges": [{ "startOffset": 30675, "endOffset": 30793, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getDefaultOptions", + "ranges": [{ "startOffset": 31543, "endOffset": 31666, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseAnyDef", + "ranges": [{ "startOffset": 31822, "endOffset": 31861, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseArrayDef", + "ranges": [{ "startOffset": 31957, "endOffset": 32620, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseBigintDef", + "ranges": [{ "startOffset": 32682, "endOffset": 33319, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseBooleanDef", + "ranges": [{ "startOffset": 33382, "endOffset": 33442, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseBrandedDef", + "ranges": [{ "startOffset": 33505, "endOffset": 33586, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseCatchDef", + "ranges": [{ "startOffset": 33667, "endOffset": 33730, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseDateDef", + "ranges": [{ "startOffset": 33791, "endOffset": 34370, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "integerDateParser", + "ranges": [{ "startOffset": 34395, "endOffset": 34695, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseDefaultDef", + "ranges": [{ "startOffset": 34759, "endOffset": 34892, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseEffectsDef", + "ranges": [{ "startOffset": 34955, "endOffset": 35088, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseEnumDef", + "ranges": [{ "startOffset": 35148, "endOffset": 35247, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isJsonSchema7AllOfType", + "ranges": [{ "startOffset": 35344, "endOffset": 35445, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseIntersectionDef", + "ranges": [{ "startOffset": 35447, "endOffset": 36229, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseLiteralDef", + "ranges": [{ "startOffset": 36292, "endOffset": 36658, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "emoji", + "ranges": [{ "startOffset": 37516, "endOffset": 37701, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseStringDef", + "ranges": [{ "startOffset": 39513, "endOffset": 44024, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "escapeLiteralCheckValue", + "ranges": [{ "startOffset": 44025, "endOffset": 44163, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "escapeNonAlphaNumeric", + "ranges": [{ "startOffset": 44261, "endOffset": 44481, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addFormat", + "ranges": [{ "startOffset": 44482, "endOffset": 44995, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addPattern", + "ranges": [{ "startOffset": 44996, "endOffset": 45583, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stringifyRegExpWithFlags", + "ranges": [{ "startOffset": 45584, "endOffset": 47827, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseRecordDef", + "ranges": [{ "startOffset": 47889, "endOffset": 49208, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseMapDef", + "ranges": [{ "startOffset": 49267, "endOffset": 49831, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseNativeEnumDef", + "ranges": [{ "startOffset": 49898, "endOffset": 50391, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseNeverDef", + "ranges": [{ "startOffset": 50452, "endOffset": 50513, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseNullDef", + "ranges": [{ "startOffset": 50573, "endOffset": 50633, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseUnionDef", + "ranges": [{ "startOffset": 50836, "endOffset": 52665, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "asAnyOf", + "ranges": [{ "startOffset": 52680, "endOffset": 53064, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseNullableDef", + "ranges": [{ "startOffset": 53129, "endOffset": 53647, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseNumberDef", + "ranges": [{ "startOffset": 53709, "endOffset": 54387, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseObjectDef", + "ranges": [{ "startOffset": 54449, "endOffset": 55416, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "decideAdditionalProperties", + "ranges": [{ "startOffset": 55417, "endOffset": 55968, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "safeIsOptional", + "ranges": [{ "startOffset": 55969, "endOffset": 56081, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseOptionalDef", + "ranges": [{ "startOffset": 56168, "endOffset": 56565, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parsePipelineDef", + "ranges": [{ "startOffset": 56653, "endOffset": 57131, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parsePromiseDef", + "ranges": [{ "startOffset": 57195, "endOffset": 57274, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseSetDef", + "ranges": [{ "startOffset": 57333, "endOffset": 57707, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseTupleDef", + "ranges": [{ "startOffset": 57768, "endOffset": 58652, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseUndefinedDef", + "ranges": [{ "startOffset": 58717, "endOffset": 58788, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseUnknownDef", + "ranges": [{ "startOffset": 58851, "endOffset": 58905, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseReadonlyDef", + "ranges": [{ "startOffset": 58992, "endOffset": 59055, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "selectParser", + "ranges": [{ "startOffset": 59136, "endOffset": 62365, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getRelativePath", + "ranges": [{ "startOffset": 62453, "endOffset": 62654, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseDef", + "ranges": [{ "startOffset": 62712, "endOffset": 63822, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get$ref", + "ranges": [{ "startOffset": 63837, "endOffset": 64468, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addMeta", + "ranges": [{ "startOffset": 64484, "endOffset": 64613, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getRefs", + "ranges": [{ "startOffset": 64680, "endOffset": 65342, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "zod3ToJsonSchema", + "ranges": [{ "startOffset": 65433, "endOffset": 66955, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lazySchema", + "ranges": [{ "startOffset": 67042, "endOffset": 67197, "count": 15 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 67101, "endOffset": 67194, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "jsonSchema", + "ranges": [{ "startOffset": 67198, "endOffset": 67514, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isSchema", + "ranges": [{ "startOffset": 67515, "endOffset": 67702, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "asSchema", + "ranges": [{ "startOffset": 67703, "endOffset": 67966, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "standardSchema", + "ranges": [{ "startOffset": 67967, "endOffset": 68551, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "zod3Schema", + "ranges": [{ "startOffset": 68552, "endOffset": 69167, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "zod4Schema", + "ranges": [{ "startOffset": 69168, "endOffset": 69882, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isZod4Schema", + "ranges": [{ "startOffset": 69883, "endOffset": 69951, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "zodSchema", + "ranges": [{ "startOffset": 69952, "endOffset": 70132, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "validateTypes", + "ranges": [{ "startOffset": 70159, "endOffset": 70441, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "safeValidateTypes", + "ranges": [{ "startOffset": 70442, "endOffset": 71160, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseJSON", + "ranges": [{ "startOffset": 71183, "endOffset": 71618, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "safeParseJSON", + "ranges": [{ "startOffset": 71619, "endOffset": 72088, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isParsableJson", + "ranges": [{ "startOffset": 72089, "endOffset": 72214, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseJsonEventStream", + "ranges": [{ "startOffset": 72308, "endOffset": 72714, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseProviderOptions", + "ranges": [{ "startOffset": 72802, "endOffset": 73378, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getOriginalFetch2", + "ranges": [{ "startOffset": 73479, "endOffset": 73501, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "postJsonToApi", + "ranges": [{ "startOffset": 73523, "endOffset": 73895, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "postFormDataToApi", + "ranges": [{ "startOffset": 73921, "endOffset": 74257, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "postToApi", + "ranges": [{ "startOffset": 74275, "endOffset": 76120, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "tool", + "ranges": [{ "startOffset": 76144, "endOffset": 76184, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "dynamicTool", + "ranges": [{ "startOffset": 76185, "endOffset": 76256, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createProviderToolFactory", + "ranges": [{ "startOffset": 76290, "endOffset": 76708, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createProviderToolFactoryWithOutputSchema", + "ranges": [{ "startOffset": 76709, "endOffset": 77197, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 76839, "endOffset": 77194, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "removeUndefinedEntries", + "ranges": [{ "startOffset": 77234, "endOffset": 77379, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolve", + "ranges": [{ "startOffset": 77399, "endOffset": 77527, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createJsonErrorResponseHandler", + "ranges": [{ "startOffset": 77646, "endOffset": 79100, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createEventSourceResponseHandler", + "ranges": [{ "startOffset": 79141, "endOffset": 79473, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createJsonResponseHandler", + "ranges": [{ "startOffset": 79507, "endOffset": 80166, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createBinaryResponseHandler", + "ranges": [{ "startOffset": 80202, "endOffset": 80978, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createStatusCodeErrorResponseHandler", + "ranges": [{ "startOffset": 81023, "endOffset": 81427, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stripFileExtension", + "ranges": [{ "startOffset": 81461, "endOffset": 81626, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "withoutTrailingSlash", + "ranges": [ + { "startOffset": 81661, "endOffset": 81755, "count": 1 }, + { "startOffset": 81728, "endOffset": 81752, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "isAsyncIterable", + "ranges": [{ "startOffset": 81785, "endOffset": 81891, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "executeTool", + "ranges": [{ "startOffset": 81922, "endOffset": 82317, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1422", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@ai-sdk/provider/dist/index.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 13933, "count": 1 }, + { "startOffset": 13481, "endOffset": 13898, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 228, "endOffset": 345, "count": 1 }, + { "startOffset": 277, "endOffset": 343, "count": 18 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 365, "endOffset": 711, "count": 1 }, + { "startOffset": 434, "endOffset": 463, "count": 0 }, + { "startOffset": 518, "endOffset": 692, "count": 18 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 603, "endOffset": 618, "count": 22 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 732, "endOffset": 803, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "AISDKError", + "ranges": [{ "startOffset": 882, "endOffset": 898, "count": 21 }], + "isBlockCoverage": true + }, + { + "functionName": "APICallError", + "ranges": [{ "startOffset": 916, "endOffset": 934, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "EmptyResponseBodyError", + "ranges": [{ "startOffset": 962, "endOffset": 990, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "InvalidArgumentError", + "ranges": [{ "startOffset": 1016, "endOffset": 1042, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "InvalidPromptError", + "ranges": [{ "startOffset": 1066, "endOffset": 1090, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "InvalidResponseDataError", + "ranges": [{ "startOffset": 1120, "endOffset": 1150, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "JSONParseError", + "ranges": [{ "startOffset": 1170, "endOffset": 1190, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "LoadAPIKeyError", + "ranges": [{ "startOffset": 1211, "endOffset": 1232, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "LoadSettingError", + "ranges": [{ "startOffset": 1254, "endOffset": 1276, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "NoContentGeneratedError", + "ranges": [{ "startOffset": 1305, "endOffset": 1334, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "NoSuchModelError", + "ranges": [{ "startOffset": 1356, "endOffset": 1378, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "TooManyEmbeddingValuesForCallError", + "ranges": [{ "startOffset": 1418, "endOffset": 1458, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "TypeValidationError", + "ranges": [{ "startOffset": 1483, "endOffset": 1508, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "UnsupportedFunctionalityError", + "ranges": [{ "startOffset": 1543, "endOffset": 1578, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getErrorMessage", + "ranges": [{ "startOffset": 1599, "endOffset": 1620, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isJSONArray", + "ranges": [{ "startOffset": 1637, "endOffset": 1654, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isJSONObject", + "ranges": [{ "startOffset": 1672, "endOffset": 1690, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isJSONValue", + "ranges": [{ "startOffset": 1707, "endOffset": 1724, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_AISDKError", + "ranges": [{ "startOffset": 2263, "endOffset": 2417, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isInstance", + "ranges": [{ "startOffset": 2619, "endOffset": 2691, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hasMarker", + "ranges": [{ "startOffset": 2701, "endOffset": 2936, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "APICallError", + "ranges": [{ "startOffset": 3169, "endOffset": 3825, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isInstance", + "ranges": [{ "startOffset": 3835, "endOffset": 3907, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "EmptyResponseBodyError", + "ranges": [{ "startOffset": 4197, "endOffset": 4315, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isInstance", + "ranges": [{ "startOffset": 4325, "endOffset": 4397, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getErrorMessage", + "ranges": [{ "startOffset": 4437, "endOffset": 4678, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "InvalidArgumentError", + "ranges": [{ "startOffset": 4934, "endOffset": 5091, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isInstance", + "ranges": [{ "startOffset": 5101, "endOffset": 5173, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "InvalidPromptError", + "ranges": [{ "startOffset": 5426, "endOffset": 5607, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isInstance", + "ranges": [{ "startOffset": 5617, "endOffset": 5689, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "InvalidResponseDataError", + "ranges": [{ "startOffset": 5961, "endOffset": 6140, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isInstance", + "ranges": [{ "startOffset": 6150, "endOffset": 6222, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "JSONParseError", + "ranges": [{ "startOffset": 6463, "endOffset": 6687, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isInstance", + "ranges": [{ "startOffset": 6697, "endOffset": 6769, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "LoadAPIKeyError", + "ranges": [{ "startOffset": 7038, "endOffset": 7127, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isInstance", + "ranges": [{ "startOffset": 7137, "endOffset": 7209, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "LoadSettingError", + "ranges": [{ "startOffset": 7480, "endOffset": 7569, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isInstance", + "ranges": [{ "startOffset": 7579, "endOffset": 7651, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "NoContentGeneratedError", + "ranges": [{ "startOffset": 7953, "endOffset": 8080, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isInstance", + "ranges": [{ "startOffset": 8090, "endOffset": 8163, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "NoSuchModelError", + "ranges": [{ "startOffset": 8422, "endOffset": 8671, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isInstance", + "ranges": [{ "startOffset": 8681, "endOffset": 8754, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "TooManyEmbeddingValuesForCallError", + "ranges": [{ "startOffset": 9070, "endOffset": 9563, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isInstance", + "ranges": [{ "startOffset": 9573, "endOffset": 9646, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_TypeValidationError", + "ranges": [{ "startOffset": 9934, "endOffset": 10788, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isInstance", + "ranges": [{ "startOffset": 10798, "endOffset": 10871, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "wrap", + "ranges": [{ "startOffset": 11507, "endOffset": 12074, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "UnsupportedFunctionalityError", + "ranges": [{ "startOffset": 12371, "endOffset": 12579, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isInstance", + "ranges": [{ "startOffset": 12589, "endOffset": 12662, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isJSONValue", + "ranges": [{ "startOffset": 12696, "endOffset": 13119, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isJSONArray", + "ranges": [{ "startOffset": 13120, "endOffset": 13210, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isJSONObject", + "ranges": [{ "startOffset": 13211, "endOffset": 13416, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1423", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/index.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 1057, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 88, "endOffset": 405, "count": 237 }, + { "startOffset": 232, "endOffset": 247, "count": 236 }, + { "startOffset": 248, "endOffset": 284, "count": 1 }, + { "startOffset": 264, "endOffset": 284, "count": 0 }, + { "startOffset": 287, "endOffset": 363, "count": 1 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 327, "endOffset": 354, "count": 186 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__exportStar", + "ranges": [ + { "startOffset": 541, "endOffset": 692, "count": 1 }, + { "startOffset": 585, "endOffset": 690, "count": 238 }, + { "startOffset": 605, "endOffset": 657, "count": 237 }, + { "startOffset": 659, "endOffset": 690, "count": 237 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 750, "endOffset": 831, "count": 1 }, + { "startOffset": 808, "endOffset": 828, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1424", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/classic/index.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 1464, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 88, "endOffset": 405, "count": 236 }, + { "startOffset": 232, "endOffset": 247, "count": 232 }, + { "startOffset": 248, "endOffset": 284, "count": 4 }, + { "startOffset": 264, "endOffset": 284, "count": 0 }, + { "startOffset": 287, "endOffset": 363, "count": 4 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 327, "endOffset": 354, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__exportStar", + "ranges": [ + { "startOffset": 1091, "endOffset": 1242, "count": 1 }, + { "startOffset": 1135, "endOffset": 1240, "count": 236 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1425", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/classic/external.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5444, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 88, "endOffset": 405, "count": 211 }, + { "startOffset": 232, "endOffset": 247, "count": 29 }, + { "startOffset": 248, "endOffset": 284, "count": 182 }, + { "startOffset": 264, "endOffset": 284, "count": 0 }, + { "startOffset": 287, "endOffset": 363, "count": 182 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 327, "endOffset": 354, "count": 186 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 4 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__exportStar", + "ranges": [ + { "startOffset": 1091, "endOffset": 1242, "count": 5 }, + { "startOffset": 1135, "endOffset": 1240, "count": 213 }, + { "startOffset": 1209, "endOffset": 1240, "count": 211 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 1300, "endOffset": 1381, "count": 1 }, + { "startOffset": 1352, "endOffset": 1357, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2549, "endOffset": 2598, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2671, "endOffset": 2714, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2785, "endOffset": 2826, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2898, "endOffset": 2940, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3011, "endOffset": 3052, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3123, "endOffset": 3164, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3234, "endOffset": 3274, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3346, "endOffset": 3388, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3465, "endOffset": 3512, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3590, "endOffset": 3638, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3714, "endOffset": 3760, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3837, "endOffset": 3884, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3962, "endOffset": 4010, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 4079, "endOffset": 4118, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 4188, "endOffset": 4228, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 4386, "endOffset": 4450, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 4592, "endOffset": 4652, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 4924, "endOffset": 4971, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 5046, "endOffset": 5089, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 5164, "endOffset": 5207, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 5286, "endOffset": 5333, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1426", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/core/index.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 2609, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 88, "endOffset": 405, "count": 267 }, + { "startOffset": 232, "endOffset": 247, "count": 1 }, + { "startOffset": 248, "endOffset": 284, "count": 266 }, + { "startOffset": 264, "endOffset": 284, "count": 0 }, + { "startOffset": 287, "endOffset": 363, "count": 266 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 327, "endOffset": 354, "count": 732 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__exportStar", + "ranges": [ + { "startOffset": 759, "endOffset": 910, "count": 10 }, + { "startOffset": 803, "endOffset": 908, "count": 267 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 962, "endOffset": 1242, "count": 4 }, + { "startOffset": 1021, "endOffset": 1241, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2248, "endOffset": 2312, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2469, "endOffset": 2539, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1427", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/core/core.cjs", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2745, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "$constructor", + "ranges": [ + { "startOffset": 357, "endOffset": 2029, "count": 172 }, + { "startOffset": 1250, "endOffset": 1258, "count": 2 }, + { "startOffset": 1259, "endOffset": 1268, "count": 170 } + ], + "isBlockCoverage": true + }, + { + "functionName": "init", + "ranges": [ + { "startOffset": 412, "endOffset": 1161, "count": 1354 }, + { "startOffset": 463, "endOffset": 714, "count": 236 }, + { "startOffset": 755, "endOffset": 786, "count": 297 }, + { "startOffset": 786, "endOffset": 1020, "count": 1057 }, + { "startOffset": 1020, "endOffset": 1155, "count": 0 }, + { "startOffset": 1155, "endOffset": 1160, "count": 1057 } + ], + "isBlockCoverage": true + }, + { + "functionName": "_", + "ranges": [ + { "startOffset": 1382, "endOffset": 1662, "count": 236 }, + { "startOffset": 1443, "endOffset": 1451, "count": 0 }, + { "startOffset": 1452, "endOffset": 1470, "count": 0 }, + { "startOffset": 1538, "endOffset": 1559, "count": 5 }, + { "startOffset": 1606, "endOffset": 1635, "count": 231 } + ], + "isBlockCoverage": true + }, + { + "functionName": "value", + "ranges": [{ "startOffset": 1784, "endOffset": 1949, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "$ZodAsyncError", + "ranges": [{ "startOffset": 2194, "endOffset": 2306, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "$ZodEncodeError", + "ranges": [{ "startOffset": 2392, "endOffset": 2533, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "config", + "ranges": [{ "startOffset": 2606, "endOffset": 2744, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1428", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/core/parse.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 6565, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 3 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 1801, "endOffset": 2328, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1811, "endOffset": 2328, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parseAsync", + "ranges": [{ "startOffset": 2434, "endOffset": 2942, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2444, "endOffset": 2942, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_safeParse", + "ranges": [{ "startOffset": 3067, "endOffset": 3577, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3077, "endOffset": 3577, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_safeParseAsync", + "ranges": [{ "startOffset": 3703, "endOffset": 4187, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3713, "endOffset": 4187, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_encode", + "ranges": [{ "startOffset": 4325, "endOffset": 4520, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4335, "endOffset": 4520, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_decode", + "ranges": [{ "startOffset": 4626, "endOffset": 4723, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4636, "endOffset": 4723, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_encodeAsync", + "ranges": [{ "startOffset": 4834, "endOffset": 5040, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4844, "endOffset": 5040, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_decodeAsync", + "ranges": [{ "startOffset": 5171, "endOffset": 5279, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5181, "endOffset": 5279, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_safeEncode", + "ranges": [{ "startOffset": 5409, "endOffset": 5608, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5419, "endOffset": 5608, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_safeDecode", + "ranges": [{ "startOffset": 5734, "endOffset": 5835, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5744, "endOffset": 5835, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_safeEncodeAsync", + "ranges": [{ "startOffset": 5966, "endOffset": 6176, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5976, "endOffset": 6176, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_safeDecodeAsync", + "ranges": [{ "startOffset": 6327, "endOffset": 6439, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6337, "endOffset": 6439, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1429", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/core/errors.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 7449, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "initializer", + "ranges": [{ "startOffset": 1446, "endOffset": 1882, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "flattenError", + "ranges": [{ "startOffset": 2057, "endOffset": 2502, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "formatError", + "ranges": [{ "startOffset": 2503, "endOffset": 3924, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "treeifyError", + "ranges": [{ "startOffset": 3925, "endOffset": 5800, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toDotPath", + "ranges": [{ "startOffset": 6431, "endOffset": 6998, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "prettifyError", + "ranges": [{ "startOffset": 6999, "endOffset": 7448, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1430", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/core/util.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 23197, "count": 1 }, + { "startOffset": 6756, "endOffset": 6775, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "assertEqual", + "ranges": [{ "startOffset": 2235, "endOffset": 2280, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "assertNotEqual", + "ranges": [{ "startOffset": 2281, "endOffset": 2329, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "assertIs", + "ranges": [{ "startOffset": 2330, "endOffset": 2357, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "assertNever", + "ranges": [{ "startOffset": 2358, "endOffset": 2447, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "assert", + "ranges": [{ "startOffset": 2448, "endOffset": 2470, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getEnumValues", + "ranges": [{ "startOffset": 2471, "endOffset": 2746, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "joinValues", + "ranges": [{ "startOffset": 2747, "endOffset": 2866, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "jsonStringifyReplacer", + "ranges": [{ "startOffset": 2867, "endOffset": 2997, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cached", + "ranges": [{ "startOffset": 2998, "endOffset": 3331, "count": 91 }], + "isBlockCoverage": true + }, + { + "functionName": "get value", + "ranges": [ + { "startOffset": 3068, "endOffset": 3321, "count": 1 }, + { "startOffset": 3254, "endOffset": 3320, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "nullish", + "ranges": [{ "startOffset": 3332, "endOffset": 3409, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cleanRegex", + "ranges": [{ "startOffset": 3410, "endOffset": 3602, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "floatSafeRemainder", + "ranges": [{ "startOffset": 3603, "endOffset": 4309, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "defineLazy", + "ranges": [{ "startOffset": 4351, "endOffset": 5037, "count": 503 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [ + { "startOffset": 4470, "endOffset": 4808, "count": 236 }, + { "startOffset": 4516, "endOffset": 4649, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 4818, "endOffset": 4998, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "objectClone", + "ranges": [{ "startOffset": 5038, "endOffset": 5160, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "assignProp", + "ranges": [{ "startOffset": 5161, "endOffset": 5348, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mergeDefs", + "ranges": [{ "startOffset": 5349, "endOffset": 5631, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneDef", + "ranges": [{ "startOffset": 5632, "endOffset": 5700, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getElementAtPath", + "ranges": [{ "startOffset": 5701, "endOffset": 5831, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "promiseAllObject", + "ranges": [{ "startOffset": 5832, "endOffset": 6201, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "randomString", + "ranges": [{ "startOffset": 6202, "endOffset": 6431, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "esc", + "ranges": [{ "startOffset": 6432, "endOffset": 6485, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "slugify", + "ranges": [{ "startOffset": 6486, "endOffset": 6671, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "exports.captureStackTrace", + "ranges": [{ "startOffset": 6758, "endOffset": 6775, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isObject", + "ranges": [{ "startOffset": 6778, "endOffset": 6883, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 6912, "endOffset": 7187, "count": 1 }, + { "startOffset": 7028, "endOffset": 7057, "count": 0 }, + { "startOffset": 7146, "endOffset": 7185, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "isPlainObject", + "ranges": [{ "startOffset": 7190, "endOffset": 7727, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "shallowClone", + "ranges": [{ "startOffset": 7728, "endOffset": 7870, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "numKeys", + "ranges": [{ "startOffset": 7871, "endOffset": 8073, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getParsedType", + "ranges": [{ "startOffset": 8096, "endOffset": 9498, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "escapeRegex", + "ranges": [{ "startOffset": 9707, "endOffset": 9791, "count": 37 }], + "isBlockCoverage": true + }, + { + "functionName": "clone", + "ranges": [ + { "startOffset": 9814, "endOffset": 9988, "count": 2 }, + { "startOffset": 9890, "endOffset": 9906, "count": 0 }, + { "startOffset": 9931, "endOffset": 9939, "count": 0 }, + { "startOffset": 9949, "endOffset": 9971, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "normalizeParams", + "ranges": [ + { "startOffset": 9989, "endOffset": 10519, "count": 179 }, + { "startOffset": 10078, "endOffset": 10088, "count": 174 }, + { "startOffset": 10088, "endOffset": 10133, "count": 5 }, + { "startOffset": 10133, "endOffset": 10164, "count": 0 }, + { "startOffset": 10164, "endOffset": 10188, "count": 5 }, + { "startOffset": 10204, "endOffset": 10372, "count": 1 }, + { "startOffset": 10259, "endOffset": 10327, "count": 0 }, + { "startOffset": 10372, "endOffset": 10450, "count": 5 }, + { "startOffset": 10450, "endOffset": 10498, "count": 1 }, + { "startOffset": 10498, "endOffset": 10518, "count": 4 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 10149, "endOffset": 10161, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 10477, "endOffset": 10495, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createTransparentProxy", + "ranges": [{ "startOffset": 10520, "endOffset": 11635, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stringifyPrimitive", + "ranges": [{ "startOffset": 11636, "endOffset": 11835, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "optionalKeys", + "ranges": [{ "startOffset": 11836, "endOffset": 12012, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pick", + "ranges": [{ "startOffset": 12524, "endOffset": 13359, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "omit", + "ranges": [{ "startOffset": 13360, "endOffset": 14207, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "extend", + "ranges": [{ "startOffset": 14208, "endOffset": 15231, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "safeExtend", + "ranges": [{ "startOffset": 15232, "endOffset": 15664, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "merge", + "ranges": [{ "startOffset": 15665, "endOffset": 16081, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "partial", + "ranges": [{ "startOffset": 16082, "endOffset": 17740, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "required", + "ranges": [{ "startOffset": 17741, "endOffset": 18914, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "aborted", + "ranges": [{ "startOffset": 19081, "endOffset": 19331, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "prefixIssues", + "ranges": [{ "startOffset": 19332, "endOffset": 19523, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "unwrapMessage", + "ranges": [{ "startOffset": 19524, "endOffset": 19628, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "finalizeIssue", + "ranges": [{ "startOffset": 19629, "endOffset": 20245, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getSizableOrigin", + "ranges": [{ "startOffset": 20246, "endOffset": 20480, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getLengthableOrigin", + "ranges": [{ "startOffset": 20481, "endOffset": 20656, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parsedType", + "ranges": [{ "startOffset": 20657, "endOffset": 21247, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "issue", + "ranges": [{ "startOffset": 21248, "endOffset": 21495, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cleanEnum", + "ranges": [{ "startOffset": 21496, "endOffset": 21749, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "base64ToUint8Array", + "ranges": [{ "startOffset": 21777, "endOffset": 22033, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "uint8ArrayToBase64", + "ranges": [{ "startOffset": 22034, "endOffset": 22236, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "base64urlToUint8Array", + "ranges": [{ "startOffset": 22237, "endOffset": 22462, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "uint8ArrayToBase64url", + "ranges": [{ "startOffset": 22463, "endOffset": 22600, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hexToUint8Array", + "ranges": [{ "startOffset": 22601, "endOffset": 22976, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "uint8ArrayToHex", + "ranges": [{ "startOffset": 22977, "endOffset": 23113, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Class", + "ranges": [{ "startOffset": 23146, "endOffset": 23171, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1431", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/core/schemas.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 79277, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 4 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 3218, "endOffset": 7984, "count": 236 }, + { "startOffset": 3256, "endOffset": 3270, "count": 0 }, + { "startOffset": 3477, "endOffset": 3482, "count": 232 }, + { "startOffset": 3592, "endOffset": 3629, "count": 5 }, + { "startOffset": 3659, "endOffset": 3743, "count": 5 }, + { "startOffset": 3704, "endOffset": 3737, "count": 0 }, + { "startOffset": 3773, "endOffset": 4013, "count": 231 }, + { "startOffset": 4013, "endOffset": 7401, "count": 5 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3943, "endOffset": 4005, "count": 231 }], + "isBlockCoverage": true + }, + { + "functionName": "runChecks", + "ranges": [{ "startOffset": 4051, "endOffset": 5686, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "handleCanaryResult", + "ranges": [{ "startOffset": 5723, "endOffset": 6338, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst._zod.run", + "ranges": [{ "startOffset": 6364, "endOffset": 7394, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 7517, "endOffset": 7980, "count": 236 }], + "isBlockCoverage": true + }, + { + "functionName": "validate", + "ranges": [{ "startOffset": 7544, "endOffset": 7929, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 8091, "endOffset": 8130, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8188, "endOffset": 8789, "count": 57 }], + "isBlockCoverage": true + }, + { + "functionName": "inst._zod.parse", + "ranges": [{ "startOffset": 8367, "endOffset": 8786, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8857, "endOffset": 9009, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9061, "endOffset": 9174, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9226, "endOffset": 9774, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9828, "endOffset": 9942, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9992, "endOffset": 12014, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 12068, "endOffset": 12184, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 12240, "endOffset": 12355, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 12407, "endOffset": 12520, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 12574, "endOffset": 12688, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 12740, "endOffset": 12853, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 12903, "endOffset": 13015, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 13069, "endOffset": 13183, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 13249, "endOffset": 13371, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 13429, "endOffset": 13542, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 13600, "endOffset": 13718, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 13784, "endOffset": 13901, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 13953, "endOffset": 14101, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 14153, "endOffset": 14714, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 14764, "endOffset": 14925, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 14981, "endOffset": 15096, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 15152, "endOffset": 16113, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isValidBase64", + "ranges": [{ "startOffset": 16192, "endOffset": 16438, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 16492, "endOffset": 16953, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isValidBase64URL", + "ranges": [{ "startOffset": 17032, "endOffset": 17309, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 17369, "endOffset": 17842, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 17894, "endOffset": 18007, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isValidJWT", + "ranges": [{ "startOffset": 18083, "endOffset": 18742, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 18790, "endOffset": 19157, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 19237, "endOffset": 19596, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 19652, "endOffset": 20583, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "inst._zod.parse", + "ranges": [{ "startOffset": 19794, "endOffset": 20580, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 20651, "endOffset": 20779, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 20837, "endOffset": 21397, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "inst._zod.parse", + "ranges": [{ "startOffset": 20955, "endOffset": 21394, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 21453, "endOffset": 21995, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 22063, "endOffset": 22191, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 22247, "endOffset": 22626, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 22688, "endOffset": 23230, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 23282, "endOffset": 23726, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 23776, "endOffset": 23876, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 23934, "endOffset": 24034, "count": 6 }], + "isBlockCoverage": true + }, + { + "functionName": "inst._zod.parse", + "ranges": [{ "startOffset": 24011, "endOffset": 24031, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 24088, "endOffset": 24377, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 24429, "endOffset": 24809, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 24861, "endOffset": 25555, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "handleArrayResult", + "ranges": [{ "startOffset": 25558, "endOffset": 25758, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 25810, "endOffset": 26896, "count": 10 }], + "isBlockCoverage": true + }, + { + "functionName": "inst._zod.parse", + "ranges": [{ "startOffset": 25887, "endOffset": 26893, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "handlePropertyResult", + "ranges": [{ "startOffset": 26899, "endOffset": 27407, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "normalizeDef", + "ranges": [{ "startOffset": 27408, "endOffset": 27867, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "handleCatchall", + "ranges": [{ "startOffset": 27868, "endOffset": 28970, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 29024, "endOffset": 31321, "count": 43 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 29354, "endOffset": 29554, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 29610, "endOffset": 29633, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 29681, "endOffset": 30075, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst._zod.parse", + "ranges": [{ "startOffset": 30186, "endOffset": 31318, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 31383, "endOffset": 34896, "count": 43 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 31583, "endOffset": 31606, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "generateFastpass", + "ranges": [{ "startOffset": 31638, "endOffset": 33836, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst._zod.parse", + "ranges": [{ "startOffset": 34118, "endOffset": 34893, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "handleUnionResults", + "ranges": [{ "startOffset": 34899, "endOffset": 35532, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 35584, "endOffset": 37407, "count": 17 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 35679, "endOffset": 35762, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 35806, "endOffset": 35890, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 35934, "endOffset": 36131, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 36176, "endOffset": 36448, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst._zod.parse", + "ranges": [{ "startOffset": 36561, "endOffset": 37404, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "handleExclusiveUnionResults", + "ranges": [{ "startOffset": 37410, "endOffset": 38246, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 38294, "endOffset": 39268, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 39363, "endOffset": 41620, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 39527, "endOffset": 40118, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 40150, "endOffset": 40731, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst._zod.parse", + "ranges": [{ "startOffset": 40756, "endOffset": 41617, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 41688, "endOffset": 42312, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mergeValues", + "ranges": [{ "startOffset": 42315, "endOffset": 43952, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "handleIntersectionResults", + "ranges": [{ "startOffset": 43953, "endOffset": 45400, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 45452, "endOffset": 47893, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "handleTupleResult", + "ranges": [{ "startOffset": 47896, "endOffset": 48096, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 48150, "endOffset": 53186, "count": 6 }], + "isBlockCoverage": true + }, + { + "functionName": "inst._zod.parse", + "ranges": [{ "startOffset": 48227, "endOffset": 53183, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 53236, "endOffset": 54455, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "handleMapResult", + "ranges": [{ "startOffset": 54458, "endOffset": 55565, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 55613, "endOffset": 56512, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "handleSetResult", + "ranges": [{ "startOffset": 56515, "endOffset": 56676, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 56726, "endOffset": 57440, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 57498, "endOffset": 58264, "count": 37 }, + { "startOffset": 57586, "endOffset": 57671, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 57807, "endOffset": 57908, "count": 37 }, + { "startOffset": 57859, "endOffset": 57907, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "inst._zod.parse", + "ranges": [{ "startOffset": 57957, "endOffset": 58261, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 58316, "endOffset": 58711, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 58773, "endOffset": 59458, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "handleOptionalResult", + "ranges": [{ "startOffset": 59461, "endOffset": 59638, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 59696, "endOffset": 60690, "count": 44 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 59861, "endOffset": 59981, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 60026, "endOffset": 60183, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst._zod.parse", + "ranges": [{ "startOffset": 60208, "endOffset": 60687, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 60760, "endOffset": 61250, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 61310, "endOffset": 62111, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 61405, "endOffset": 61435, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 61479, "endOffset": 61510, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 61555, "endOffset": 61716, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 61760, "endOffset": 61875, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst._zod.parse", + "ranges": [{ "startOffset": 61900, "endOffset": 62108, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 62169, "endOffset": 63572, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "handleDefaultResult", + "ranges": [{ "startOffset": 63575, "endOffset": 63728, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 63786, "endOffset": 64337, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 64403, "endOffset": 64938, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "handleNonOptionalResult", + "ranges": [{ "startOffset": 64941, "endOffset": 65248, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 65304, "endOffset": 65862, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 65916, "endOffset": 67507, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 67557, "endOffset": 67987, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 68039, "endOffset": 68966, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "handlePipeResult", + "ranges": [{ "startOffset": 68969, "endOffset": 69210, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 69262, "endOffset": 70277, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "handleCodecAResult", + "ranges": [{ "startOffset": 70280, "endOffset": 71148, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "handleCodecTxResult", + "ranges": [{ "startOffset": 71149, "endOffset": 71409, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 71467, "endOffset": 72204, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "handleReadonlyResult", + "ranges": [{ "startOffset": 72207, "endOffset": 72319, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 72391, "endOffset": 74271, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 74331, "endOffset": 77032, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 77090, "endOffset": 77317, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 77369, "endOffset": 78190, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 77665, "endOffset": 77683, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 77728, "endOffset": 77768, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 77816, "endOffset": 77859, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 77902, "endOffset": 77953, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 77997, "endOffset": 78049, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst._zod.parse", + "ranges": [{ "startOffset": 78074, "endOffset": 78187, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 78246, "endOffset": 78719, "count": 5 }], + "isBlockCoverage": true + }, + { + "functionName": "inst._zod.parse", + "ranges": [{ "startOffset": 78361, "endOffset": 78408, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst._zod.check", + "ranges": [{ "startOffset": 78432, "endOffset": 78716, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "handleRefineResult", + "ranges": [{ "startOffset": 78722, "endOffset": 79276, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1432", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/core/checks.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 21559, "count": 1 }, + { "startOffset": 451, "endOffset": 532, "count": 0 }, + { "startOffset": 708, "endOffset": 750, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 132, "endOffset": 449, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 454, "endOffset": 531, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 615, "endOffset": 706, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 710, "endOffset": 750, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 803, "endOffset": 1083, "count": 3 }, + { "startOffset": 862, "endOffset": 1082, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 1996, "endOffset": 2139, "count": 5 }, + { "startOffset": 2039, "endOffset": 2058, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2303, "endOffset": 3243, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3319, "endOffset": 4261, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4350, "endOffset": 5194, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5272, "endOffset": 8555, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8633, "endOffset": 9648, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9716, "endOffset": 10573, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 10641, "endOffset": 11500, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 11574, "endOffset": 12528, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 12600, "endOffset": 13491, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 13563, "endOffset": 14456, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 14534, "endOffset": 15540, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 15618, "endOffset": 16551, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 16615, "endOffset": 17096, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 17168, "endOffset": 17291, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 17363, "endOffset": 17486, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 17556, "endOffset": 18377, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 18451, "endOffset": 19167, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 19237, "endOffset": 19949, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "handleCheckPropertyResult", + "ranges": [{ "startOffset": 20060, "endOffset": 20239, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 20307, "endOffset": 20776, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 20846, "endOffset": 21336, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 21408, "endOffset": 21556, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1433", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/core/regexes.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 10708, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "uuid", + "ranges": [ + { "startOffset": 3581, "endOffset": 3924, "count": 3 }, + { "startOffset": 3622, "endOffset": 3798, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "emoji", + "ranges": [{ "startOffset": 5289, "endOffset": 5345, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mac", + "ranges": [{ "startOffset": 5891, "endOffset": 6090, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "timeSource", + "ranges": [{ "startOffset": 7761, "endOffset": 8146, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "time", + "ranges": [{ "startOffset": 8147, "endOffset": 8218, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "datetime", + "ranges": [{ "startOffset": 8271, "endOffset": 8673, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "string", + "ranges": [ + { "startOffset": 8689, "endOffset": 8844, "count": 57 }, + { "startOffset": 8791, "endOffset": 8804, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "fixedBase64", + "ranges": [{ "startOffset": 9484, "endOffset": 9596, "count": 5 }], + "isBlockCoverage": true + }, + { + "functionName": "fixedBase64url", + "ranges": [{ "startOffset": 9673, "endOffset": 9761, "count": 5 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1434", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/core/doc.cjs", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1199, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Doc", + "ranges": [{ "startOffset": 115, "endOffset": 245, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "indented", + "ranges": [{ "startOffset": 250, "endOffset": 340, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "write", + "ranges": [{ "startOffset": 345, "endOffset": 899, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "compile", + "ranges": [{ "startOffset": 904, "endOffset": 1177, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1435", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/core/versions.cjs", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 168, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1436", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/locales/index.cjs", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 8647, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [{ "startOffset": 70, "endOffset": 151, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 965, "endOffset": 1021, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1123, "endOffset": 1179, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1281, "endOffset": 1337, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1439, "endOffset": 1495, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1597, "endOffset": 1653, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1755, "endOffset": 1811, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1913, "endOffset": 1969, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2071, "endOffset": 2127, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2229, "endOffset": 2285, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2387, "endOffset": 2443, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2545, "endOffset": 2601, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2703, "endOffset": 2759, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2861, "endOffset": 2917, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3019, "endOffset": 3075, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3185, "endOffset": 3244, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3346, "endOffset": 3402, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3504, "endOffset": 3560, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3662, "endOffset": 3718, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3820, "endOffset": 3876, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3978, "endOffset": 4034, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 4136, "endOffset": 4192, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 4294, "endOffset": 4350, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 4452, "endOffset": 4508, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 4610, "endOffset": 4666, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 4768, "endOffset": 4824, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 4926, "endOffset": 4982, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 5084, "endOffset": 5140, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 5242, "endOffset": 5298, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 5400, "endOffset": 5456, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 5558, "endOffset": 5614, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 5716, "endOffset": 5772, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 5877, "endOffset": 5934, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 6036, "endOffset": 6092, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 6194, "endOffset": 6250, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 6352, "endOffset": 6408, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 6510, "endOffset": 6566, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 6668, "endOffset": 6724, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 6826, "endOffset": 6882, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 6984, "endOffset": 7040, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 7142, "endOffset": 7198, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 7300, "endOffset": 7356, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 7458, "endOffset": 7514, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 7616, "endOffset": 7672, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 7774, "endOffset": 7830, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 7932, "endOffset": 7988, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 8090, "endOffset": 8146, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 8256, "endOffset": 8315, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 8425, "endOffset": 8484, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 8586, "endOffset": 8642, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1437", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/locales/ar.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5727, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5616, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5618, "endOffset": 5692, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1438", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/locales/az.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5567, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5456, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5458, "endOffset": 5532, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1439", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/locales/be.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 7051, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "getBelarusianPlural", + "ranges": [{ "startOffset": 1189, "endOffset": 1582, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1597, "endOffset": 6940, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 6942, "endOffset": 7016, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1440", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/locales/bg.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 6269, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 6158, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 6160, "endOffset": 6234, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1441", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/locales/ca.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5853, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5742, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5744, "endOffset": 5818, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1442", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/locales/cs.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5827, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5716, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5718, "endOffset": 5792, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1443", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/locales/da.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5967, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5856, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5858, "endOffset": 5932, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1444", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/locales/de.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5745, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5634, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5636, "endOffset": 5710, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1445", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/locales/en.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5709, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5598, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "getSizing", + "ranges": [{ "startOffset": 1502, "endOffset": 1576, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2716, "endOffset": 5595, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5600, "endOffset": 5674, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1446", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/locales/eo.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5763, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5652, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5654, "endOffset": 5728, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1447", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/locales/es.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 6582, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 6471, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 6473, "endOffset": 6547, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1448", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/locales/fa.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5731, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5620, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5622, "endOffset": 5696, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1449", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/locales/fi.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5954, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5843, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5845, "endOffset": 5919, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1450", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/locales/fr.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5728, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5617, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5619, "endOffset": 5693, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1451", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/locales/fr-CA.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5698, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5587, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5589, "endOffset": 5663, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1452", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/locales/he.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 12333, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 12222, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 12224, "endOffset": 12298, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1453", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/locales/hu.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5775, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5664, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5666, "endOffset": 5740, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1454", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/locales/hy.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 6871, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "getArmenianPlural", + "ranges": [{ "startOffset": 1189, "endOffset": 1284, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "withDefiniteArticle", + "ranges": [{ "startOffset": 1285, "endOffset": 1517, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1532, "endOffset": 6760, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 6762, "endOffset": 6836, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1455", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/locales/id.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5753, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5642, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5644, "endOffset": 5718, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1456", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/locales/is.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5742, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5631, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5633, "endOffset": 5707, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1457", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/locales/it.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5748, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5637, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5639, "endOffset": 5713, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1458", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/locales/ja.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5287, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5176, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5178, "endOffset": 5252, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1459", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/locales/ka.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5898, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5787, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5789, "endOffset": 5863, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1460", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/locales/kh.cjs", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 430, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 70, "endOffset": 151, "count": 1 }, + { "startOffset": 122, "endOffset": 127, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 336, "endOffset": 395, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1461", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/locales/km.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5802, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5691, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5693, "endOffset": 5767, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1462", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/locales/ko.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5525, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5414, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5416, "endOffset": 5490, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1463", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/locales/lt.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 9168, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "capitalizeFirstCharacter", + "ranges": [{ "startOffset": 1222, "endOffset": 1292, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getUnitTypeFromNumber", + "ranges": [{ "startOffset": 1294, "endOffset": 1561, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1576, "endOffset": 9057, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 9059, "endOffset": 9133, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1464", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/locales/mk.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5715, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5604, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5606, "endOffset": 5680, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1465", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/locales/ms.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5667, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5556, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5558, "endOffset": 5632, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1466", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/locales/nl.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5936, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5825, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5827, "endOffset": 5901, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1467", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/locales/no.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5662, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5551, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5553, "endOffset": 5627, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1468", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/locales/ota.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5626, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5515, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5517, "endOffset": 5591, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1469", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/locales/ps.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5626, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5515, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5517, "endOffset": 5591, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1470", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/locales/pl.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 6056, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5945, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5947, "endOffset": 6021, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1471", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/locales/pt.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5716, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5605, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5607, "endOffset": 5681, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1472", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/locales/ru.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 7099, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "getRussianPlural", + "ranges": [{ "startOffset": 1189, "endOffset": 1579, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1594, "endOffset": 6988, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 6990, "endOffset": 7064, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1473", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/locales/sl.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5722, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5611, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5613, "endOffset": 5687, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1474", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/locales/sv.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5792, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5681, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5683, "endOffset": 5757, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1475", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/locales/ta.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5919, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5808, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5810, "endOffset": 5884, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1476", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/locales/th.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5832, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5721, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5723, "endOffset": 5797, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1477", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/locales/tr.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5553, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5442, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5444, "endOffset": 5518, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1478", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/locales/ua.cjs", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 430, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 70, "endOffset": 151, "count": 1 }, + { "startOffset": 122, "endOffset": 127, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 336, "endOffset": 395, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1479", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/locales/uk.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5839, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5728, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5730, "endOffset": 5804, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1480", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/locales/ur.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5758, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5647, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5649, "endOffset": 5723, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1481", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/locales/uz.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5787, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5676, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5678, "endOffset": 5752, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1482", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/locales/vi.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5662, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5551, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5553, "endOffset": 5627, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1483", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/locales/zh-CN.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5178, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5067, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5069, "endOffset": 5143, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1484", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/locales/zh-TW.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5188, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5077, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5079, "endOffset": 5153, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1485", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/locales/yo.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 5476, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1203, "endOffset": 5365, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default_1", + "ranges": [{ "startOffset": 5367, "endOffset": 5441, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1486", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/core/registries.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 1717, "count": 1 }, + { "startOffset": 1616, "endOffset": 1657, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "$ZodRegistry", + "ranges": [{ "startOffset": 306, "endOffset": 395, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "add", + "ranges": [{ "startOffset": 400, "endOffset": 638, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "clear", + "ranges": [{ "startOffset": 643, "endOffset": 747, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "remove", + "ranges": [{ "startOffset": 752, "endOffset": 988, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 993, "endOffset": 1406, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "has", + "ranges": [{ "startOffset": 1411, "endOffset": 1468, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "registry", + "ranges": [{ "startOffset": 1522, "endOffset": 1576, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1487", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/core/api.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 31472, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 4 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "_string", + "ranges": [{ "startOffset": 4758, "endOffset": 4889, "count": 57 }], + "isBlockCoverage": true + }, + { + "functionName": "_coercedString", + "ranges": [{ "startOffset": 4914, "endOffset": 5074, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_email", + "ranges": [{ "startOffset": 5099, "endOffset": 5308, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_guid", + "ranges": [{ "startOffset": 5333, "endOffset": 5540, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_uuid", + "ranges": [{ "startOffset": 5565, "endOffset": 5772, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_uuidv4", + "ranges": [{ "startOffset": 5797, "endOffset": 6029, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_uuidv6", + "ranges": [{ "startOffset": 6054, "endOffset": 6286, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_uuidv7", + "ranges": [{ "startOffset": 6311, "endOffset": 6543, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_url", + "ranges": [{ "startOffset": 6568, "endOffset": 6773, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_emoji", + "ranges": [{ "startOffset": 6798, "endOffset": 7007, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_nanoid", + "ranges": [{ "startOffset": 7032, "endOffset": 7243, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_cuid", + "ranges": [{ "startOffset": 7268, "endOffset": 7475, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_cuid2", + "ranges": [{ "startOffset": 7500, "endOffset": 7709, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_ulid", + "ranges": [{ "startOffset": 7734, "endOffset": 7941, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_xid", + "ranges": [{ "startOffset": 7966, "endOffset": 8171, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_ksuid", + "ranges": [{ "startOffset": 8196, "endOffset": 8405, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_ipv4", + "ranges": [{ "startOffset": 8430, "endOffset": 8637, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_ipv6", + "ranges": [{ "startOffset": 8662, "endOffset": 8869, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_mac", + "ranges": [{ "startOffset": 8894, "endOffset": 9099, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_cidrv4", + "ranges": [{ "startOffset": 9124, "endOffset": 9335, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_cidrv6", + "ranges": [{ "startOffset": 9360, "endOffset": 9571, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_base64", + "ranges": [{ "startOffset": 9596, "endOffset": 9807, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_base64url", + "ranges": [{ "startOffset": 9832, "endOffset": 10049, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_e164", + "ranges": [{ "startOffset": 10074, "endOffset": 10281, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_jwt", + "ranges": [{ "startOffset": 10306, "endOffset": 10511, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_isoDateTime", + "ranges": [{ "startOffset": 10651, "endOffset": 10917, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_isoDate", + "ranges": [{ "startOffset": 10942, "endOffset": 11130, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_isoTime", + "ranges": [{ "startOffset": 11155, "endOffset": 11368, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_isoDuration", + "ranges": [{ "startOffset": 11393, "endOffset": 11589, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_number", + "ranges": [{ "startOffset": 11614, "endOffset": 11765, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "_coercedNumber", + "ranges": [{ "startOffset": 11790, "endOffset": 11970, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_int", + "ranges": [{ "startOffset": 11995, "endOffset": 12204, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_float32", + "ranges": [{ "startOffset": 12229, "endOffset": 12442, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_float64", + "ranges": [{ "startOffset": 12467, "endOffset": 12680, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_int32", + "ranges": [{ "startOffset": 12705, "endOffset": 12914, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_uint32", + "ranges": [{ "startOffset": 12939, "endOffset": 13150, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_boolean", + "ranges": [{ "startOffset": 13175, "endOffset": 13308, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "_coercedBoolean", + "ranges": [{ "startOffset": 13333, "endOffset": 13495, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_bigint", + "ranges": [{ "startOffset": 13520, "endOffset": 13651, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_coercedBigint", + "ranges": [{ "startOffset": 13676, "endOffset": 13836, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_int64", + "ranges": [{ "startOffset": 13861, "endOffset": 14070, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_uint64", + "ranges": [{ "startOffset": 14095, "endOffset": 14306, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_symbol", + "ranges": [{ "startOffset": 14331, "endOffset": 14462, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_undefined", + "ranges": [{ "startOffset": 14487, "endOffset": 14624, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_null", + "ranges": [{ "startOffset": 14649, "endOffset": 14776, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_any", + "ranges": [{ "startOffset": 14801, "endOffset": 14877, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_unknown", + "ranges": [{ "startOffset": 14902, "endOffset": 14986, "count": 6 }], + "isBlockCoverage": true + }, + { + "functionName": "_never", + "ranges": [{ "startOffset": 15011, "endOffset": 15140, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_void", + "ranges": [{ "startOffset": 15165, "endOffset": 15292, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_date", + "ranges": [{ "startOffset": 15317, "endOffset": 15444, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_coercedDate", + "ranges": [{ "startOffset": 15469, "endOffset": 15625, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_nan", + "ranges": [{ "startOffset": 15650, "endOffset": 15775, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_lt", + "ranges": [{ "startOffset": 15800, "endOffset": 15991, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_lte", + "ranges": [{ "startOffset": 16016, "endOffset": 16207, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_gt", + "ranges": [{ "startOffset": 16232, "endOffset": 16429, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_gte", + "ranges": [{ "startOffset": 16454, "endOffset": 16651, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_positive", + "ranges": [{ "startOffset": 16676, "endOffset": 16733, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_negative", + "ranges": [{ "startOffset": 16770, "endOffset": 16827, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_nonpositive", + "ranges": [{ "startOffset": 16867, "endOffset": 16928, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_nonnegative", + "ranges": [{ "startOffset": 16968, "endOffset": 17029, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_multipleOf", + "ranges": [{ "startOffset": 17054, "endOffset": 17231, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_maxSize", + "ranges": [{ "startOffset": 17256, "endOffset": 17428, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_minSize", + "ranges": [{ "startOffset": 17453, "endOffset": 17625, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_size", + "ranges": [{ "startOffset": 17650, "endOffset": 17819, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_maxLength", + "ranges": [{ "startOffset": 17844, "endOffset": 18041, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_minLength", + "ranges": [{ "startOffset": 18066, "endOffset": 18244, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_length", + "ranges": [{ "startOffset": 18269, "endOffset": 18448, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_regex", + "ranges": [{ "startOffset": 18473, "endOffset": 18671, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_lowercase", + "ranges": [{ "startOffset": 18696, "endOffset": 18880, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_uppercase", + "ranges": [{ "startOffset": 18905, "endOffset": 19089, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_includes", + "ranges": [{ "startOffset": 19114, "endOffset": 19323, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_startsWith", + "ranges": [{ "startOffset": 19348, "endOffset": 19560, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_endsWith", + "ranges": [{ "startOffset": 19585, "endOffset": 19791, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_property", + "ranges": [{ "startOffset": 19816, "endOffset": 20016, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_mime", + "ranges": [{ "startOffset": 20041, "endOffset": 20214, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_overwrite", + "ranges": [{ "startOffset": 20239, "endOffset": 20357, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_normalize", + "ranges": [{ "startOffset": 20395, "endOffset": 20481, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_trim", + "ranges": [{ "startOffset": 20514, "endOffset": 20582, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_toLowerCase", + "ranges": [{ "startOffset": 20622, "endOffset": 20704, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_toUpperCase", + "ranges": [{ "startOffset": 20744, "endOffset": 20826, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_slugify", + "ranges": [{ "startOffset": 20862, "endOffset": 20940, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_array", + "ranges": [{ "startOffset": 20965, "endOffset": 21190, "count": 10 }], + "isBlockCoverage": true + }, + { + "functionName": "_union", + "ranges": [{ "startOffset": 21215, "endOffset": 21370, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_xor", + "ranges": [{ "startOffset": 21371, "endOffset": 21550, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_discriminatedUnion", + "ranges": [{ "startOffset": 21575, "endOffset": 21781, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_intersection", + "ranges": [{ "startOffset": 21806, "endOffset": 21942, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_tuple", + "ranges": [{ "startOffset": 22133, "endOffset": 22480, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_record", + "ranges": [{ "startOffset": 22505, "endOffset": 22692, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_map", + "ranges": [{ "startOffset": 22717, "endOffset": 22898, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_set", + "ranges": [{ "startOffset": 22923, "endOffset": 23078, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_enum", + "ranges": [{ "startOffset": 23103, "endOffset": 23657, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_nativeEnum", + "ranges": [{ "startOffset": 23842, "endOffset": 24001, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_literal", + "ranges": [{ "startOffset": 24026, "endOffset": 24222, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_file", + "ranges": [{ "startOffset": 24247, "endOffset": 24374, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_transform", + "ranges": [{ "startOffset": 24399, "endOffset": 24514, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_optional", + "ranges": [{ "startOffset": 24539, "endOffset": 24655, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_nullable", + "ranges": [{ "startOffset": 24680, "endOffset": 24796, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_default", + "ranges": [{ "startOffset": 24821, "endOffset": 25095, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_nonoptional", + "ranges": [{ "startOffset": 25120, "endOffset": 25291, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_success", + "ranges": [{ "startOffset": 25316, "endOffset": 25430, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_catch", + "ranges": [{ "startOffset": 25455, "endOffset": 25665, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_pipe", + "ranges": [{ "startOffset": 25690, "endOffset": 25808, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_readonly", + "ranges": [{ "startOffset": 25833, "endOffset": 25949, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_templateLiteral", + "ranges": [{ "startOffset": 25974, "endOffset": 26146, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_lazy", + "ranges": [{ "startOffset": 26171, "endOffset": 26273, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_promise", + "ranges": [{ "startOffset": 26298, "endOffset": 26412, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_custom", + "ranges": [{ "startOffset": 26437, "endOffset": 26730, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "_refine", + "ranges": [{ "startOffset": 26802, "endOffset": 27007, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_superRefine", + "ranges": [{ "startOffset": 27032, "endOffset": 27921, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_check", + "ranges": [{ "startOffset": 27946, "endOffset": 28128, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "describe", + "ranges": [{ "startOffset": 28153, "endOffset": 28522, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "meta", + "ranges": [{ "startOffset": 28547, "endOffset": 28905, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_stringbool", + "ranges": [{ "startOffset": 28930, "endOffset": 30956, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_stringFormat", + "ranges": [{ "startOffset": 30981, "endOffset": 31471, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1488", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/core/to-json-schema.cjs", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 16833, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "initializeContext", + "ranges": [{ "startOffset": 705, "endOffset": 1483, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "process", + "ranges": [{ "startOffset": 1484, "endOffset": 3785, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "extractDefs", + "ranges": [{ "startOffset": 3786, "endOffset": 8313, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "finalize", + "ranges": [{ "startOffset": 8314, "endOffset": 14137, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isTransforming", + "ranges": [{ "startOffset": 14138, "endOffset": 15980, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createToJSONSchemaMethod", + "ranges": [{ "startOffset": 16179, "endOffset": 16375, "count": 236 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 16208, "endOffset": 16375, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createStandardJSONSchemaMethod", + "ranges": [{ "startOffset": 16477, "endOffset": 16758, "count": 472 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 16510, "endOffset": 16758, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1489", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/core/json-schema-processors.cjs", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 24504, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "stringProcessor", + "ranges": [{ "startOffset": 1510, "endOffset": 2918, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "numberProcessor", + "ranges": [{ "startOffset": 2987, "endOffset": 4595, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "booleanProcessor", + "ranges": [{ "startOffset": 4665, "endOffset": 4729, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "bigintProcessor", + "ranges": [{ "startOffset": 4800, "endOffset": 4958, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "symbolProcessor", + "ranges": [{ "startOffset": 5027, "endOffset": 5186, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "nullProcessor", + "ranges": [{ "startOffset": 5253, "endOffset": 5468, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "undefinedProcessor", + "ranges": [{ "startOffset": 5536, "endOffset": 5697, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "voidProcessor", + "ranges": [{ "startOffset": 5770, "endOffset": 5926, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "neverProcessor", + "ranges": [{ "startOffset": 5990, "endOffset": 6046, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "anyProcessor", + "ranges": [{ "startOffset": 6110, "endOffset": 6185, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "unknownProcessor", + "ranges": [{ "startOffset": 6249, "endOffset": 6324, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "dateProcessor", + "ranges": [{ "startOffset": 6393, "endOffset": 6549, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "enumProcessor", + "ranges": [{ "startOffset": 6612, "endOffset": 6990, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "literalProcessor", + "ranges": [{ "startOffset": 7056, "endOffset": 8564, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "nanProcessor", + "ranges": [{ "startOffset": 8632, "endOffset": 8787, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "templateLiteralProcessor", + "ranges": [{ "startOffset": 8859, "endOffset": 9107, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fileProcessor", + "ranges": [{ "startOffset": 9192, "endOffset": 9944, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "successProcessor", + "ranges": [{ "startOffset": 10010, "endOffset": 10074, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "customProcessor", + "ranges": [{ "startOffset": 10145, "endOffset": 10309, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "functionProcessor", + "ranges": [{ "startOffset": 10380, "endOffset": 10546, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformProcessor", + "ranges": [{ "startOffset": 10622, "endOffset": 10784, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mapProcessor", + "ranges": [{ "startOffset": 10856, "endOffset": 11011, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setProcessor", + "ranges": [{ "startOffset": 11071, "endOffset": 11226, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "arrayProcessor", + "ranges": [{ "startOffset": 11359, "endOffset": 11783, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "objectProcessor", + "ranges": [{ "startOffset": 11850, "endOffset": 13147, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "unionProcessor", + "ranges": [{ "startOffset": 13215, "endOffset": 13796, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "intersectionProcessor", + "ranges": [{ "startOffset": 13869, "endOffset": 14457, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "tupleProcessor", + "ranges": [{ "startOffset": 14537, "endOffset": 16054, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "recordProcessor", + "ranges": [{ "startOffset": 16121, "endOffset": 17916, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "nullableProcessor", + "ranges": [{ "startOffset": 17987, "endOffset": 18348, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "nonoptionalProcessor", + "ranges": [{ "startOffset": 18426, "endOffset": 18629, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "defaultProcessor", + "ranges": [{ "startOffset": 18709, "endOffset": 18976, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "prefaultProcessor", + "ranges": [{ "startOffset": 19049, "endOffset": 19350, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "catchProcessor", + "ranges": [{ "startOffset": 19422, "endOffset": 19839, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pipeProcessor", + "ranges": [{ "startOffset": 19904, "endOffset": 20211, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readonlyProcessor", + "ranges": [{ "startOffset": 20278, "endOffset": 20506, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "promiseProcessor", + "ranges": [{ "startOffset": 20580, "endOffset": 20783, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "optionalProcessor", + "ranges": [{ "startOffset": 20856, "endOffset": 21059, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lazyProcessor", + "ranges": [{ "startOffset": 21130, "endOffset": 21337, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toJSONSchema", + "ranges": [{ "startOffset": 22933, "endOffset": 24503, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1490", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/core/json-schema-generator.cjs", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3492, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get metadataRegistry", + "ranges": [{ "startOffset": 856, "endOffset": 928, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get target", + "ranges": [{ "startOffset": 979, "endOffset": 1031, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get unrepresentable", + "ranges": [{ "startOffset": 1082, "endOffset": 1152, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get override", + "ranges": [{ "startOffset": 1203, "endOffset": 1259, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get io", + "ranges": [{ "startOffset": 1310, "endOffset": 1354, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get counter", + "ranges": [{ "startOffset": 1405, "endOffset": 1459, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set counter", + "ranges": [{ "startOffset": 1464, "endOffset": 1524, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get seen", + "ranges": [{ "startOffset": 1575, "endOffset": 1623, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "JSONSchemaGenerator", + "ranges": [{ "startOffset": 1628, "endOffset": 2400, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "process", + "ranges": [{ "startOffset": 2529, "endOffset": 2668, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "emit", + "ranges": [{ "startOffset": 2775, "endOffset": 3438, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1491", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/core/json-schema.cjs", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 77, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1492", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/classic/schemas.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 50491, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 5 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5487, "endOffset": 9443, "count": 236 }], + "isBlockCoverage": true + }, + { + "functionName": "inst.check", + "ranges": [{ "startOffset": 6028, "endOffset": 6373, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.clone", + "ranges": [{ "startOffset": 6420, "endOffset": 6466, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "inst.brand", + "ranges": [{ "startOffset": 6485, "endOffset": 6495, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6518, "endOffset": 6590, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "inst.parse", + "ranges": [{ "startOffset": 6625, "endOffset": 6698, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.safeParse", + "ranges": [{ "startOffset": 6721, "endOffset": 6774, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.parseAsync", + "ranges": [{ "startOffset": 6798, "endOffset": 6887, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.safeParseAsync", + "ranges": [{ "startOffset": 6915, "endOffset": 6979, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.encode", + "ranges": [{ "startOffset": 7060, "endOffset": 7110, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.decode", + "ranges": [{ "startOffset": 7130, "endOffset": 7180, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.encodeAsync", + "ranges": [{ "startOffset": 7205, "endOffset": 7266, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.decodeAsync", + "ranges": [{ "startOffset": 7291, "endOffset": 7352, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.safeEncode", + "ranges": [{ "startOffset": 7376, "endOffset": 7430, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.safeDecode", + "ranges": [{ "startOffset": 7454, "endOffset": 7508, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.safeEncodeAsync", + "ranges": [{ "startOffset": 7537, "endOffset": 7602, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.safeDecodeAsync", + "ranges": [{ "startOffset": 7631, "endOffset": 7696, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.refine", + "ranges": [{ "startOffset": 7735, "endOffset": 7787, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.superRefine", + "ranges": [{ "startOffset": 7812, "endOffset": 7863, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.overwrite", + "ranges": [{ "startOffset": 7886, "endOffset": 7926, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.optional", + "ranges": [{ "startOffset": 7964, "endOffset": 7984, "count": 41 }], + "isBlockCoverage": true + }, + { + "functionName": "inst.exactOptional", + "ranges": [{ "startOffset": 8011, "endOffset": 8036, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.nullable", + "ranges": [{ "startOffset": 8058, "endOffset": 8078, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "inst.nullish", + "ranges": [{ "startOffset": 8099, "endOffset": 8129, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "inst.nonoptional", + "ranges": [{ "startOffset": 8154, "endOffset": 8191, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.array", + "ranges": [{ "startOffset": 8210, "endOffset": 8227, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.or", + "ranges": [{ "startOffset": 8243, "endOffset": 8270, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.and", + "ranges": [{ "startOffset": 8287, "endOffset": 8319, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.transform", + "ranges": [{ "startOffset": 8342, "endOffset": 8375, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.default", + "ranges": [{ "startOffset": 8396, "endOffset": 8424, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.prefault", + "ranges": [{ "startOffset": 8446, "endOffset": 8474, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.catch", + "ranges": [{ "startOffset": 8562, "endOffset": 8594, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.pipe", + "ranges": [{ "startOffset": 8612, "endOffset": 8642, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.readonly", + "ranges": [{ "startOffset": 8664, "endOffset": 8684, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.describe", + "ranges": [{ "startOffset": 8718, "endOffset": 8848, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 8907, "endOffset": 8987, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.meta", + "ranges": [{ "startOffset": 9041, "endOffset": 9252, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.isOptional", + "ranges": [{ "startOffset": 9291, "endOffset": 9330, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.isNullable", + "ranges": [{ "startOffset": 9354, "endOffset": 9388, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.apply", + "ranges": [{ "startOffset": 9407, "endOffset": 9423, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 9516, "endOffset": 10911, "count": 57 }], + "isBlockCoverage": true + }, + { + "functionName": "inst._zod.processJSONSchema", + "ranges": [{ "startOffset": 9641, "endOffset": 9715, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.regex", + "ranges": [{ "startOffset": 9906, "endOffset": 9952, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.includes", + "ranges": [{ "startOffset": 9974, "endOffset": 10023, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.startsWith", + "ranges": [{ "startOffset": 10047, "endOffset": 10098, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.endsWith", + "ranges": [{ "startOffset": 10120, "endOffset": 10169, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.min", + "ranges": [{ "startOffset": 10186, "endOffset": 10236, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.max", + "ranges": [{ "startOffset": 10253, "endOffset": 10303, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.length", + "ranges": [{ "startOffset": 10323, "endOffset": 10370, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.nonempty", + "ranges": [{ "startOffset": 10392, "endOffset": 10445, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.lowercase", + "ranges": [{ "startOffset": 10468, "endOffset": 10516, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.uppercase", + "ranges": [{ "startOffset": 10539, "endOffset": 10587, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.trim", + "ranges": [{ "startOffset": 10623, "endOffset": 10654, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.normalize", + "ranges": [{ "startOffset": 10677, "endOffset": 10727, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.toLowerCase", + "ranges": [{ "startOffset": 10752, "endOffset": 10790, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.toUpperCase", + "ranges": [{ "startOffset": 10815, "endOffset": 10853, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.slugify", + "ranges": [{ "startOffset": 10874, "endOffset": 10908, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 10965, "endOffset": 13144, "count": 57 }], + "isBlockCoverage": true + }, + { + "functionName": "inst.email", + "ranges": [{ "startOffset": 11076, "endOffset": 11137, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.url", + "ranges": [{ "startOffset": 11154, "endOffset": 11211, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.jwt", + "ranges": [{ "startOffset": 11228, "endOffset": 11285, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.emoji", + "ranges": [{ "startOffset": 11304, "endOffset": 11365, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.guid", + "ranges": [{ "startOffset": 11383, "endOffset": 11442, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.uuid", + "ranges": [{ "startOffset": 11460, "endOffset": 11519, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.uuidv4", + "ranges": [{ "startOffset": 11539, "endOffset": 11600, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.uuidv6", + "ranges": [{ "startOffset": 11620, "endOffset": 11681, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.uuidv7", + "ranges": [{ "startOffset": 11701, "endOffset": 11762, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.nanoid", + "ranges": [{ "startOffset": 11782, "endOffset": 11845, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.guid", + "ranges": [{ "startOffset": 11863, "endOffset": 11922, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.cuid", + "ranges": [{ "startOffset": 11940, "endOffset": 11999, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.cuid2", + "ranges": [{ "startOffset": 12018, "endOffset": 12079, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.ulid", + "ranges": [{ "startOffset": 12097, "endOffset": 12156, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.base64", + "ranges": [{ "startOffset": 12176, "endOffset": 12239, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.base64url", + "ranges": [{ "startOffset": 12262, "endOffset": 12331, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.xid", + "ranges": [{ "startOffset": 12348, "endOffset": 12405, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.ksuid", + "ranges": [{ "startOffset": 12424, "endOffset": 12485, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.ipv4", + "ranges": [{ "startOffset": 12503, "endOffset": 12562, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.ipv6", + "ranges": [{ "startOffset": 12580, "endOffset": 12639, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.cidrv4", + "ranges": [{ "startOffset": 12659, "endOffset": 12722, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.cidrv6", + "ranges": [{ "startOffset": 12742, "endOffset": 12805, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.e164", + "ranges": [{ "startOffset": 12823, "endOffset": 12882, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.datetime", + "ranges": [{ "startOffset": 12915, "endOffset": 12959, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.date", + "ranges": [{ "startOffset": 12977, "endOffset": 13017, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.time", + "ranges": [{ "startOffset": 13035, "endOffset": 13075, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.duration", + "ranges": [{ "startOffset": 13097, "endOffset": 13141, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "string", + "ranges": [{ "startOffset": 13147, "endOffset": 13226, "count": 57 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 13290, "endOffset": 13391, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 13443, "endOffset": 13582, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "email", + "ranges": [{ "startOffset": 13585, "endOffset": 13661, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 13709, "endOffset": 13847, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "guid", + "ranges": [{ "startOffset": 13850, "endOffset": 13923, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 13971, "endOffset": 14109, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "uuid", + "ranges": [{ "startOffset": 14112, "endOffset": 14185, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "uuidv4", + "ranges": [{ "startOffset": 14186, "endOffset": 14263, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "uuidv6", + "ranges": [{ "startOffset": 14277, "endOffset": 14354, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "uuidv7", + "ranges": [{ "startOffset": 14368, "endOffset": 14445, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 14491, "endOffset": 14628, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "url", + "ranges": [{ "startOffset": 14631, "endOffset": 14701, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "httpUrl", + "ranges": [{ "startOffset": 14702, "endOffset": 14898, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 14948, "endOffset": 15087, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "emoji", + "ranges": [{ "startOffset": 15090, "endOffset": 15166, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 15218, "endOffset": 15358, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "nanoid", + "ranges": [{ "startOffset": 15361, "endOffset": 15440, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 15488, "endOffset": 15626, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cuid", + "ranges": [{ "startOffset": 15629, "endOffset": 15702, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 15752, "endOffset": 15891, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cuid2", + "ranges": [{ "startOffset": 15894, "endOffset": 15970, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 16018, "endOffset": 16156, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ulid", + "ranges": [{ "startOffset": 16159, "endOffset": 16232, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 16278, "endOffset": 16415, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "xid", + "ranges": [{ "startOffset": 16418, "endOffset": 16488, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 16538, "endOffset": 16677, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ksuid", + "ranges": [{ "startOffset": 16680, "endOffset": 16756, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 16804, "endOffset": 16942, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ipv4", + "ranges": [{ "startOffset": 16945, "endOffset": 17018, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 17064, "endOffset": 17201, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mac", + "ranges": [{ "startOffset": 17204, "endOffset": 17274, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 17322, "endOffset": 17460, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ipv6", + "ranges": [{ "startOffset": 17463, "endOffset": 17536, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 17588, "endOffset": 17688, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cidrv4", + "ranges": [{ "startOffset": 17691, "endOffset": 17770, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 17822, "endOffset": 17922, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cidrv6", + "ranges": [{ "startOffset": 17925, "endOffset": 18004, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 18056, "endOffset": 18196, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "base64", + "ranges": [{ "startOffset": 18199, "endOffset": 18278, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 18336, "endOffset": 18479, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "base64url", + "ranges": [{ "startOffset": 18482, "endOffset": 18570, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 18618, "endOffset": 18756, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "e164", + "ranges": [{ "startOffset": 18759, "endOffset": 18832, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 18878, "endOffset": 19015, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "jwt", + "ranges": [{ "startOffset": 19018, "endOffset": 19088, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 19164, "endOffset": 19316, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stringFormat", + "ranges": [{ "startOffset": 19319, "endOffset": 19467, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hostname", + "ranges": [{ "startOffset": 19468, "endOffset": 19604, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hex", + "ranges": [{ "startOffset": 19605, "endOffset": 19726, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hash", + "ranges": [{ "startOffset": 19727, "endOffset": 20036, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 20088, "endOffset": 21834, "count": 4 }, + { "startOffset": 21523, "endOffset": 21530, "count": 0 }, + { "startOffset": 21660, "endOffset": 21667, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "inst._zod.processJSONSchema", + "ranges": [{ "startOffset": 20213, "endOffset": 20287, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.gt", + "ranges": [{ "startOffset": 20303, "endOffset": 20358, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.gte", + "ranges": [{ "startOffset": 20375, "endOffset": 20431, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.min", + "ranges": [{ "startOffset": 20448, "endOffset": 20504, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.lt", + "ranges": [{ "startOffset": 20520, "endOffset": 20575, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.lte", + "ranges": [{ "startOffset": 20592, "endOffset": 20648, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.max", + "ranges": [{ "startOffset": 20665, "endOffset": 20721, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.int", + "ranges": [{ "startOffset": 20738, "endOffset": 20773, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.safe", + "ranges": [{ "startOffset": 20791, "endOffset": 20826, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.positive", + "ranges": [{ "startOffset": 20848, "endOffset": 20892, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.nonnegative", + "ranges": [{ "startOffset": 20917, "endOffset": 20962, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.negative", + "ranges": [{ "startOffset": 20984, "endOffset": 21028, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.nonpositive", + "ranges": [{ "startOffset": 21053, "endOffset": 21098, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.multipleOf", + "ranges": [{ "startOffset": 21122, "endOffset": 21185, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.step", + "ranges": [{ "startOffset": 21203, "endOffset": 21266, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.finite", + "ranges": [{ "startOffset": 21352, "endOffset": 21362, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "number", + "ranges": [{ "startOffset": 21837, "endOffset": 21916, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 21980, "endOffset": 22080, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "int", + "ranges": [{ "startOffset": 22083, "endOffset": 22162, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "float32", + "ranges": [{ "startOffset": 22163, "endOffset": 22250, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "float64", + "ranges": [{ "startOffset": 22251, "endOffset": 22338, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "int32", + "ranges": [{ "startOffset": 22339, "endOffset": 22422, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "uint32", + "ranges": [{ "startOffset": 22423, "endOffset": 22508, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 22562, "endOffset": 22766, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "inst._zod.processJSONSchema", + "ranges": [{ "startOffset": 22688, "endOffset": 22763, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "boolean", + "ranges": [{ "startOffset": 22769, "endOffset": 22851, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 22903, "endOffset": 24227, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "bigint", + "ranges": [{ "startOffset": 24230, "endOffset": 24309, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 24373, "endOffset": 24473, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "int64", + "ranges": [{ "startOffset": 24485, "endOffset": 24568, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "uint64", + "ranges": [{ "startOffset": 24579, "endOffset": 24664, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 24716, "endOffset": 24918, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "symbol", + "ranges": [{ "startOffset": 24921, "endOffset": 25000, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 25058, "endOffset": 25266, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_undefined", + "ranges": [{ "startOffset": 25269, "endOffset": 25358, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 25406, "endOffset": 25604, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_null", + "ranges": [{ "startOffset": 25607, "endOffset": 25681, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 25727, "endOffset": 25923, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "any", + "ranges": [{ "startOffset": 25926, "endOffset": 25982, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 26036, "endOffset": 26240, "count": 6 }], + "isBlockCoverage": true + }, + { + "functionName": "inst._zod.processJSONSchema", + "ranges": [{ "startOffset": 26162, "endOffset": 26237, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "unknown", + "ranges": [{ "startOffset": 26243, "endOffset": 26311, "count": 6 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 26361, "endOffset": 26561, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "never", + "ranges": [{ "startOffset": 26564, "endOffset": 26640, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 26688, "endOffset": 26886, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_void", + "ranges": [{ "startOffset": 26889, "endOffset": 26963, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 27011, "endOffset": 27502, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "date", + "ranges": [{ "startOffset": 27505, "endOffset": 27578, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 27628, "endOffset": 28220, "count": 10 }], + "isBlockCoverage": true + }, + { + "functionName": "inst._zod.processJSONSchema", + "ranges": [{ "startOffset": 27752, "endOffset": 27825, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.min", + "ranges": [{ "startOffset": 27874, "endOffset": 27944, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.nonempty", + "ranges": [{ "startOffset": 27966, "endOffset": 28017, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.max", + "ranges": [{ "startOffset": 28034, "endOffset": 28104, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.length", + "ranges": [{ "startOffset": 28124, "endOffset": 28179, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.unwrap", + "ranges": [{ "startOffset": 28199, "endOffset": 28217, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "array", + "ranges": [{ "startOffset": 28223, "endOffset": 28317, "count": 10 }], + "isBlockCoverage": true + }, + { + "functionName": "keyof", + "ranges": [{ "startOffset": 28328, "endOffset": 28433, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 28485, "endOffset": 29822, "count": 43 }], + "isBlockCoverage": true + }, + { + "functionName": "inst._zod.processJSONSchema", + "ranges": [{ "startOffset": 28613, "endOffset": 28687, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 28735, "endOffset": 28774, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.keyof", + "ranges": [{ "startOffset": 28794, "endOffset": 28839, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.catchall", + "ranges": [{ "startOffset": 28861, "endOffset": 28927, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "inst.passthrough", + "ranges": [{ "startOffset": 28952, "endOffset": 29011, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.loose", + "ranges": [{ "startOffset": 29030, "endOffset": 29089, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.strict", + "ranges": [{ "startOffset": 29109, "endOffset": 29166, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.strip", + "ranges": [{ "startOffset": 29185, "endOffset": 29244, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.extend", + "ranges": [{ "startOffset": 29264, "endOffset": 29340, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.safeExtend", + "ranges": [{ "startOffset": 29364, "endOffset": 29444, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.merge", + "ranges": [{ "startOffset": 29463, "endOffset": 29508, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.pick", + "ranges": [{ "startOffset": 29526, "endOffset": 29568, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.omit", + "ranges": [{ "startOffset": 29586, "endOffset": 29628, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.partial", + "ranges": [{ "startOffset": 29649, "endOffset": 29721, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.required", + "ranges": [{ "startOffset": 29743, "endOffset": 29819, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "object", + "ranges": [ + { "startOffset": 29825, "endOffset": 30027, "count": 41 }, + { "startOffset": 29921, "endOffset": 29926, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "strictObject", + "ranges": [{ "startOffset": 30044, "endOffset": 30245, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "looseObject", + "ranges": [{ "startOffset": 30261, "endOffset": 30463, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 30513, "endOffset": 30745, "count": 17 }], + "isBlockCoverage": true + }, + { + "functionName": "inst._zod.processJSONSchema", + "ranges": [{ "startOffset": 30637, "endOffset": 30710, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "union", + "ranges": [{ "startOffset": 30748, "endOffset": 30926, "count": 13 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 30972, "endOffset": 31203, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "xor", + "ranges": [{ "startOffset": 31410, "endOffset": 31610, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 31686, "endOffset": 31791, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "discriminatedUnion", + "ranges": [{ "startOffset": 31794, "endOffset": 32066, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 32130, "endOffset": 32344, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "intersection", + "ranges": [{ "startOffset": 32347, "endOffset": 32506, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 32556, "endOffset": 32849, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "tuple", + "ranges": [{ "startOffset": 32852, "endOffset": 33217, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 33269, "endOffset": 33539, "count": 6 }], + "isBlockCoverage": true + }, + { + "functionName": "inst._zod.processJSONSchema", + "ranges": [{ "startOffset": 33394, "endOffset": 33468, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "record", + "ranges": [{ "startOffset": 33542, "endOffset": 33755, "count": 6 }], + "isBlockCoverage": true + }, + { + "functionName": "partialRecord", + "ranges": [{ "startOffset": 33806, "endOffset": 34095, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "looseRecord", + "ranges": [{ "startOffset": 34096, "endOffset": 34337, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 34383, "endOffset": 34907, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "map", + "ranges": [{ "startOffset": 34910, "endOffset": 35123, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 35169, "endOffset": 35625, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 35628, "endOffset": 35806, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 35854, "endOffset": 37178, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_enum", + "ranges": [{ "startOffset": 37181, "endOffset": 37447, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "nativeEnum", + "ranges": [{ "startOffset": 37608, "endOffset": 37780, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 37834, "endOffset": 38355, "count": 37 }], + "isBlockCoverage": true + }, + { + "functionName": "inst._zod.processJSONSchema", + "ranges": [{ "startOffset": 37960, "endOffset": 38035, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 38127, "endOffset": 38344, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "literal", + "ranges": [ + { "startOffset": 38358, "endOffset": 38570, "count": 37 }, + { "startOffset": 38490, "endOffset": 38497, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 38618, "endOffset": 39071, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "file", + "ranges": [{ "startOffset": 39074, "endOffset": 39147, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 39205, "endOffset": 40574, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transform", + "ranges": [{ "startOffset": 40577, "endOffset": 40699, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 40755, "endOffset": 41010, "count": 44 }], + "isBlockCoverage": true + }, + { + "functionName": "inst._zod.processJSONSchema", + "ranges": [{ "startOffset": 40882, "endOffset": 40958, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.unwrap", + "ranges": [{ "startOffset": 40978, "endOffset": 41007, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "optional", + "ranges": [{ "startOffset": 41013, "endOffset": 41146, "count": 44 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 41212, "endOffset": 41472, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "exactOptional", + "ranges": [{ "startOffset": 41475, "endOffset": 41618, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 41674, "endOffset": 41929, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "inst._zod.processJSONSchema", + "ranges": [{ "startOffset": 41801, "endOffset": 41877, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.unwrap", + "ranges": [{ "startOffset": 41897, "endOffset": 41926, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "nullable", + "ranges": [{ "startOffset": 41932, "endOffset": 42065, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "nullish", + "ranges": [{ "startOffset": 42077, "endOffset": 42150, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 42204, "endOffset": 42495, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_default", + "ranges": [{ "startOffset": 42498, "endOffset": 42800, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 42856, "endOffset": 43111, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "prefault", + "ranges": [{ "startOffset": 43114, "endOffset": 43418, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 43480, "endOffset": 43741, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "nonoptional", + "ranges": [{ "startOffset": 43744, "endOffset": 43946, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 44000, "endOffset": 44253, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "success", + "ranges": [{ "startOffset": 44256, "endOffset": 44386, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 44436, "endOffset": 44721, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_catch", + "ranges": [{ "startOffset": 44724, "endOffset": 44949, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 44995, "endOffset": 45191, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "nan", + "ranges": [{ "startOffset": 45194, "endOffset": 45264, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 45312, "endOffset": 45556, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pipe", + "ranges": [{ "startOffset": 45559, "endOffset": 45728, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 45778, "endOffset": 45869, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "codec", + "ranges": [{ "startOffset": 45872, "endOffset": 46082, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 46138, "endOffset": 46393, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readonly", + "ranges": [{ "startOffset": 46396, "endOffset": 46529, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 46599, "endOffset": 46819, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "templateLiteral", + "ranges": [{ "startOffset": 46822, "endOffset": 47018, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 47066, "endOffset": 47312, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "inst._zod.processJSONSchema", + "ranges": [{ "startOffset": 47189, "endOffset": 47261, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst.unwrap", + "ranges": [{ "startOffset": 47281, "endOffset": 47309, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lazy", + "ranges": [{ "startOffset": 47315, "endOffset": 47427, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 47481, "endOffset": 47734, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "promise", + "ranges": [{ "startOffset": 47737, "endOffset": 47867, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 47923, "endOffset": 48129, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_function", + "ranges": [{ "startOffset": 48132, "endOffset": 48384, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 48436, "endOffset": 48638, "count": 5 }], + "isBlockCoverage": true + }, + { + "functionName": "inst._zod.processJSONSchema", + "ranges": [{ "startOffset": 48561, "endOffset": 48635, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "check", + "ranges": [{ "startOffset": 48658, "endOffset": 48832, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "custom", + "ranges": [ + { "startOffset": 48833, "endOffset": 48938, "count": 1 }, + { "startOffset": 48910, "endOffset": 48925, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 48914, "endOffset": 48924, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "refine", + "ranges": [{ "startOffset": 48939, "endOffset": 49033, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "superRefine", + "ranges": [{ "startOffset": 49049, "endOffset": 49111, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_instanceof", + "ranges": [{ "startOffset": 49213, "endOffset": 49918, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "fn", + "ranges": [{ "startOffset": 49356, "endOffset": 49385, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inst._zod.check", + "ranges": [{ "startOffset": 49582, "endOffset": 49898, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stringbool", + "ranges": [{ "startOffset": 49952, "endOffset": 50088, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "json", + "ranges": [{ "startOffset": 50123, "endOffset": 50334, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "preprocess", + "ranges": [{ "startOffset": 50415, "endOffset": 50490, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1493", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/classic/checks.cjs", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 4016, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 725, "endOffset": 763, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 831, "endOffset": 870, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 937, "endOffset": 975, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1043, "endOffset": 1082, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1155, "endOffset": 1199, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1272, "endOffset": 1316, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1392, "endOffset": 1439, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1515, "endOffset": 1562, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1637, "endOffset": 1683, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1755, "endOffset": 1798, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1870, "endOffset": 1913, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1982, "endOffset": 2022, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2096, "endOffset": 2141, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2215, "endOffset": 2260, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2331, "endOffset": 2373, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2443, "endOffset": 2484, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2558, "endOffset": 2603, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2677, "endOffset": 2722, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2795, "endOffset": 2839, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2914, "endOffset": 2960, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3033, "endOffset": 3077, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3150, "endOffset": 3194, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3263, "endOffset": 3303, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3377, "endOffset": 3422, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3496, "endOffset": 3541, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3610, "endOffset": 3650, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3726, "endOffset": 3773, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3849, "endOffset": 3896, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3968, "endOffset": 4011, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1494", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/classic/iso.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 2413, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 2 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1478, "endOffset": 1583, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "datetime", + "ranges": [{ "startOffset": 1586, "endOffset": 1677, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1731, "endOffset": 1832, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "date", + "ranges": [{ "startOffset": 1835, "endOffset": 1914, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1968, "endOffset": 2069, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "time", + "ranges": [{ "startOffset": 2072, "endOffset": 2151, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2213, "endOffset": 2318, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "duration", + "ranges": [{ "startOffset": 2321, "endOffset": 2412, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1495", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/classic/parse.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 2271, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1496", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/classic/errors.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 2769, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 2 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "initializer", + "ranges": [{ "startOffset": 1336, "endOffset": 2502, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1497", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/classic/compat.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 2602, "count": 1 }, + { "startOffset": 429, "endOffset": 510, "count": 0 }, + { "startOffset": 686, "endOffset": 728, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 110, "endOffset": 427, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 432, "endOffset": 509, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 593, "endOffset": 684, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 688, "endOffset": 728, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 781, "endOffset": 1061, "count": 1 }, + { "startOffset": 840, "endOffset": 1060, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1947, "endOffset": 1988, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2059, "endOffset": 2100, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setErrorMap", + "ranges": [{ "startOffset": 2156, "endOffset": 2237, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getErrorMap", + "ranges": [{ "startOffset": 2283, "endOffset": 2347, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2476, "endOffset": 2512, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1498", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/classic/from-json-schema.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 24374, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 3 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "detectVersion", + "ranges": [{ "startOffset": 2832, "endOffset": 3337, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolveRef", + "ranges": [{ "startOffset": 3338, "endOffset": 3997, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "convertBaseSchema", + "ranges": [{ "startOffset": 3998, "endOffset": 20776, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "convertSchema", + "ranges": [{ "startOffset": 20777, "endOffset": 23694, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fromJSONSchema", + "ranges": [{ "startOffset": 23834, "endOffset": 24373, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1499", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v4/classic/coerce.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 1772, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 88, "endOffset": 405, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 2 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "string", + "ranges": [{ "startOffset": 1340, "endOffset": 1426, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "number", + "ranges": [{ "startOffset": 1427, "endOffset": 1513, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "boolean", + "ranges": [{ "startOffset": 1514, "endOffset": 1603, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "bigint", + "ranges": [{ "startOffset": 1604, "endOffset": 1690, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "date", + "ranges": [{ "startOffset": 1691, "endOffset": 1771, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1500", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v3/index.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 1464, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 88, "endOffset": 405, "count": 107 }, + { "startOffset": 248, "endOffset": 284, "count": 0 }, + { "startOffset": 287, "endOffset": 363, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 327, "endOffset": 354, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__exportStar", + "ranges": [ + { "startOffset": 1091, "endOffset": 1242, "count": 1 }, + { "startOffset": 1135, "endOffset": 1240, "count": 107 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1501", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v3/external.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 1076, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 88, "endOffset": 405, "count": 107 }, + { "startOffset": 232, "endOffset": 247, "count": 0 }, + { "startOffset": 264, "endOffset": 284, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 327, "endOffset": 354, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__exportStar", + "ranges": [ + { "startOffset": 541, "endOffset": 692, "count": 6 }, + { "startOffset": 585, "endOffset": 690, "count": 107 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1502", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v3/errors.cjs", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 579, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 70, "endOffset": 151, "count": 1 }, + { "startOffset": 122, "endOffset": 127, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "setErrorMap", + "ranges": [{ "startOffset": 465, "endOffset": 522, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getErrorMap", + "ranges": [{ "startOffset": 523, "endOffset": 578, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1503", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v3/locales/en.cjs", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 6005, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "errorMap", + "ranges": [{ "startOffset": 194, "endOffset": 5941, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1504", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v3/ZodError.cjs", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 4593, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "quotelessJson", + "ranges": [{ "startOffset": 643, "endOffset": 749, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get errors", + "ranges": [{ "startOffset": 825, "endOffset": 873, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodError", + "ranges": [{ "startOffset": 878, "endOffset": 1477, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "format", + "ranges": [{ "startOffset": 1482, "endOffset": 3504, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "assert", + "ranges": [{ "startOffset": 3516, "endOffset": 3648, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toString", + "ranges": [{ "startOffset": 3653, "endOffset": 3700, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get message", + "ranges": [{ "startOffset": 3705, "endOffset": 3811, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get isEmpty", + "ranges": [{ "startOffset": 3816, "endOffset": 3878, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "flatten", + "ranges": [{ "startOffset": 3883, "endOffset": 4408, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get formErrors", + "ranges": [{ "startOffset": 4413, "endOffset": 4468, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodError.create", + "ranges": [{ "startOffset": 4518, "endOffset": 4591, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1505", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v3/helpers/util.cjs", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 4401, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 180, "endOffset": 2171, "count": 1 }, + { "startOffset": 1153, "endOffset": 1413, "count": 0 }, + { "startOffset": 1728, "endOffset": 1813, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "util.assertEqual", + "ranges": [{ "startOffset": 221, "endOffset": 231, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "assertIs", + "ranges": [{ "startOffset": 237, "endOffset": 264, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "assertNever", + "ranges": [{ "startOffset": 299, "endOffset": 358, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "util.arrayToEnum", + "ranges": [ + { "startOffset": 418, "endOffset": 556, "count": 2 }, + { "startOffset": 489, "endOffset": 530, "count": 36 } + ], + "isBlockCoverage": true + }, + { + "functionName": "util.getValidEnumValues", + "ranges": [{ "startOffset": 588, "endOffset": 853, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "util.objectValues", + "ranges": [{ "startOffset": 879, "endOffset": 989, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "util.objectKeys.Object.keys.keys", + "ranges": [{ "startOffset": 1088, "endOffset": 1113, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "util.objectKeys", + "ranges": [{ "startOffset": 1155, "endOffset": 1413, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "util.find", + "ranges": [{ "startOffset": 1431, "endOffset": 1586, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1658, "endOffset": 1688, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "util.isInteger", + "ranges": [{ "startOffset": 1730, "endOffset": 1813, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "joinValues", + "ranges": [{ "startOffset": 1819, "endOffset": 1969, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "util.jsonStringifyReplacer", + "ranges": [{ "startOffset": 2037, "endOffset": 2168, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2227, "endOffset": 2409, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "objectUtil.mergeShapes", + "ranges": [{ "startOffset": 2280, "endOffset": 2406, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getParsedType", + "ranges": [{ "startOffset": 2806, "endOffset": 4360, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1506", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v3/helpers/parseUtil.cjs", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 4272, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 70, "endOffset": 151, "count": 1 }, + { "startOffset": 122, "endOffset": 127, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "makeIssue", + "ranges": [{ "startOffset": 582, "endOffset": 1298, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addIssueToContext", + "ranges": [{ "startOffset": 1356, "endOffset": 1983, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ParseStatus", + "ranges": [{ "startOffset": 2008, "endOffset": 2059, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "dirty", + "ranges": [{ "startOffset": 2064, "endOffset": 2149, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "abort", + "ranges": [{ "startOffset": 2154, "endOffset": 2243, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mergeArray", + "ranges": [{ "startOffset": 2255, "endOffset": 2614, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mergeObjectAsync", + "ranges": [{ "startOffset": 2626, "endOffset": 2983, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mergeObjectSync", + "ranges": [{ "startOffset": 2995, "endOffset": 3696, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "DIRTY", + "ranges": [{ "startOffset": 3809, "endOffset": 3848, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "OK", + "ranges": [{ "startOffset": 3884, "endOffset": 3923, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isAborted", + "ranges": [{ "startOffset": 3960, "endOffset": 3989, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isDirty", + "ranges": [{ "startOffset": 4038, "endOffset": 4065, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isValid", + "ranges": [{ "startOffset": 4110, "endOffset": 4137, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isAsync", + "ranges": [{ "startOffset": 4182, "endOffset": 4243, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1507", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v3/helpers/typeAliases.cjs", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 77, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1508", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v3/types.cjs", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 140154, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "ParseInputLazyPath", + "ranges": [{ "startOffset": 2057, "endOffset": 2242, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get path", + "ranges": [{ "startOffset": 2247, "endOffset": 2572, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "handleResult", + "ranges": [{ "startOffset": 2596, "endOffset": 3185, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "processCreateParams", + "ranges": [{ "startOffset": 3187, "endOffset": 4156, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get description", + "ranges": [{ "startOffset": 4177, "endOffset": 4240, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_getType", + "ranges": [{ "startOffset": 4245, "endOffset": 4325, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_getOrReturnCtx", + "ranges": [{ "startOffset": 4330, "endOffset": 4651, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_processInputParams", + "ranges": [{ "startOffset": 4656, "endOffset": 5079, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parseSync", + "ranges": [{ "startOffset": 5084, "endOffset": 5307, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parseAsync", + "ranges": [{ "startOffset": 5312, "endOffset": 5421, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parse", + "ranges": [{ "startOffset": 5426, "endOffset": 5594, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "safeParse", + "ranges": [{ "startOffset": 5599, "endOffset": 6140, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "~validate", + "ranges": [{ "startOffset": 6145, "endOffset": 7464, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseAsync", + "ranges": [{ "startOffset": 7469, "endOffset": 7659, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "safeParseAsync", + "ranges": [{ "startOffset": 7664, "endOffset": 8337, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "refine", + "ranges": [{ "startOffset": 8342, "endOffset": 9532, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "refinement", + "ranges": [{ "startOffset": 9537, "endOffset": 9887, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_refinement", + "ranges": [{ "startOffset": 9892, "endOffset": 10105, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "superRefine", + "ranges": [{ "startOffset": 10110, "endOffset": 10186, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodType", + "ranges": [{ "startOffset": 10191, "endOffset": 11632, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "optional", + "ranges": [{ "startOffset": 11637, "endOffset": 11707, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "nullable", + "ranges": [{ "startOffset": 11712, "endOffset": 11782, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "nullish", + "ranges": [{ "startOffset": 11787, "endOffset": 11847, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "array", + "ranges": [{ "startOffset": 11852, "endOffset": 11905, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "promise", + "ranges": [{ "startOffset": 11910, "endOffset": 11978, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "or", + "ranges": [{ "startOffset": 11983, "endOffset": 12060, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "and", + "ranges": [{ "startOffset": 12065, "endOffset": 12152, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transform", + "ranges": [{ "startOffset": 12157, "endOffset": 12412, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default", + "ranges": [{ "startOffset": 12417, "endOffset": 12735, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "brand", + "ranges": [{ "startOffset": 12740, "endOffset": 12926, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "catch", + "ranges": [{ "startOffset": 12931, "endOffset": 13237, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "describe", + "ranges": [{ "startOffset": 13242, "endOffset": 13399, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pipe", + "ranges": [{ "startOffset": 13404, "endOffset": 13473, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readonly", + "ranges": [{ "startOffset": 13478, "endOffset": 13537, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isOptional", + "ranges": [{ "startOffset": 13542, "endOffset": 13612, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isNullable", + "ranges": [{ "startOffset": 13617, "endOffset": 13682, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "timeRegexSource", + "ranges": [{ "startOffset": 20435, "endOffset": 20915, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "timeRegex", + "ranges": [{ "startOffset": 20916, "endOffset": 20997, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "datetimeRegex", + "ranges": [{ "startOffset": 21050, "endOffset": 21350, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isValidIP", + "ranges": [{ "startOffset": 21351, "endOffset": 21586, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isValidJWT", + "ranges": [{ "startOffset": 21587, "endOffset": 22403, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isValidCidr", + "ranges": [{ "startOffset": 22404, "endOffset": 22649, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 22688, "endOffset": 37042, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_regex", + "ranges": [{ "startOffset": 37047, "endOffset": 37306, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_addCheck", + "ranges": [{ "startOffset": 37311, "endOffset": 37454, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "email", + "ranges": [{ "startOffset": 37459, "endOffset": 37578, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "url", + "ranges": [{ "startOffset": 37583, "endOffset": 37698, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "emoji", + "ranges": [{ "startOffset": 37703, "endOffset": 37822, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "uuid", + "ranges": [{ "startOffset": 37827, "endOffset": 37944, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "nanoid", + "ranges": [{ "startOffset": 37949, "endOffset": 38070, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cuid", + "ranges": [{ "startOffset": 38075, "endOffset": 38192, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cuid2", + "ranges": [{ "startOffset": 38197, "endOffset": 38316, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ulid", + "ranges": [{ "startOffset": 38321, "endOffset": 38438, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "base64", + "ranges": [{ "startOffset": 38443, "endOffset": 38564, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "base64url", + "ranges": [{ "startOffset": 38569, "endOffset": 38833, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "jwt", + "ranges": [{ "startOffset": 38838, "endOffset": 38953, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ip", + "ranges": [{ "startOffset": 38958, "endOffset": 39071, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cidr", + "ranges": [{ "startOffset": 39076, "endOffset": 39193, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "datetime", + "ranges": [{ "startOffset": 39198, "endOffset": 39816, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "date", + "ranges": [{ "startOffset": 39821, "endOffset": 39900, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "time", + "ranges": [{ "startOffset": 39905, "endOffset": 40360, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "duration", + "ranges": [{ "startOffset": 40365, "endOffset": 40490, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "regex", + "ranges": [{ "startOffset": 40495, "endOffset": 40680, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "includes", + "ranges": [{ "startOffset": 40685, "endOffset": 40926, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "startsWith", + "ranges": [{ "startOffset": 40931, "endOffset": 41126, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "endsWith", + "ranges": [{ "startOffset": 41131, "endOffset": 41322, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "min", + "ranges": [{ "startOffset": 41327, "endOffset": 41516, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "max", + "ranges": [{ "startOffset": 41521, "endOffset": 41710, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "length", + "ranges": [{ "startOffset": 41715, "endOffset": 41898, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "nonempty", + "ranges": [{ "startOffset": 41950, "endOffset": 42047, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "trim", + "ranges": [{ "startOffset": 42052, "endOffset": 42196, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toLowerCase", + "ranges": [{ "startOffset": 42201, "endOffset": 42359, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toUpperCase", + "ranges": [{ "startOffset": 42364, "endOffset": 42522, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get isDatetime", + "ranges": [{ "startOffset": 42527, "endOffset": 42623, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get isDate", + "ranges": [{ "startOffset": 42628, "endOffset": 42716, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get isTime", + "ranges": [{ "startOffset": 42721, "endOffset": 42809, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get isDuration", + "ranges": [{ "startOffset": 42814, "endOffset": 42910, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get isEmail", + "ranges": [{ "startOffset": 42915, "endOffset": 43005, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get isURL", + "ranges": [{ "startOffset": 43010, "endOffset": 43096, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get isEmoji", + "ranges": [{ "startOffset": 43101, "endOffset": 43191, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get isUUID", + "ranges": [{ "startOffset": 43196, "endOffset": 43284, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get isNANOID", + "ranges": [{ "startOffset": 43289, "endOffset": 43381, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get isCUID", + "ranges": [{ "startOffset": 43386, "endOffset": 43474, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get isCUID2", + "ranges": [{ "startOffset": 43479, "endOffset": 43569, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get isULID", + "ranges": [{ "startOffset": 43574, "endOffset": 43662, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get isIP", + "ranges": [{ "startOffset": 43667, "endOffset": 43751, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get isCIDR", + "ranges": [{ "startOffset": 43756, "endOffset": 43844, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get isBase64", + "ranges": [{ "startOffset": 43849, "endOffset": 43941, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get isBase64url", + "ranges": [{ "startOffset": 43946, "endOffset": 44148, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get minLength", + "ranges": [{ "startOffset": 44153, "endOffset": 44414, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get maxLength", + "ranges": [{ "startOffset": 44419, "endOffset": 44680, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodString.create", + "ranges": [{ "startOffset": 44733, "endOffset": 44935, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "floatSafeRemainder", + "ranges": [{ "startOffset": 45067, "endOffset": 45529, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodNumber", + "ranges": [{ "startOffset": 45568, "endOffset": 45713, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 45718, "endOffset": 49414, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "gte", + "ranges": [{ "startOffset": 49419, "endOffset": 49540, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "gt", + "ranges": [{ "startOffset": 49545, "endOffset": 49666, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lte", + "ranges": [{ "startOffset": 49671, "endOffset": 49792, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lt", + "ranges": [{ "startOffset": 49797, "endOffset": 49918, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setLimit", + "ranges": [{ "startOffset": 49923, "endOffset": 50309, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_addCheck", + "ranges": [{ "startOffset": 50314, "endOffset": 50457, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "int", + "ranges": [{ "startOffset": 50462, "endOffset": 50616, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "positive", + "ranges": [{ "startOffset": 50621, "endOffset": 50832, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "negative", + "ranges": [{ "startOffset": 50837, "endOffset": 51048, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "nonpositive", + "ranges": [{ "startOffset": 51053, "endOffset": 51266, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "nonnegative", + "ranges": [{ "startOffset": 51271, "endOffset": 51484, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "multipleOf", + "ranges": [{ "startOffset": 51489, "endOffset": 51690, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "finite", + "ranges": [{ "startOffset": 51695, "endOffset": 51855, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "safe", + "ranges": [{ "startOffset": 51860, "endOffset": 52274, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get minValue", + "ranges": [{ "startOffset": 52279, "endOffset": 52539, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get maxValue", + "ranges": [{ "startOffset": 52544, "endOffset": 52804, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get isInt", + "ranges": [{ "startOffset": 52809, "endOffset": 52963, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get isFinite", + "ranges": [{ "startOffset": 52968, "endOffset": 53574, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodNumber.create", + "ranges": [{ "startOffset": 53627, "endOffset": 53829, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodBigInt", + "ranges": [{ "startOffset": 53869, "endOffset": 53977, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 53982, "endOffset": 56467, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_getInvalidInput", + "ranges": [{ "startOffset": 56472, "endOffset": 56807, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "gte", + "ranges": [{ "startOffset": 56812, "endOffset": 56933, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "gt", + "ranges": [{ "startOffset": 56938, "endOffset": 57059, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lte", + "ranges": [{ "startOffset": 57064, "endOffset": 57185, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lt", + "ranges": [{ "startOffset": 57190, "endOffset": 57311, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setLimit", + "ranges": [{ "startOffset": 57316, "endOffset": 57702, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_addCheck", + "ranges": [{ "startOffset": 57707, "endOffset": 57850, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "positive", + "ranges": [{ "startOffset": 57855, "endOffset": 58074, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "negative", + "ranges": [{ "startOffset": 58079, "endOffset": 58298, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "nonpositive", + "ranges": [{ "startOffset": 58303, "endOffset": 58524, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "nonnegative", + "ranges": [{ "startOffset": 58529, "endOffset": 58750, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "multipleOf", + "ranges": [{ "startOffset": 58755, "endOffset": 58949, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get minValue", + "ranges": [{ "startOffset": 58954, "endOffset": 59214, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get maxValue", + "ranges": [{ "startOffset": 59219, "endOffset": 59479, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodBigInt.create", + "ranges": [{ "startOffset": 59532, "endOffset": 59734, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 59775, "endOffset": 60389, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodBoolean.create", + "ranges": [{ "startOffset": 60445, "endOffset": 60629, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 60667, "endOffset": 63049, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_addCheck", + "ranges": [{ "startOffset": 63054, "endOffset": 63195, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "min", + "ranges": [{ "startOffset": 63200, "endOffset": 63401, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "max", + "ranges": [{ "startOffset": 63406, "endOffset": 63607, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get minDate", + "ranges": [{ "startOffset": 63612, "endOffset": 63902, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get maxDate", + "ranges": [{ "startOffset": 63907, "endOffset": 64197, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodDate.create", + "ranges": [{ "startOffset": 64244, "endOffset": 64442, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 64482, "endOffset": 65006, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodSymbol.create", + "ranges": [{ "startOffset": 65059, "endOffset": 65200, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 65243, "endOffset": 65773, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodUndefined.create", + "ranges": [{ "startOffset": 65835, "endOffset": 65982, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 66020, "endOffset": 66540, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodNull.create", + "ranges": [{ "startOffset": 66587, "endOffset": 66724, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodAny", + "ranges": [{ "startOffset": 66761, "endOffset": 66956, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 66961, "endOffset": 67033, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodAny.create", + "ranges": [{ "startOffset": 67077, "endOffset": 67212, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodUnknown", + "ranges": [{ "startOffset": 67253, "endOffset": 67353, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 67358, "endOffset": 67430, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodUnknown.create", + "ranges": [{ "startOffset": 67486, "endOffset": 67629, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 67668, "endOffset": 67992, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodNever.create", + "ranges": [{ "startOffset": 68042, "endOffset": 68181, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 68219, "endOffset": 68744, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodVoid.create", + "ranges": [{ "startOffset": 68791, "endOffset": 68928, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 68967, "endOffset": 71770, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get element", + "ranges": [{ "startOffset": 71775, "endOffset": 71827, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "min", + "ranges": [{ "startOffset": 71832, "endOffset": 72029, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "max", + "ranges": [{ "startOffset": 72034, "endOffset": 72231, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "length", + "ranges": [{ "startOffset": 72236, "endOffset": 72426, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "nonempty", + "ranges": [{ "startOffset": 72431, "endOffset": 72493, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodArray.create", + "ranges": [{ "startOffset": 72543, "endOffset": 72789, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "deepPartialify", + "ranges": [{ "startOffset": 72791, "endOffset": 73766, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodObject", + "ranges": [{ "startOffset": 73805, "endOffset": 75360, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_getCached", + "ranges": [{ "startOffset": 75365, "endOffset": 75618, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 75623, "endOffset": 79220, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get shape", + "ranges": [{ "startOffset": 79225, "endOffset": 79278, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "strict", + "ranges": [{ "startOffset": 79283, "endOffset": 80082, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "strip", + "ranges": [{ "startOffset": 80087, "endOffset": 80205, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "passthrough", + "ranges": [{ "startOffset": 80210, "endOffset": 80340, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "extend", + "ranges": [{ "startOffset": 80866, "endOffset": 81078, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "merge", + "ranges": [{ "startOffset": 81243, "endOffset": 81613, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setKey", + "ranges": [{ "startOffset": 82815, "endOffset": 82890, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "catchall", + "ranges": [{ "startOffset": 83713, "endOffset": 83834, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pick", + "ranges": [{ "startOffset": 83839, "endOffset": 84163, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "omit", + "ranges": [{ "startOffset": 84168, "endOffset": 84480, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "deepPartial", + "ranges": [{ "startOffset": 84520, "endOffset": 84578, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "partial", + "ranges": [{ "startOffset": 84583, "endOffset": 85049, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "required", + "ranges": [{ "startOffset": 85054, "endOffset": 85691, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "keyof", + "ranges": [{ "startOffset": 85696, "endOffset": 85780, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodObject.create", + "ranges": [{ "startOffset": 85833, "endOffset": 86076, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodObject.strictCreate", + "ranges": [{ "startOffset": 86103, "endOffset": 86347, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodObject.lazycreate", + "ranges": [{ "startOffset": 86372, "endOffset": 86602, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 86641, "endOffset": 89752, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get options", + "ranges": [{ "startOffset": 89757, "endOffset": 89812, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodUnion.create", + "ranges": [{ "startOffset": 89862, "endOffset": 90032, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getDiscriminator", + "ranges": [{ "startOffset": 90437, "endOffset": 91747, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 91799, "endOffset": 93096, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get discriminator", + "ranges": [{ "startOffset": 93101, "endOffset": 93168, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get options", + "ranges": [{ "startOffset": 93173, "endOffset": 93228, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get optionsMap", + "ranges": [{ "startOffset": 93233, "endOffset": 93294, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 93773, "endOffset": 94792, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mergeValues", + "ranges": [{ "startOffset": 94850, "endOffset": 96449, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 96494, "endOffset": 98182, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodIntersection.create", + "ranges": [{ "startOffset": 98253, "endOffset": 98461, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 98555, "endOffset": 100438, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get items", + "ranges": [{ "startOffset": 100443, "endOffset": 100494, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "rest", + "ranges": [{ "startOffset": 100499, "endOffset": 100603, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodTuple.create", + "ranges": [{ "startOffset": 100653, "endOffset": 100968, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get keySchema", + "ranges": [{ "startOffset": 101008, "endOffset": 101065, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get valueSchema", + "ranges": [{ "startOffset": 101070, "endOffset": 101131, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 101136, "endOffset": 102235, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get element", + "ranges": [{ "startOffset": 102240, "endOffset": 102297, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 102309, "endOffset": 102833, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get keySchema", + "ranges": [{ "startOffset": 102902, "endOffset": 102959, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get valueSchema", + "ranges": [{ "startOffset": 102964, "endOffset": 103025, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 103030, "endOffset": 105210, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodMap.create", + "ranges": [{ "startOffset": 105254, "endOffset": 105445, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 105482, "endOffset": 107747, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "min", + "ranges": [{ "startOffset": 107752, "endOffset": 107941, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "max", + "ranges": [{ "startOffset": 107946, "endOffset": 108135, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "size", + "ranges": [{ "startOffset": 108140, "endOffset": 108226, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "nonempty", + "ranges": [{ "startOffset": 108231, "endOffset": 108293, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodSet.create", + "ranges": [{ "startOffset": 108337, "endOffset": 108548, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodFunction", + "ranges": [{ "startOffset": 108590, "endOffset": 108680, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 108685, "endOffset": 112238, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parameters", + "ranges": [{ "startOffset": 112243, "endOffset": 112294, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "returnType", + "ranges": [{ "startOffset": 112299, "endOffset": 112353, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "args", + "ranges": [{ "startOffset": 112358, "endOffset": 112519, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "returns", + "ranges": [{ "startOffset": 112524, "endOffset": 112655, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "implement", + "ranges": [{ "startOffset": 112660, "endOffset": 112761, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "strictImplement", + "ranges": [{ "startOffset": 112766, "endOffset": 112873, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 112885, "endOffset": 113202, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get schema", + "ranges": [{ "startOffset": 113276, "endOffset": 113331, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 113336, "endOffset": 113544, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodLazy.create", + "ranges": [{ "startOffset": 113591, "endOffset": 113760, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 113801, "endOffset": 114247, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get value", + "ranges": [{ "startOffset": 114252, "endOffset": 114303, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodLiteral.create", + "ranges": [{ "startOffset": 114359, "endOffset": 114531, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createZodEnum", + "ranges": [{ "startOffset": 114533, "endOffset": 114713, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 114750, "endOffset": 115787, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get options", + "ranges": [{ "startOffset": 115792, "endOffset": 115846, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get enum", + "ranges": [{ "startOffset": 115851, "endOffset": 116018, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get Values", + "ranges": [{ "startOffset": 116023, "endOffset": 116192, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get Enum", + "ranges": [{ "startOffset": 116197, "endOffset": 116364, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "extract", + "ranges": [{ "startOffset": 116369, "endOffset": 116513, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "exclude", + "ranges": [{ "startOffset": 116518, "endOffset": 116707, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 116811, "endOffset": 118042, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get enum", + "ranges": [{ "startOffset": 118047, "endOffset": 118098, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodNativeEnum.create", + "ranges": [{ "startOffset": 118163, "endOffset": 118344, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "unwrap", + "ranges": [{ "startOffset": 118385, "endOffset": 118432, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 118437, "endOffset": 119258, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodPromise.create", + "ranges": [{ "startOffset": 119314, "endOffset": 119487, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "innerType", + "ranges": [{ "startOffset": 119528, "endOffset": 119580, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "sourceType", + "ranges": [{ "startOffset": 119585, "endOffset": 119764, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 119769, "endOffset": 124942, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodEffects.create", + "ranges": [{ "startOffset": 125035, "endOffset": 125226, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodEffects.createWithPreprocess", + "ranges": [{ "startOffset": 125262, "endOffset": 125504, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 125546, "endOffset": 125794, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "unwrap", + "ranges": [{ "startOffset": 125799, "endOffset": 125851, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodOptional.create", + "ranges": [{ "startOffset": 125910, "endOffset": 126086, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 126128, "endOffset": 126366, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "unwrap", + "ranges": [{ "startOffset": 126371, "endOffset": 126423, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodNullable.create", + "ranges": [{ "startOffset": 126482, "endOffset": 126658, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 126699, "endOffset": 127056, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "removeDefault", + "ranges": [{ "startOffset": 127061, "endOffset": 127120, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodDefault.create", + "ranges": [{ "startOffset": 127176, "endOffset": 127450, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 127489, "endOffset": 129004, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "removeCatch", + "ranges": [{ "startOffset": 129009, "endOffset": 129066, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodCatch.create", + "ranges": [{ "startOffset": 129116, "endOffset": 129378, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 129415, "endOffset": 129937, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodNaN.create", + "ranges": [{ "startOffset": 129981, "endOffset": 130116, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 130194, "endOffset": 130425, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "unwrap", + "ranges": [{ "startOffset": 130430, "endOffset": 130477, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 130553, "endOffset": 132201, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 132213, "endOffset": 132374, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 132452, "endOffset": 132832, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "unwrap", + "ranges": [{ "startOffset": 132837, "endOffset": 132889, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodReadonly.create", + "ranges": [{ "startOffset": 132948, "endOffset": 133124, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cleanParams", + "ranges": [{ "startOffset": 133413, "endOffset": 133644, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "custom", + "ranges": [{ "startOffset": 133645, "endOffset": 134642, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 134725, "endOffset": 136735, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Class", + "ranges": [{ "startOffset": 136863, "endOffset": 136884, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "instanceOfType", + "ranges": [{ "startOffset": 136910, "endOffset": 137096, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ostring", + "ranges": [{ "startOffset": 139528, "endOffset": 139557, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "onumber", + "ranges": [{ "startOffset": 139602, "endOffset": 139631, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "oboolean", + "ranges": [{ "startOffset": 139677, "endOffset": 139707, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "string", + "ranges": [{ "startOffset": 139770, "endOffset": 139821, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "number", + "ranges": [{ "startOffset": 139837, "endOffset": 139888, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "boolean", + "ranges": [{ "startOffset": 139905, "endOffset": 139978, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "bigint", + "ranges": [{ "startOffset": 139994, "endOffset": 140045, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "date", + "ranges": [{ "startOffset": 140059, "endOffset": 140108, "count": 0 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1509", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/v3/helpers/errorUtil.cjs", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 418, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 121, "endOffset": 364, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "errorUtil.errToObj", + "ranges": [{ "startOffset": 169, "endOffset": 239, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "errorUtil.toString", + "ranges": [{ "startOffset": 292, "endOffset": 361, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1510", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/eventsource-parser/dist/stream.cjs", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 818, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "EventSourceParserStream", + "ranges": [{ "startOffset": 169, "endOffset": 681, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1511", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/eventsource-parser/dist/index.cjs", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 6715, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "ParseError", + "ranges": [{ "startOffset": 110, "endOffset": 299, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "noop", + "ranges": [{ "startOffset": 338, "endOffset": 361, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createParser", + "ranges": [{ "startOffset": 362, "endOffset": 6131, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isDataPrefix", + "ranges": [{ "startOffset": 6132, "endOffset": 6351, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isEventPrefix", + "ranges": [{ "startOffset": 6352, "endOffset": 6609, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1512", + "url": "node:internal/webstreams/transformstream", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 18753, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "getNonWritablePropertyDescriptor", + "ranges": [{ "startOffset": 1598, "endOffset": 1684, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2498, "endOffset": 2525, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "TransformStream", + "ranges": [{ "startOffset": 2680, "endOffset": 4649, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get readable", + "ranges": [{ "startOffset": 4708, "endOffset": 4849, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get writable", + "ranges": [{ "startOffset": 4908, "endOffset": 5049, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5053, "endOffset": 5258, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5262, "endOffset": 5892, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5896, "endOffset": 5980, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5984, "endOffset": 6104, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "InternalTransferredTransformStream", + "ranges": [{ "startOffset": 6310, "endOffset": 6774, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "TransferredTransformStream", + "ranges": [{ "startOffset": 6947, "endOffset": 7106, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "TransferredTransformStream.", + "ranges": [{ "startOffset": 7161, "endOffset": 7169, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 7215, "endOffset": 7259, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "TransformStreamDefaultController", + "ranges": [{ "startOffset": 7264, "endOffset": 7401, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get desiredSize", + "ranges": [{ "startOffset": 7452, "endOffset": 7850, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "enqueue", + "ranges": [{ "startOffset": 7892, "endOffset": 8103, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 8146, "endOffset": 8355, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "terminate", + "ranges": [{ "startOffset": 8359, "endOffset": 8550, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8554, "endOffset": 8685, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "defaultTransformAlgorithm", + "ranges": [{ "startOffset": 9148, "endOffset": 9273, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "initializeTransformStream", + "ranges": [{ "startOffset": 9275, "endOffset": 10394, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformStreamError", + "ranges": [{ "startOffset": 10396, "endOffset": 10661, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformStreamErrorWritableAndUnblockWrite", + "ranges": [{ "startOffset": 10663, "endOffset": 10991, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformStreamUnblockWrite", + "ranges": [{ "startOffset": 10993, "endOffset": 11127, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformStreamSetBackpressure", + "ranges": [{ "startOffset": 11129, "endOffset": 11472, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setupTransformStreamDefaultController", + "ranges": [{ "startOffset": 11474, "endOffset": 11866, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setupTransformStreamDefaultControllerFromTransformer", + "ranges": [{ "startOffset": 11868, "endOffset": 12674, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformStreamDefaultControllerClearAlgorithms", + "ranges": [{ "startOffset": 12676, "endOffset": 12900, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformStreamDefaultControllerEnqueue", + "ranges": [{ "startOffset": 12902, "endOffset": 13714, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformStreamDefaultControllerError", + "ranges": [{ "startOffset": 13716, "endOffset": 13843, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformStreamDefaultControllerPerformTransform", + "ranges": [{ "startOffset": 13845, "endOffset": 14115, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformStreamDefaultControllerTerminate", + "ranges": [{ "startOffset": 14117, "endOffset": 14577, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformStreamDefaultSinkWriteAlgorithm", + "ranges": [{ "startOffset": 14579, "endOffset": 15355, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformStreamDefaultSinkAbortAlgorithm", + "ranges": [{ "startOffset": 15357, "endOffset": 16295, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformStreamDefaultSinkCloseAlgorithm", + "ranges": [{ "startOffset": 16297, "endOffset": 17207, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformStreamDefaultSourcePullAlgorithm", + "ranges": [{ "startOffset": 17209, "endOffset": 17478, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformStreamDefaultSourceCancelAlgorithm", + "ranges": [{ "startOffset": 17480, "endOffset": 18557, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1513", + "url": "node:internal/webstreams/util", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 7830, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "extractHighWaterMark", + "ranges": [{ "startOffset": 972, "endOffset": 1265, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "extractSizeAlgorithm", + "ranges": [{ "startOffset": 1267, "endOffset": 1406, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "customInspect", + "ranges": [{ "startOffset": 1408, "endOffset": 1640, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ArrayBufferViewGetBuffer", + "ranges": [{ "startOffset": 1824, "endOffset": 1932, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ArrayBufferViewGetByteLength", + "ranges": [{ "startOffset": 1934, "endOffset": 2050, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ArrayBufferViewGetByteOffset", + "ranges": [{ "startOffset": 2052, "endOffset": 2168, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cloneAsUint8Array", + "ranges": [{ "startOffset": 2170, "endOffset": 2475, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "canCopyArrayBuffer", + "ranges": [{ "startOffset": 2477, "endOffset": 2837, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isBrandCheck", + "ranges": [{ "startOffset": 2839, "endOffset": 3003, "count": 10 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2879, "endOffset": 3000, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "dequeueValue", + "ranges": [{ "startOffset": 3005, "endOffset": 3390, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resetQueue", + "ranges": [{ "startOffset": 3392, "endOffset": 3610, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "peekQueueValue", + "ranges": [{ "startOffset": 3612, "endOffset": 3847, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "enqueueValueWithSize", + "ranges": [{ "startOffset": 3849, "endOffset": 4314, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "invokePromiseCallback", + "ranges": [{ "startOffset": 4485, "endOffset": 4601, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createPromiseCallback", + "ranges": [{ "startOffset": 4603, "endOffset": 4753, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isPromisePending", + "ranges": [{ "startOffset": 4755, "endOffset": 4918, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setPromiseHandled", + "ranges": [{ "startOffset": 4920, "endOffset": 5199, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "nonOpFlush", + "ranges": [{ "startOffset": 5201, "endOffset": 5231, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "nonOpStart", + "ranges": [{ "startOffset": 5233, "endOffset": 5257, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "nonOpPull", + "ranges": [{ "startOffset": 5259, "endOffset": 5288, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "nonOpCancel", + "ranges": [{ "startOffset": 5290, "endOffset": 5321, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "nonOpWrite", + "ranges": [{ "startOffset": 5323, "endOffset": 5353, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lazyTransfer", + "ranges": [{ "startOffset": 5369, "endOffset": 5501, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createAsyncFromSyncIterator", + "ranges": [{ "startOffset": 5503, "endOffset": 5842, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getIterator", + "ranges": [{ "startOffset": 5894, "endOffset": 6791, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "iteratorNext", + "ranges": [{ "startOffset": 6793, "endOffset": 7255, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1514", + "url": "node:internal/webstreams/readablestream", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 96501, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "lazyReadableReleasedError", + "ranges": [{ "startOffset": 3092, "endOffset": 3442, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lazyReadableReleasingError", + "ranges": [{ "startOffset": 3444, "endOffset": 3801, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getNonWritablePropertyDescriptor", + "ranges": [{ "startOffset": 3844, "endOffset": 3930, "count": 6 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5380, "endOffset": 5406, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ReadableStream", + "ranges": [{ "startOffset": 5504, "endOffset": 6853, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6857, "endOffset": 6918, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6922, "endOffset": 6991, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6995, "endOffset": 7066, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get locked", + "ranges": [{ "startOffset": 7118, "endOffset": 7262, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "from", + "ranges": [{ "startOffset": 7273, "endOffset": 7342, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cancel", + "ranges": [{ "startOffset": 7417, "endOffset": 7741, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getReader", + "ranges": [{ "startOffset": 7849, "endOffset": 8409, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pipeThrough", + "ranges": [{ "startOffset": 8543, "endOffset": 10013, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pipeTo", + "ranges": [{ "startOffset": 10142, "endOffset": 11303, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "tee", + "ranges": [{ "startOffset": 11352, "endOffset": 11491, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "values", + "ranges": [{ "startOffset": 11603, "endOffset": 15487, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 15491, "endOffset": 15797, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 15801, "endOffset": 16582, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 16586, "endOffset": 16764, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 16768, "endOffset": 17224, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "InternalTransferredReadableStream", + "ranges": [{ "startOffset": 17822, "endOffset": 18097, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "TransferredReadableStream", + "ranges": [{ "startOffset": 18266, "endOffset": 18422, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "TransferredReadableStream.", + "ranges": [{ "startOffset": 18476, "endOffset": 18484, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 18523, "endOffset": 18560, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ReadableStreamBYOBRequest", + "ranges": [{ "startOffset": 18565, "endOffset": 18702, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get view", + "ranges": [{ "startOffset": 18762, "endOffset": 18915, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "respond", + "ranges": [{ "startOffset": 18965, "endOffset": 19780, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "respondWithNewView", + "ranges": [{ "startOffset": 19831, "endOffset": 20407, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 20411, "endOffset": 20573, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createReadableStreamBYOBRequest", + "ranges": [{ "startOffset": 20837, "endOffset": 21030, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ReadableStreamAsyncIteratorReadRequest", + "ranges": [{ "startOffset": 21081, "endOffset": 21200, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 21204, "endOffset": 21318, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 21322, "endOffset": 21515, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 21519, "endOffset": 21689, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "DefaultReadRequest", + "ranges": [{ "startOffset": 21722, "endOffset": 21784, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 21788, "endOffset": 21861, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 21865, "endOffset": 21943, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 21947, "endOffset": 22002, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get promise", + "ranges": [{ "startOffset": 22006, "endOffset": 22052, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ReadIntoRequest", + "ranges": [{ "startOffset": 22082, "endOffset": 22144, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 22148, "endOffset": 22221, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 22225, "endOffset": 22297, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 22301, "endOffset": 22356, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get promise", + "ranges": [{ "startOffset": 22360, "endOffset": 22406, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 22448, "endOffset": 22487, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ReadableStreamDefaultReader", + "ranges": [{ "startOffset": 22540, "endOffset": 22910, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "read", + "ranges": [{ "startOffset": 23002, "endOffset": 23453, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "releaseLock", + "ranges": [{ "startOffset": 23457, "endOffset": 23690, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get closed", + "ranges": [{ "startOffset": 23748, "endOffset": 23932, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cancel", + "ranges": [{ "startOffset": 24005, "endOffset": 24387, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 24391, "endOffset": 24617, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 24943, "endOffset": 24979, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ReadableStreamBYOBReader", + "ranges": [{ "startOffset": 25032, "endOffset": 25403, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "read", + "ranges": [{ "startOffset": 25597, "endOffset": 27471, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "releaseLock", + "ranges": [{ "startOffset": 27475, "endOffset": 27699, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get closed", + "ranges": [{ "startOffset": 27757, "endOffset": 27935, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cancel", + "ranges": [{ "startOffset": 28008, "endOffset": 28384, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 28388, "endOffset": 28622, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 28949, "endOffset": 29009, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ReadableStreamDefaultController", + "ranges": [{ "startOffset": 29014, "endOffset": 29151, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get desiredSize", + "ranges": [{ "startOffset": 29202, "endOffset": 29289, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "close", + "ranges": [{ "startOffset": 29293, "endOffset": 29496, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "enqueue", + "ranges": [{ "startOffset": 29538, "endOffset": 29769, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 29811, "endOffset": 29896, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 29900, "endOffset": 29992, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 29996, "endOffset": 30087, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 30091, "endOffset": 30106, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 30110, "endOffset": 30202, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 30541, "endOffset": 30598, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ReadableByteStreamController", + "ranges": [{ "startOffset": 30603, "endOffset": 30740, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get byobRequest", + "ranges": [{ "startOffset": 30810, "endOffset": 31429, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get desiredSize", + "ranges": [{ "startOffset": 31480, "endOffset": 31677, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "close", + "ranges": [{ "startOffset": 31681, "endOffset": 32105, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "enqueue", + "ranges": [{ "startOffset": 32157, "endOffset": 33000, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 33042, "endOffset": 33237, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 33241, "endOffset": 33330, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 33334, "endOffset": 33422, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 33426, "endOffset": 33707, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 33711, "endOffset": 33803, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "InternalReadableStream", + "ranges": [{ "startOffset": 34133, "endOffset": 34635, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createReadableStream", + "ranges": [{ "startOffset": 34782, "endOffset": 35092, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "InternalReadableByteStream", + "ranges": [{ "startOffset": 35094, "endOffset": 35566, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createReadableByteStream", + "ranges": [{ "startOffset": 35721, "endOffset": 35987, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createReadableStreamState", + "ranges": [{ "startOffset": 36420, "endOffset": 36740, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readableStreamFromIterable", + "ranges": [{ "startOffset": 36742, "endOffset": 38334, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readableStreamPipeTo", + "ranges": [{ "startOffset": 38336, "endOffset": 43790, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "PipeToReadableStreamReadRequest", + "ranges": [{ "startOffset": 43834, "endOffset": 43953, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 43957, "endOffset": 44143, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 44147, "endOffset": 44195, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 44199, "endOffset": 44252, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readableStreamTee", + "ranges": [{ "startOffset": 44256, "endOffset": 44484, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readableStreamDefaultTee", + "ranges": [{ "startOffset": 44486, "endOffset": 47277, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readableByteStreamTee", + "ranges": [{ "startOffset": 47279, "endOffset": 55139, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readableByteStreamControllerConvertPullIntoDescriptor", + "ranges": [{ "startOffset": 55141, "endOffset": 55725, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isReadableStreamLocked", + "ranges": [{ "startOffset": 55727, "endOffset": 55816, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readableStreamCancel", + "ranges": [{ "startOffset": 55818, "endOffset": 56472, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readableStreamClose", + "ranges": [{ "startOffset": 56474, "endOffset": 56958, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readableStreamError", + "ranges": [{ "startOffset": 56960, "endOffset": 57838, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readableStreamHasDefaultReader", + "ranges": [{ "startOffset": 57840, "endOffset": 58082, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readableStreamGetNumReadRequests", + "ranges": [{ "startOffset": 58084, "endOffset": 58247, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readableStreamHasBYOBReader", + "ranges": [{ "startOffset": 58249, "endOffset": 58485, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readableStreamGetNumReadIntoRequests", + "ranges": [{ "startOffset": 58487, "endOffset": 58655, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readableStreamFulfillReadRequest", + "ranges": [{ "startOffset": 58657, "endOffset": 59250, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readableStreamFulfillReadIntoRequest", + "ranges": [{ "startOffset": 59252, "endOffset": 59634, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readableStreamAddReadRequest", + "ranges": [{ "startOffset": 59636, "endOffset": 59874, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readableStreamAddReadIntoRequest", + "ranges": [{ "startOffset": 59876, "endOffset": 60135, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readableStreamReaderGenericCancel", + "ranges": [{ "startOffset": 60137, "endOffset": 60322, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readableStreamReaderGenericInitialize", + "ranges": [{ "startOffset": 60324, "endOffset": 60988, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readableStreamDefaultReaderRelease", + "ranges": [{ "startOffset": 60990, "endOffset": 61190, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readableStreamDefaultReaderErrorReadRequests", + "ranges": [{ "startOffset": 61192, "endOffset": 61412, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readableStreamBYOBReaderRelease", + "ranges": [{ "startOffset": 61414, "endOffset": 61612, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readableStreamBYOBReaderErrorReadIntoRequests", + "ranges": [{ "startOffset": 61614, "endOffset": 61847, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readableStreamReaderGenericRelease", + "ranges": [{ "startOffset": 61849, "endOffset": 62503, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readableStreamBYOBReaderRead", + "ranges": [{ "startOffset": 62505, "endOffset": 62922, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readableStreamDefaultReaderRead", + "ranges": [{ "startOffset": 62924, "endOffset": 63361, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setupReadableStreamBYOBReader", + "ranges": [{ "startOffset": 63363, "endOffset": 63806, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setupReadableStreamDefaultReader", + "ranges": [{ "startOffset": 63808, "endOffset": 64071, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readableStreamDefaultControllerClose", + "ranges": [{ "startOffset": 64073, "endOffset": 64421, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readableStreamDefaultControllerEnqueue", + "ranges": [{ "startOffset": 64423, "endOffset": 65168, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readableStreamDefaultControllerHasBackpressure", + "ranges": [{ "startOffset": 65170, "endOffset": 65310, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readableStreamDefaultControllerCanCloseOrEnqueue", + "ranges": [{ "startOffset": 65312, "endOffset": 65526, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readableStreamDefaultControllerGetDesiredSize", + "ranges": [{ "startOffset": 65528, "endOffset": 65843, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readableStreamDefaultControllerShouldCallPull", + "ranges": [{ "startOffset": 65845, "endOffset": 66340, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readableStreamDefaultControllerCallPullIfNeeded", + "ranges": [{ "startOffset": 66342, "endOffset": 67036, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readableStreamDefaultControllerClearAlgorithms", + "ranges": [{ "startOffset": 67038, "endOffset": 67255, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readableStreamDefaultControllerError", + "ranges": [{ "startOffset": 67257, "endOffset": 67554, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readableStreamDefaultControllerCancelSteps", + "ranges": [{ "startOffset": 67556, "endOffset": 67797, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readableStreamDefaultControllerPullSteps", + "ranges": [{ "startOffset": 67799, "endOffset": 68415, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setupReadableStreamDefaultController", + "ranges": [{ "startOffset": 68417, "endOffset": 69403, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setupReadableStreamDefaultControllerFromSource", + "ranges": [{ "startOffset": 69405, "endOffset": 70170, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readableByteStreamControllerClose", + "ranges": [{ "startOffset": 70172, "endOffset": 70923, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readableByteStreamControllerCommitPullIntoDescriptor", + "ranges": [{ "startOffset": 70925, "endOffset": 71524, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readableByteStreamControllerCommitPullIntoDescriptors", + "ranges": [{ "startOffset": 71526, "endOffset": 71767, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readableByteStreamControllerInvalidateBYOBRequest", + "ranges": [{ "startOffset": 71769, "endOffset": 72062, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readableByteStreamControllerClearAlgorithms", + "ranges": [{ "startOffset": 72064, "endOffset": 72230, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readableByteStreamControllerClearPendingPullIntos", + "ranges": [{ "startOffset": 72232, "endOffset": 72415, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readableByteStreamControllerGetDesiredSize", + "ranges": [{ "startOffset": 72417, "endOffset": 72723, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readableByteStreamControllerShouldCallPull", + "ranges": [{ "startOffset": 72725, "endOffset": 73373, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readableByteStreamControllerHandleQueueDrain", + "ranges": [{ "startOffset": 73375, "endOffset": 73792, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readableByteStreamControllerPullInto", + "ranges": [{ "startOffset": 73794, "endOffset": 75995, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readableByteStreamControllerRespondInternal", + "ranges": [{ "startOffset": 75997, "endOffset": 76822, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readableByteStreamControllerRespond", + "ranges": [{ "startOffset": 76824, "endOffset": 77613, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readableByteStreamControllerRespondInClosedState", + "ranges": [{ "startOffset": 77615, "endOffset": 78248, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readableByteStreamControllerFillHeadPullIntoDescriptor", + "ranges": [{ "startOffset": 78250, "endOffset": 78551, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readableByteStreamControllerEnqueue", + "ranges": [{ "startOffset": 78553, "endOffset": 80999, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readableByteStreamControllerEnqueueClonedChunkToQueue", + "ranges": [{ "startOffset": 81001, "endOffset": 81475, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readableByteStreamControllerEnqueueChunkToQueue", + "ranges": [{ "startOffset": 81477, "endOffset": 81757, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readableByteStreamControllerEnqueueDetachedPullIntoToQueue", + "ranges": [{ "startOffset": 81759, "endOffset": 82188, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readableByteStreamControllerFillPullIntoDescriptorFromQueue", + "ranges": [{ "startOffset": 82190, "endOffset": 84028, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readableByteStreamControllerProcessPullIntoDescriptorsUsingQueue", + "ranges": [{ "startOffset": 84030, "endOffset": 84643, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readableByteStreamControllerRespondInReadableState", + "ranges": [{ "startOffset": 84645, "endOffset": 86290, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readableByteStreamControllerRespondWithNewView", + "ranges": [{ "startOffset": 86292, "endOffset": 87686, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readableByteStreamControllerShiftPendingPullInto", + "ranges": [{ "startOffset": 87688, "endOffset": 87879, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readableByteStreamControllerCallPullIfNeeded", + "ranges": [{ "startOffset": 87881, "endOffset": 88563, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readableByteStreamControllerError", + "ranges": [{ "startOffset": 88565, "endOffset": 88921, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readableByteStreamControllerCancelSteps", + "ranges": [{ "startOffset": 88923, "endOffset": 89223, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readableByteStreamControllerFillReadRequestFromQueue", + "ranges": [{ "startOffset": 89225, "endOffset": 89704, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readableByteStreamControllerProcessReadRequestsUsingQueue", + "ranges": [{ "startOffset": 89706, "endOffset": 90189, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readableByteStreamControllerPullSteps", + "ranges": [{ "startOffset": 90191, "endOffset": 91322, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setupReadableByteStreamController", + "ranges": [{ "startOffset": 91324, "endOffset": 92416, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setupReadableByteStreamControllerFromSource", + "ranges": [{ "startOffset": 92418, "endOffset": 93386, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1515", + "url": "node:internal/webstreams/writablestream", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 38799, "count": 1 }], + "isBlockCoverage": false + }, + { + "functionName": "lazyWritableReleasedError", + "ranges": [{ "startOffset": 1791, "endOffset": 2232, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getNonWritablePropertyDescriptor", + "ranges": [{ "startOffset": 2275, "endOffset": 2361, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 3308, "endOffset": 3334, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "WritableStream", + "ranges": [{ "startOffset": 3428, "endOffset": 4185, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4189, "endOffset": 4258, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 4262, "endOffset": 4333, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get locked", + "ranges": [{ "startOffset": 4385, "endOffset": 4529, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "abort", + "ranges": [{ "startOffset": 4602, "endOffset": 4924, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "close", + "ranges": [{ "startOffset": 4970, "endOffset": 5429, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getWriter", + "ranges": [{ "startOffset": 5489, "endOffset": 5694, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5698, "endOffset": 5854, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 5858, "endOffset": 6641, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6645, "endOffset": 6823, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 6827, "endOffset": 7285, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "InternalTransferredWritableStream", + "ranges": [{ "startOffset": 7548, "endOffset": 7823, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "TransferredWritableStream", + "ranges": [{ "startOffset": 7992, "endOffset": 8148, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "TransferredWritableStream.", + "ranges": [{ "startOffset": 8202, "endOffset": 8210, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 8251, "endOffset": 8290, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "WritableStreamDefaultWriter", + "ranges": [{ "startOffset": 8343, "endOffset": 8796, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get closed", + "ranges": [{ "startOffset": 8854, "endOffset": 9038, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get desiredSize", + "ranges": [{ "startOffset": 9089, "endOffset": 9431, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get ready", + "ranges": [{ "startOffset": 9489, "endOffset": 9672, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "abort", + "ranges": [{ "startOffset": 9745, "endOffset": 10137, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "close", + "ranges": [{ "startOffset": 10183, "endOffset": 10750, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "releaseLock", + "ranges": [{ "startOffset": 10754, "endOffset": 11071, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "write", + "ranges": [{ "startOffset": 11143, "endOffset": 11533, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 11537, "endOffset": 11787, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 12216, "endOffset": 12259, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "WritableStreamDefaultController", + "ranges": [{ "startOffset": 12264, "endOffset": 12401, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 12405, "endOffset": 12560, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 12564, "endOffset": 12602, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get signal", + "ranges": [{ "startOffset": 12643, "endOffset": 12828, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 12870, "endOffset": 13146, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 13150, "endOffset": 13281, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "InternalWritableStream", + "ranges": [{ "startOffset": 13514, "endOffset": 14039, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createWritableStream", + "ranges": [{ "startOffset": 14186, "endOffset": 14510, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createWritableStreamState", + "ranges": [{ "startOffset": 14750, "endOffset": 15802, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isWritableStreamLocked", + "ranges": [{ "startOffset": 15804, "endOffset": 15893, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setupWritableStreamDefaultWriter", + "ranges": [{ "startOffset": 15895, "endOffset": 17667, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writableStreamAbort", + "ranges": [{ "startOffset": 17669, "endOffset": 18457, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writableStreamClose", + "ranges": [{ "startOffset": 18459, "endOffset": 19132, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writableStreamUpdateBackpressure", + "ranges": [{ "startOffset": 19134, "endOffset": 19612, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writableStreamStartErroring", + "ranges": [{ "startOffset": 19614, "endOffset": 20191, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writableStreamRejectCloseAndClosedPromiseIfNeeded", + "ranges": [{ "startOffset": 20193, "endOffset": 20948, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writableStreamMarkFirstWriteRequestInFlight", + "ranges": [{ "startOffset": 20950, "endOffset": 21258, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writableStreamMarkCloseRequestInFlight", + "ranges": [{ "startOffset": 21260, "endOffset": 21628, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writableStreamHasOperationMarkedInFlight", + "ranges": [{ "startOffset": 21630, "endOffset": 21916, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writableStreamFinishInFlightWriteWithError", + "ranges": [{ "startOffset": 21918, "endOffset": 22375, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writableStreamFinishInFlightWrite", + "ranges": [{ "startOffset": 22377, "endOffset": 22669, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writableStreamFinishInFlightCloseWithError", + "ranges": [{ "startOffset": 22671, "endOffset": 23481, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writableStreamFinishInFlightClose", + "ranges": [{ "startOffset": 23483, "endOffset": 24538, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writableStreamFinishErroring", + "ranges": [{ "startOffset": 24540, "endOffset": 25895, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writableStreamDealWithRejection", + "ranges": [{ "startOffset": 25897, "endOffset": 26166, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writableStreamCloseQueuedOrInFlight", + "ranges": [{ "startOffset": 26168, "endOffset": 26387, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writableStreamAddWriteRequest", + "ranges": [{ "startOffset": 26389, "endOffset": 26738, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writableStreamDefaultWriterWrite", + "ranges": [{ "startOffset": 26740, "endOffset": 27720, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writableStreamDefaultWriterRelease", + "ranges": [{ "startOffset": 27722, "endOffset": 28200, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writableStreamDefaultWriterGetDesiredSize", + "ranges": [{ "startOffset": 28202, "endOffset": 28551, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writableStreamDefaultWriterEnsureReadyPromiseRejected", + "ranges": [{ "startOffset": 28553, "endOffset": 28922, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writableStreamDefaultWriterEnsureClosedPromiseRejected", + "ranges": [{ "startOffset": 28924, "endOffset": 29294, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writableStreamDefaultWriterCloseWithErrorPropagation", + "ranges": [{ "startOffset": 29296, "endOffset": 29781, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writableStreamDefaultWriterClose", + "ranges": [{ "startOffset": 29783, "endOffset": 29950, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writableStreamDefaultWriterAbort", + "ranges": [{ "startOffset": 29952, "endOffset": 30135, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writableStreamDefaultControllerWrite", + "ranges": [{ "startOffset": 30137, "endOffset": 30722, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writableStreamDefaultControllerProcessWrite", + "ranges": [{ "startOffset": 30724, "endOffset": 31709, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writableStreamDefaultControllerProcessClose", + "ranges": [{ "startOffset": 31711, "endOffset": 32242, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writableStreamDefaultControllerGetDesiredSize", + "ranges": [{ "startOffset": 32244, "endOffset": 32430, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writableStreamDefaultControllerGetChunkSize", + "ranges": [{ "startOffset": 32432, "endOffset": 32977, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writableStreamDefaultControllerErrorIfNeeded", + "ranges": [{ "startOffset": 32979, "endOffset": 33207, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writableStreamDefaultControllerError", + "ranges": [{ "startOffset": 33209, "endOffset": 33480, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writableStreamDefaultControllerClose", + "ranges": [{ "startOffset": 33482, "endOffset": 33665, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writableStreamDefaultControllerClearAlgorithms", + "ranges": [{ "startOffset": 33667, "endOffset": 33933, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writableStreamDefaultControllerGetBackpressure", + "ranges": [{ "startOffset": 33935, "endOffset": 34079, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writableStreamDefaultControllerAdvanceQueueIfNeeded", + "ranges": [{ "startOffset": 34081, "endOffset": 34669, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setupWritableStreamDefaultControllerFromSink", + "ranges": [{ "startOffset": 34671, "endOffset": 35570, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setupWritableStreamDefaultController", + "ranges": [{ "startOffset": 35572, "endOffset": 36890, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1516", + "url": "", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 28, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1, "endOffset": 27, "count": 0 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1517", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/zod/index.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 1486, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 88, "endOffset": 405, "count": 236 }, + { "startOffset": 232, "endOffset": 247, "count": 232 }, + { "startOffset": 248, "endOffset": 284, "count": 4 }, + { "startOffset": 264, "endOffset": 284, "count": 0 }, + { "startOffset": 287, "endOffset": 363, "count": 4 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 327, "endOffset": 354, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__exportStar", + "ranges": [ + { "startOffset": 1091, "endOffset": 1242, "count": 1 }, + { "startOffset": 1135, "endOffset": 1240, "count": 236 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1518", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@vercel/oidc/dist/index.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 1781, "count": 1 }, + { "startOffset": 1615, "endOffset": 1779, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 228, "endOffset": 339, "count": 1 }, + { "startOffset": 275, "endOffset": 337, "count": 6 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 359, "endOffset": 705, "count": 1 }, + { "startOffset": 428, "endOffset": 457, "count": 0 }, + { "startOffset": 512, "endOffset": 686, "count": 6 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 597, "endOffset": 612, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 726, "endOffset": 797, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "AccessTokenMissingError", + "ranges": [{ "startOffset": 872, "endOffset": 920, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "RefreshAccessTokenFailedError", + "ranges": [{ "startOffset": 955, "endOffset": 1009, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getContext", + "ranges": [{ "startOffset": 1025, "endOffset": 1060, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getVercelOidcToken", + "ranges": [{ "startOffset": 1084, "endOffset": 1137, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getVercelOidcTokenSync", + "ranges": [{ "startOffset": 1165, "endOffset": 1222, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getVercelToken", + "ranges": [{ "startOffset": 1242, "endOffset": 1280, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1519", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@vercel/oidc/dist/get-vercel-oidc-token.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 3040, "count": 1 }, + { "startOffset": 2966, "endOffset": 3038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 300, "endOffset": 411, "count": 1 }, + { "startOffset": 347, "endOffset": 409, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 431, "endOffset": 777, "count": 1 }, + { "startOffset": 500, "endOffset": 529, "count": 0 }, + { "startOffset": 584, "endOffset": 758, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 669, "endOffset": 684, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toESM", + "ranges": [{ "startOffset": 793, "endOffset": 1302, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 1323, "endOffset": 1394, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "getVercelOidcToken", + "ranges": [{ "startOffset": 1500, "endOffset": 1524, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getVercelOidcTokenSync", + "ranges": [{ "startOffset": 1552, "endOffset": 1580, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getVercelOidcToken", + "ranges": [{ "startOffset": 1749, "endOffset": 2541, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getVercelOidcTokenSync", + "ranges": [{ "startOffset": 2542, "endOffset": 2901, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1520", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@vercel/oidc/dist/get-context.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 1323, "count": 1 }, + { "startOffset": 1257, "endOffset": 1321, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 228, "endOffset": 339, "count": 1 }, + { "startOffset": 275, "endOffset": 337, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 359, "endOffset": 705, "count": 1 }, + { "startOffset": 428, "endOffset": 457, "count": 0 }, + { "startOffset": 512, "endOffset": 686, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 597, "endOffset": 612, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 726, "endOffset": 797, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "SYMBOL_FOR_REQ_CONTEXT", + "ranges": [{ "startOffset": 887, "endOffset": 915, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getContext", + "ranges": [{ "startOffset": 931, "endOffset": 947, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getContext", + "ranges": [{ "startOffset": 1074, "endOffset": 1192, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1521", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@vercel/oidc/dist/token-error.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 1399, "count": 1 }, + { "startOffset": 1349, "endOffset": 1397, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [{ "startOffset": 228, "endOffset": 339, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 359, "endOffset": 705, "count": 1 }, + { "startOffset": 428, "endOffset": 457, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 597, "endOffset": 612, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 726, "endOffset": 797, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "VercelOidcTokenError", + "ranges": [{ "startOffset": 885, "endOffset": 911, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "VercelOidcTokenError", + "ranges": [{ "startOffset": 1013, "endOffset": 1130, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toString", + "ranges": [{ "startOffset": 1133, "endOffset": 1282, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1522", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@vercel/oidc/dist/auth-errors.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 1603, "count": 1 }, + { "startOffset": 1517, "endOffset": 1601, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 228, "endOffset": 339, "count": 1 }, + { "startOffset": 275, "endOffset": 337, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 359, "endOffset": 705, "count": 1 }, + { "startOffset": 428, "endOffset": 457, "count": 0 }, + { "startOffset": 512, "endOffset": 686, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 597, "endOffset": 612, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 726, "endOffset": 797, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "AccessTokenMissingError", + "ranges": [{ "startOffset": 888, "endOffset": 917, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "RefreshAccessTokenFailedError", + "ranges": [{ "startOffset": 952, "endOffset": 987, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "AccessTokenMissingError", + "ranges": [{ "startOffset": 1092, "endOffset": 1255, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "RefreshAccessTokenFailedError", + "ranges": [{ "startOffset": 1312, "endOffset": 1450, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1523", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@vercel/oidc/dist/token-util.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 7616, "count": 1 }, + { "startOffset": 7420, "endOffset": 7614, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 300, "endOffset": 411, "count": 1 }, + { "startOffset": 347, "endOffset": 409, "count": 9 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 431, "endOffset": 777, "count": 3 }, + { "startOffset": 500, "endOffset": 529, "count": 0 }, + { "startOffset": 584, "endOffset": 758, "count": 134 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 669, "endOffset": 684, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toESM", + "ranges": [ + { "startOffset": 793, "endOffset": 1302, "count": 2 }, + { "startOffset": 874, "endOffset": 878, "count": 0 }, + { "startOffset": 1284, "endOffset": 1292, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 1323, "endOffset": 1394, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "assertVercelOidcTokenResponse", + "ranges": [{ "startOffset": 1489, "endOffset": 1524, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "findProjectInfo", + "ranges": [{ "startOffset": 1545, "endOffset": 1566, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getTokenPayload", + "ranges": [{ "startOffset": 1587, "endOffset": 1608, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getVercelDataDir", + "ranges": [{ "startOffset": 1630, "endOffset": 1652, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getVercelOidcToken", + "ranges": [{ "startOffset": 1676, "endOffset": 1700, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getVercelToken", + "ranges": [{ "startOffset": 1720, "endOffset": 1740, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isExpired", + "ranges": [{ "startOffset": 1755, "endOffset": 1770, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "loadToken", + "ranges": [{ "startOffset": 1785, "endOffset": 1800, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "saveToken", + "ranges": [{ "startOffset": 1815, "endOffset": 1830, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getVercelDataDir", + "ranges": [{ "startOffset": 2193, "endOffset": 2404, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getVercelToken", + "ranges": [{ "startOffset": 2405, "endOffset": 3938, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getVercelOidcToken", + "ranges": [{ "startOffset": 3939, "endOffset": 4501, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "assertVercelOidcTokenResponse", + "ranges": [{ "startOffset": 4502, "endOffset": 4941, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "findProjectInfo", + "ranges": [{ "startOffset": 4942, "endOffset": 5761, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "saveToken", + "ranges": [{ "startOffset": 5762, "endOffset": 6292, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "loadToken", + "ranges": [{ "startOffset": 6293, "endOffset": 6792, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getTokenPayload", + "ranges": [{ "startOffset": 6793, "endOffset": 7261, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isExpired", + "ranges": [{ "startOffset": 7262, "endOffset": 7355, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1524", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@vercel/oidc/dist/token-io.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 2881, "count": 1 }, + { "startOffset": 2822, "endOffset": 2879, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 300, "endOffset": 411, "count": 1 }, + { "startOffset": 347, "endOffset": 409, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 431, "endOffset": 777, "count": 4 }, + { "startOffset": 500, "endOffset": 529, "count": 0 }, + { "startOffset": 584, "endOffset": 758, "count": 150 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 669, "endOffset": 684, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toESM", + "ranges": [ + { "startOffset": 793, "endOffset": 1302, "count": 3 }, + { "startOffset": 874, "endOffset": 878, "count": 0 }, + { "startOffset": 1284, "endOffset": 1292, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 1323, "endOffset": 1394, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "findRootDir", + "ranges": [{ "startOffset": 1467, "endOffset": 1484, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getUserDataDir", + "ranges": [{ "startOffset": 1504, "endOffset": 1524, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "findRootDir", + "ranges": [{ "startOffset": 1753, "endOffset": 2228, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getUserDataDir", + "ranges": [{ "startOffset": 2229, "endOffset": 2757, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1525", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@vercel/oidc/dist/auth-config.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 3169, "count": 1 }, + { "startOffset": 3084, "endOffset": 3167, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 300, "endOffset": 411, "count": 1 }, + { "startOffset": 347, "endOffset": 409, "count": 3 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 431, "endOffset": 777, "count": 3 }, + { "startOffset": 500, "endOffset": 529, "count": 0 }, + { "startOffset": 584, "endOffset": 758, "count": 128 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 669, "endOffset": 684, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toESM", + "ranges": [ + { "startOffset": 793, "endOffset": 1302, "count": 2 }, + { "startOffset": 874, "endOffset": 878, "count": 0 }, + { "startOffset": 1284, "endOffset": 1292, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 1323, "endOffset": 1394, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "isValidAccessToken", + "ranges": [{ "startOffset": 1480, "endOffset": 1504, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readAuthConfig", + "ranges": [{ "startOffset": 1524, "endOffset": 1544, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writeAuthConfig", + "ranges": [{ "startOffset": 1565, "endOffset": 1586, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getAuthConfigPath", + "ranges": [{ "startOffset": 1762, "endOffset": 2066, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readAuthConfig", + "ranges": [{ "startOffset": 2067, "endOffset": 2380, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "writeAuthConfig", + "ranges": [{ "startOffset": 2381, "endOffset": 2673, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isValidAccessToken", + "ranges": [{ "startOffset": 2674, "endOffset": 3019, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1526", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@vercel/oidc/dist/oauth.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 3176, "count": 1 }, + { "startOffset": 3103, "endOffset": 3174, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 228, "endOffset": 339, "count": 1 }, + { "startOffset": 275, "endOffset": 337, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 359, "endOffset": 705, "count": 1 }, + { "startOffset": 428, "endOffset": 457, "count": 0 }, + { "startOffset": 512, "endOffset": 686, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 597, "endOffset": 612, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 726, "endOffset": 797, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "processTokenResponse", + "ranges": [{ "startOffset": 873, "endOffset": 899, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "refreshTokenRequest", + "ranges": [{ "startOffset": 924, "endOffset": 949, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getTokenEndpoint", + "ranges": [{ "startOffset": 1313, "endOffset": 1921, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "refreshTokenRequest", + "ranges": [{ "startOffset": 1922, "endOffset": 2324, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "processTokenResponse", + "ranges": [{ "startOffset": 2325, "endOffset": 3038, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1527", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@opentelemetry/api/build/src/index.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 6440, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1493, "endOffset": 1555, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1698, "endOffset": 1748, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1825, "endOffset": 1871, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2021, "endOffset": 2078, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2194, "endOffset": 2238, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2384, "endOffset": 2435, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2553, "endOffset": 2595, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2770, "endOffset": 2834, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 2919, "endOffset": 2983, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3111, "endOffset": 3160, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3312, "endOffset": 3377, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3516, "endOffset": 3573, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3694, "endOffset": 3738, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 3859, "endOffset": 3906, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 4033, "endOffset": 4081, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 4211, "endOffset": 4259, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 4406, "endOffset": 4468, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 4547, "endOffset": 4605, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 4683, "endOffset": 4740, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 4893, "endOffset": 4956, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 5036, "endOffset": 5100, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 5185, "endOffset": 5254, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 5483, "endOffset": 5528, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 5639, "endOffset": 5678, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 5798, "endOffset": 5843, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 5975, "endOffset": 6028, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 6142, "endOffset": 6183, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1528", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@opentelemetry/api/build/src/baggage/utils.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1849, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "createBaggage", + "ranges": [{ "startOffset": 1075, "endOffset": 1192, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "baggageEntryMetadataFromString", + "ranges": [{ "startOffset": 1417, "endOffset": 1742, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1529", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@opentelemetry/api/build/src/api/diag.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 4135, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "DiagAPI", + "ranges": [{ "startOffset": 1164, "endOffset": 3870, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "_logProxy", + "ranges": [{ "startOffset": 1188, "endOffset": 1506, "count": 5 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1238, "endOffset": 1495, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setLogger", + "ranges": [{ "startOffset": 1690, "endOffset": 3380, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "DiagAPI.self.disable", + "ranges": [{ "startOffset": 3441, "endOffset": 3524, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "DiagAPI.self.createComponentLogger", + "ranges": [{ "startOffset": 3563, "endOffset": 3658, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "instance", + "ranges": [ + { "startOffset": 3939, "endOffset": 4073, "count": 2 }, + { "startOffset": 3981, "endOffset": 4036, "count": 1 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1530", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@opentelemetry/api/build/src/diag/ComponentLogger.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2078, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "DiagComponentLogger", + "ranges": [{ "startOffset": 1218, "endOffset": 1312, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "debug", + "ranges": [{ "startOffset": 1317, "endOffset": 1396, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "error", + "ranges": [{ "startOffset": 1401, "endOffset": 1480, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "info", + "ranges": [{ "startOffset": 1485, "endOffset": 1562, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "warn", + "ranges": [{ "startOffset": 1567, "endOffset": 1644, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "verbose", + "ranges": [{ "startOffset": 1649, "endOffset": 1732, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "logProxy", + "ranges": [{ "startOffset": 1786, "endOffset": 2034, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1531", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@opentelemetry/api/build/src/internal/global-utils.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2838, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "registerGlobal", + "ranges": [{ "startOffset": 1054, "endOffset": 2077, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getGlobal", + "ranges": [{ "startOffset": 2119, "endOffset": 2480, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "unregisterGlobal", + "ranges": [{ "startOffset": 2512, "endOffset": 2752, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1532", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@opentelemetry/api/build/src/platform/index.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 1270, "count": 1 }, + { "startOffset": 845, "endOffset": 926, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 694, "endOffset": 843, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 810, "endOffset": 837, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 848, "endOffset": 925, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__exportStar", + "ranges": [{ "startOffset": 979, "endOffset": 1130, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1533", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@opentelemetry/api/build/src/platform/node/index.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 1276, "count": 1 }, + { "startOffset": 845, "endOffset": 926, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 694, "endOffset": 843, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 810, "endOffset": 837, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 848, "endOffset": 925, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__exportStar", + "ranges": [{ "startOffset": 979, "endOffset": 1130, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1534", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@opentelemetry/api/build/src/platform/node/globalThis.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 961, "count": 1 }, + { "startOffset": 913, "endOffset": 921, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1535", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@opentelemetry/api/build/src/version.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 832, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1536", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@opentelemetry/api/build/src/internal/semver.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 5207, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "_makeCompatibilityCheck", + "ranges": [ + { "startOffset": 1762, "endOffset": 4190, "count": 1 }, + { "startOffset": 1975, "endOffset": 2080, "count": 0 }, + { "startOffset": 2379, "endOffset": 2500, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "ownVersionParsed.major", + "ranges": [{ "startOffset": 2062, "endOffset": 2073, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isExactmatch", + "ranges": [{ "startOffset": 2396, "endOffset": 2493, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_reject", + "ranges": [{ "startOffset": 2505, "endOffset": 2587, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_accept", + "ranges": [{ "startOffset": 2592, "endOffset": 2673, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isCompatible", + "ranges": [{ "startOffset": 2685, "endOffset": 4187, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1537", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@opentelemetry/api/build/src/diag/internal/logLevelLogger.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1791, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "createLogLevelDiagLogger", + "ranges": [{ "startOffset": 763, "endOffset": 1687, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1538", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@opentelemetry/api/build/src/diag/types.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2002, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1020, "endOffset": 1898, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1539", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@opentelemetry/api/build/src/baggage/internal/baggage-impl.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1770, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "BaggageImpl", + "ranges": [{ "startOffset": 737, "endOffset": 829, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getEntry", + "ranges": [{ "startOffset": 834, "endOffset": 1004, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getAllEntries", + "ranges": [{ "startOffset": 1009, "endOffset": 1108, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setEntry", + "ranges": [{ "startOffset": 1113, "endOffset": 1272, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "removeEntry", + "ranges": [{ "startOffset": 1277, "endOffset": 1428, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "removeEntries", + "ranges": [{ "startOffset": 1433, "endOffset": 1638, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "clear", + "ranges": [{ "startOffset": 1643, "endOffset": 1692, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1540", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@opentelemetry/api/build/src/baggage/internal/symbol.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 898, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1541", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@opentelemetry/api/build/src/context/context.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2305, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "createContextKey", + "ranges": [{ "startOffset": 795, "endOffset": 1255, "count": 2 }], + "isBlockCoverage": true + }, + { + "functionName": "BaseContext", + "ranges": [ + { "startOffset": 1501, "endOffset": 2131, "count": 1 }, + { "startOffset": 1630, "endOffset": 1654, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "BaseContext.self.getValue", + "ranges": [{ "startOffset": 1692, "endOffset": 1730, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "BaseContext.self.setValue", + "ranges": [{ "startOffset": 1756, "endOffset": 1931, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "BaseContext.self.deleteValue", + "ranges": [{ "startOffset": 1960, "endOffset": 2124, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1542", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@opentelemetry/api/build/src/diag/consoleLogger.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2217, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "DiagConsoleLogger", + "ranges": [{ "startOffset": 1159, "endOffset": 2126, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1543", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@opentelemetry/api/build/src/metrics/NoopMeter.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 4778, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "NoopMeter", + "ranges": [{ "startOffset": 1461, "endOffset": 1478, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "createGauge", + "ranges": [{ "startOffset": 1537, "endOffset": 1615, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createHistogram", + "ranges": [{ "startOffset": 1678, "endOffset": 1764, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createCounter", + "ranges": [{ "startOffset": 1825, "endOffset": 1907, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createUpDownCounter", + "ranges": [{ "startOffset": 1974, "endOffset": 2070, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createObservableGauge", + "ranges": [{ "startOffset": 2139, "endOffset": 2238, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createObservableCounter", + "ranges": [{ "startOffset": 2309, "endOffset": 2412, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createObservableUpDownCounter", + "ranges": [{ "startOffset": 2489, "endOffset": 2606, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addBatchObservableCallback", + "ranges": [{ "startOffset": 2680, "endOffset": 2735, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "removeBatchObservableCallback", + "ranges": [{ "startOffset": 2812, "endOffset": 2856, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "add", + "ranges": [{ "startOffset": 2993, "endOffset": 3021, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "add", + "ranges": [{ "startOffset": 3126, "endOffset": 3154, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "record", + "ranges": [{ "startOffset": 3263, "endOffset": 3294, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "record", + "ranges": [{ "startOffset": 3391, "endOffset": 3422, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addCallback", + "ranges": [{ "startOffset": 3509, "endOffset": 3535, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "removeCallback", + "ranges": [{ "startOffset": 3540, "endOffset": 3569, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createNoopMeter", + "ranges": [{ "startOffset": 4636, "endOffset": 4697, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1544", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@opentelemetry/api/build/src/metrics/Metric.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1008, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 792, "endOffset": 912, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1545", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@opentelemetry/api/build/src/propagation/TextMapPropagator.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1258, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 790, "endOffset": 915, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "keys", + "ranges": [{ "startOffset": 921, "endOffset": 1043, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 1085, "endOffset": 1208, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1546", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@opentelemetry/api/build/src/trace/ProxyTracer.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1917, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "ProxyTracer", + "ranges": [{ "startOffset": 896, "endOffset": 1076, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "startSpan", + "ranges": [{ "startOffset": 1081, "endOffset": 1190, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "startActiveSpan", + "ranges": [{ "startOffset": 1195, "endOffset": 1365, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_getTracer", + "ranges": [{ "startOffset": 1520, "endOffset": 1840, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1547", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@opentelemetry/api/build/src/trace/NoopTracer.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2823, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "startSpan", + "ranges": [{ "startOffset": 1101, "endOffset": 1743, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "startActiveSpan", + "ranges": [{ "startOffset": 1748, "endOffset": 2499, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isSpanContext", + "ranges": [{ "startOffset": 2535, "endOffset": 2784, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1548", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@opentelemetry/api/build/src/api/context.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3032, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "ContextAPI", + "ranges": [{ "startOffset": 1198, "endOffset": 1215, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "getInstance", + "ranges": [ + { "startOffset": 1284, "endOffset": 1424, "count": 2 }, + { "startOffset": 1329, "endOffset": 1387, "count": 1 } + ], + "isBlockCoverage": true + }, + { + "functionName": "setGlobalContextManager", + "ranges": [{ "startOffset": 1576, "endOffset": 1727, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "active", + "ranges": [{ "startOffset": 1788, "endOffset": 1855, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "with", + "ranges": [{ "startOffset": 2171, "endOffset": 2292, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "bind", + "ranges": [{ "startOffset": 2548, "endOffset": 2641, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_getContextManager", + "ranges": [{ "startOffset": 2646, "endOffset": 2754, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "disable", + "ranges": [{ "startOffset": 2816, "endOffset": 2961, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1549", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@opentelemetry/api/build/src/context/NoopContextManager.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1178, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "active", + "ranges": [{ "startOffset": 791, "endOffset": 846, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "with", + "ranges": [{ "startOffset": 851, "endOffset": 937, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "bind", + "ranges": [{ "startOffset": 942, "endOffset": 995, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "enable", + "ranges": [{ "startOffset": 1000, "endOffset": 1037, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "disable", + "ranges": [{ "startOffset": 1042, "endOffset": 1080, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1550", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@opentelemetry/api/build/src/trace/context-utils.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2588, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "getSpan", + "ranges": [{ "startOffset": 1165, "endOffset": 1246, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getActiveSpan", + "ranges": [{ "startOffset": 1340, "endOffset": 1433, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setSpan", + "ranges": [{ "startOffset": 1590, "endOffset": 1670, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "deleteSpan", + "ranges": [{ "startOffset": 1800, "endOffset": 1874, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setSpanContext", + "ranges": [{ "startOffset": 2087, "endOffset": 2219, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getSpanContext", + "ranges": [{ "startOffset": 2367, "endOffset": 2505, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1551", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@opentelemetry/api/build/src/trace/NonRecordingSpan.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2074, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "NonRecordingSpan", + "ranges": [{ "startOffset": 994, "endOffset": 1117, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "spanContext", + "ranges": [{ "startOffset": 1152, "endOffset": 1207, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setAttribute", + "ranges": [{ "startOffset": 1243, "endOffset": 1298, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setAttributes", + "ranges": [{ "startOffset": 1334, "endOffset": 1389, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addEvent", + "ranges": [{ "startOffset": 1425, "endOffset": 1482, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addLink", + "ranges": [{ "startOffset": 1487, "endOffset": 1530, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addLinks", + "ranges": [{ "startOffset": 1535, "endOffset": 1580, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setStatus", + "ranges": [{ "startOffset": 1616, "endOffset": 1663, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "updateName", + "ranges": [{ "startOffset": 1699, "endOffset": 1745, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "end", + "ranges": [{ "startOffset": 1781, "endOffset": 1798, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isRecording", + "ranges": [{ "startOffset": 1865, "endOffset": 1908, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "recordException", + "ranges": [{ "startOffset": 1944, "endOffset": 1982, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1552", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@opentelemetry/api/build/src/trace/invalid-span-constants.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1135, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1553", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@opentelemetry/api/build/src/trace/trace_flags.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1066, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 729, "endOffset": 962, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1554", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@opentelemetry/api/build/src/trace/spancontext-utils.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2067, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "isValidTraceId", + "ranges": [{ "startOffset": 1018, "endOffset": 1156, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isValidSpanId", + "ranges": [{ "startOffset": 1198, "endOffset": 1330, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isSpanContextValid", + "ranges": [{ "startOffset": 1486, "endOffset": 1617, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "wrapSpanContext", + "ranges": [{ "startOffset": 1872, "endOffset": 1978, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1555", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@opentelemetry/api/build/src/trace/ProxyTracerProvider.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2094, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "getTracer", + "ranges": [{ "startOffset": 1330, "endOffset": 1552, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getDelegate", + "ranges": [{ "startOffset": 1557, "endOffset": 1686, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setDelegate", + "ranges": [{ "startOffset": 1747, "endOffset": 1811, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getDelegateTracer", + "ranges": [{ "startOffset": 1816, "endOffset": 1993, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1556", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@opentelemetry/api/build/src/trace/NoopTracerProvider.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1142, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "getTracer", + "ranges": [{ "startOffset": 954, "endOffset": 1044, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1557", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@opentelemetry/api/build/src/trace/SamplingResult.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1671, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 920, "endOffset": 1546, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1558", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@opentelemetry/api/build/src/trace/span_kind.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1872, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 725, "endOffset": 1776, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1559", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@opentelemetry/api/build/src/trace/status.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 719, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 174, "endOffset": 608, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1560", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@opentelemetry/api/build/src/trace/internal/utils.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 961, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "createTraceState", + "ranges": [{ "startOffset": 774, "endOffset": 882, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1561", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@opentelemetry/api/build/src/trace/internal/tracestate-impl.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3980, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "TraceStateImpl", + "ranges": [{ "startOffset": 1336, "endOffset": 1478, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "set", + "ranges": [{ "startOffset": 1483, "endOffset": 1837, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "unset", + "ranges": [{ "startOffset": 1842, "endOffset": 1976, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 1981, "endOffset": 2042, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "serialize", + "ranges": [{ "startOffset": 2047, "endOffset": 2288, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 2293, "endOffset": 3645, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_keys", + "ranges": [{ "startOffset": 3650, "endOffset": 3730, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_clone", + "ranges": [{ "startOffset": 3735, "endOffset": 3893, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1562", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@opentelemetry/api/build/src/trace/internal/tracestate-validators.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2027, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "validateKey", + "ranges": [{ "startOffset": 1551, "endOffset": 1618, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "validateValue", + "ranges": [{ "startOffset": 1800, "endOffset": 1938, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1563", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@opentelemetry/api/build/src/context-api.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 989, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1564", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@opentelemetry/api/build/src/diag-api.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1180, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1565", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@opentelemetry/api/build/src/metrics-api.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 989, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1566", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@opentelemetry/api/build/src/api/metrics.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2231, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "MetricsAPI", + "ranges": [{ "startOffset": 1120, "endOffset": 1137, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "getInstance", + "ranges": [{ "startOffset": 1206, "endOffset": 1346, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "setGlobalMeterProvider", + "ranges": [{ "startOffset": 1496, "endOffset": 1634, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getMeterProvider", + "ranges": [{ "startOffset": 1697, "endOffset": 1822, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getMeter", + "ranges": [{ "startOffset": 1898, "endOffset": 2011, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "disable", + "ranges": [{ "startOffset": 2060, "endOffset": 2160, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1567", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@opentelemetry/api/build/src/metrics/NoopMeterProvider.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1176, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "getMeter", + "ranges": [{ "startOffset": 944, "endOffset": 1026, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1568", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@opentelemetry/api/build/src/propagation-api.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1021, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1569", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@opentelemetry/api/build/src/api/propagation.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3601, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "PropagationAPI", + "ranges": [{ "startOffset": 1417, "endOffset": 1732, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "getInstance", + "ranges": [{ "startOffset": 1804, "endOffset": 1948, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "setGlobalPropagator", + "ranges": [{ "startOffset": 2090, "endOffset": 2229, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "inject", + "ranges": [{ "startOffset": 2504, "endOffset": 2664, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "extract", + "ranges": [{ "startOffset": 2930, "endOffset": 3092, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fields", + "ranges": [{ "startOffset": 3185, "endOffset": 3254, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "disable", + "ranges": [{ "startOffset": 3299, "endOffset": 3399, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_getGlobalPropagator", + "ranges": [{ "startOffset": 3404, "endOffset": 3518, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1570", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@opentelemetry/api/build/src/propagation/NoopTextMapPropagator.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1181, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "inject", + "ranges": [{ "startOffset": 865, "endOffset": 895, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "extract", + "ranges": [{ "startOffset": 976, "endOffset": 1034, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fields", + "ranges": [{ "startOffset": 1039, "endOffset": 1074, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1571", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@opentelemetry/api/build/src/baggage/context-helpers.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 2149, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "getBaggage", + "ranges": [{ "startOffset": 1165, "endOffset": 1252, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getActiveBaggage", + "ranges": [{ "startOffset": 1418, "endOffset": 1517, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setBaggage", + "ranges": [{ "startOffset": 1740, "endOffset": 1832, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "deleteBaggage", + "ranges": [{ "startOffset": 1986, "endOffset": 2066, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1572", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@opentelemetry/api/build/src/trace-api.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 973, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1573", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@opentelemetry/api/build/src/api/trace.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 3114, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "TraceAPI", + "ranges": [{ "startOffset": 1242, "endOffset": 1824, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "getInstance", + "ranges": [{ "startOffset": 1891, "endOffset": 2029, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "setGlobalTracerProvider", + "ranges": [{ "startOffset": 2179, "endOffset": 2462, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getTracerProvider", + "ranges": [{ "startOffset": 2526, "endOffset": 2638, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getTracer", + "ranges": [{ "startOffset": 2716, "endOffset": 2814, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "disable", + "ranges": [{ "startOffset": 2864, "endOffset": 3049, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1574", + "url": "file:///Users/yasser/git/pikku/fabric/node_modules/@pikku/ai-vercel/dist/message-converter.js", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 11837, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 101, "endOffset": 3286, "count": 1 }, + { "startOffset": 3223, "endOffset": 3283, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__name", + "ranges": [{ "startOffset": 305, "endOffset": 371, "count": 4 }], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 385, "endOffset": 475, "count": 1 }, + { "startOffset": 420, "endOffset": 474, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 492, "endOffset": 769, "count": 1 }, + { "startOffset": 547, "endOffset": 573, "count": 0 }, + { "startOffset": 614, "endOffset": 758, "count": 2 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 680, "endOffset": 693, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 787, "endOffset": 848, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "convertFromSDKStep", + "ranges": [{ "startOffset": 937, "endOffset": 959, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "convertToSDKMessages", + "ranges": [{ "startOffset": 981, "endOffset": 1005, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "convertToSDKMessages", + "ranges": [{ "startOffset": 1063, "endOffset": 1150, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseIfString", + "ranges": [{ "startOffset": 1202, "endOffset": 1352, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "convertToSDKMessage", + "ranges": [{ "startOffset": 1390, "endOffset": 2831, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "convertFromSDKStep", + "ranges": [{ "startOffset": 2881, "endOffset": 3174, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1575", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@ai-sdk/openai-compatible/dist/index.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 62748, "count": 1 }, + { "startOffset": 60267, "endOffset": 60281, "count": 0 }, + { "startOffset": 62508, "endOffset": 62713, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 228, "endOffset": 339, "count": 1 }, + { "startOffset": 275, "endOffset": 337, "count": 6 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 359, "endOffset": 705, "count": 1 }, + { "startOffset": 428, "endOffset": 457, "count": 0 }, + { "startOffset": 512, "endOffset": 686, "count": 6 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 597, "endOffset": 612, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 726, "endOffset": 797, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "OpenAICompatibleChatLanguageModel", + "ranges": [{ "startOffset": 903, "endOffset": 942, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "OpenAICompatibleCompletionLanguageModel", + "ranges": [{ "startOffset": 987, "endOffset": 1032, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "OpenAICompatibleEmbeddingModel", + "ranges": [{ "startOffset": 1068, "endOffset": 1104, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "OpenAICompatibleImageModel", + "ranges": [{ "startOffset": 1136, "endOffset": 1168, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "VERSION", + "ranges": [{ "startOffset": 1181, "endOffset": 1194, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createOpenAICompatible", + "ranges": [{ "startOffset": 1222, "endOffset": 1250, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toCamelCase", + "ranges": [{ "startOffset": 1538, "endOffset": 1632, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolveProviderOptionsKey", + "ranges": [{ "startOffset": 1633, "endOffset": 1889, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "errorToMessage", + "ranges": [{ "startOffset": 2529, "endOffset": 2557, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "convertOpenAICompatibleChatUsage", + "ranges": [{ "startOffset": 2614, "endOffset": 3719, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getOpenAIMetadata", + "ranges": [{ "startOffset": 3893, "endOffset": 4078, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getAudioFormat", + "ranges": [{ "startOffset": 4079, "endOffset": 4283, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "convertToOpenAICompatibleChatMessages", + "ranges": [{ "startOffset": 4284, "endOffset": 10903, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getResponseMetadata", + "ranges": [{ "startOffset": 10942, "endOffset": 11165, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mapOpenAICompatibleFinishReason", + "ranges": [{ "startOffset": 11218, "endOffset": 11555, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "prepareTools", + "ranges": [{ "startOffset": 12560, "endOffset": 13999, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "OpenAICompatibleChatLanguageModel", + "ranges": [{ "startOffset": 14139, "endOffset": 14701, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get provider", + "ranges": [{ "startOffset": 14704, "endOffset": 14757, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get providerOptionsName", + "ranges": [{ "startOffset": 14760, "endOffset": 14845, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get supportedUrls", + "ranges": [{ "startOffset": 14848, "endOffset": 15001, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transformRequestBody", + "ranges": [{ "startOffset": 15004, "endOffset": 15179, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "convertUsage", + "ranges": [{ "startOffset": 15182, "endOffset": 15378, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getArgs", + "ranges": [{ "startOffset": 15381, "endOffset": 19378, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "doGenerate", + "ranges": [{ "startOffset": 19381, "endOffset": 22747, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "doStream", + "ranges": [{ "startOffset": 22750, "endOffset": 34579, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createOpenAICompatibleChatChunkSchema", + "ranges": [{ "startOffset": 37930, "endOffset": 37997, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "convertOpenAICompatibleCompletionUsage", + "ranges": [{ "startOffset": 38230, "endOffset": 39020, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "convertToOpenAICompatibleCompletionPrompt", + "ranges": [{ "startOffset": 39142, "endOffset": 40795, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getResponseMetadata2", + "ranges": [{ "startOffset": 40840, "endOffset": 41064, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mapOpenAICompatibleFinishReason2", + "ranges": [{ "startOffset": 41123, "endOffset": 41461, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "OpenAICompatibleCompletionLanguageModel", + "ranges": [{ "startOffset": 42520, "endOffset": 42985, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get provider", + "ranges": [{ "startOffset": 42988, "endOffset": 43041, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get providerOptionsName", + "ranges": [{ "startOffset": 43044, "endOffset": 43129, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get supportedUrls", + "ranges": [{ "startOffset": 43132, "endOffset": 43285, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getArgs", + "ranges": [{ "startOffset": 43288, "endOffset": 45727, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "doGenerate", + "ranges": [{ "startOffset": 45730, "endOffset": 47065, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "doStream", + "ranges": [{ "startOffset": 47068, "endOffset": 50343, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createOpenAICompatibleCompletionChunkSchema", + "ranges": [{ "startOffset": 50939, "endOffset": 51394, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "OpenAICompatibleEmbeddingModel", + "ranges": [{ "startOffset": 52226, "endOffset": 52352, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get provider", + "ranges": [{ "startOffset": 52355, "endOffset": 52408, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get maxEmbeddingsPerCall", + "ranges": [{ "startOffset": 52411, "endOffset": 52527, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get supportsParallelCalls", + "ranges": [{ "startOffset": 52530, "endOffset": 52648, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get providerOptionsName", + "ranges": [{ "startOffset": 52651, "endOffset": 52736, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "doEmbed", + "ranges": [{ "startOffset": 52739, "endOffset": 55308, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "OpenAICompatibleImageModel", + "ranges": [{ "startOffset": 55895, "endOffset": 56053, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get provider", + "ranges": [{ "startOffset": 56056, "endOffset": 56109, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get providerOptionsKey", + "ranges": [{ "startOffset": 56197, "endOffset": 56281, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getArgs", + "ranges": [{ "startOffset": 56359, "endOffset": 56523, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "doGenerate", + "ranges": [{ "startOffset": 56526, "endOffset": 59647, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "fileToBlob", + "ranges": [{ "startOffset": 59804, "endOffset": 60115, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createOpenAICompatible", + "ranges": [{ "startOffset": 60321, "endOffset": 62443, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1576", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@ai-sdk/provider/dist/index.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 13939, "count": 1 }, + { "startOffset": 13487, "endOffset": 13904, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 228, "endOffset": 345, "count": 1 }, + { "startOffset": 277, "endOffset": 343, "count": 18 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 365, "endOffset": 711, "count": 1 }, + { "startOffset": 434, "endOffset": 463, "count": 0 }, + { "startOffset": 518, "endOffset": 692, "count": 18 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 603, "endOffset": 618, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 732, "endOffset": 803, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "AISDKError", + "ranges": [{ "startOffset": 886, "endOffset": 902, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "APICallError", + "ranges": [{ "startOffset": 920, "endOffset": 938, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "EmptyResponseBodyError", + "ranges": [{ "startOffset": 966, "endOffset": 994, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "InvalidArgumentError", + "ranges": [{ "startOffset": 1020, "endOffset": 1046, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "InvalidPromptError", + "ranges": [{ "startOffset": 1070, "endOffset": 1094, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "InvalidResponseDataError", + "ranges": [{ "startOffset": 1124, "endOffset": 1154, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "JSONParseError", + "ranges": [{ "startOffset": 1174, "endOffset": 1194, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "LoadAPIKeyError", + "ranges": [{ "startOffset": 1215, "endOffset": 1236, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "LoadSettingError", + "ranges": [{ "startOffset": 1258, "endOffset": 1280, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "NoContentGeneratedError", + "ranges": [{ "startOffset": 1309, "endOffset": 1338, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "NoSuchModelError", + "ranges": [{ "startOffset": 1360, "endOffset": 1382, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "TooManyEmbeddingValuesForCallError", + "ranges": [{ "startOffset": 1422, "endOffset": 1462, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "TypeValidationError", + "ranges": [{ "startOffset": 1487, "endOffset": 1512, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "UnsupportedFunctionalityError", + "ranges": [{ "startOffset": 1547, "endOffset": 1582, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getErrorMessage", + "ranges": [{ "startOffset": 1603, "endOffset": 1624, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isJSONArray", + "ranges": [{ "startOffset": 1641, "endOffset": 1658, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isJSONObject", + "ranges": [{ "startOffset": 1676, "endOffset": 1694, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isJSONValue", + "ranges": [{ "startOffset": 1711, "endOffset": 1728, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_AISDKError", + "ranges": [{ "startOffset": 2269, "endOffset": 2423, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isInstance", + "ranges": [{ "startOffset": 2625, "endOffset": 2697, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "hasMarker", + "ranges": [{ "startOffset": 2707, "endOffset": 2942, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "APICallError", + "ranges": [{ "startOffset": 3175, "endOffset": 3831, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isInstance", + "ranges": [{ "startOffset": 3841, "endOffset": 3913, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "EmptyResponseBodyError", + "ranges": [{ "startOffset": 4203, "endOffset": 4321, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isInstance", + "ranges": [{ "startOffset": 4331, "endOffset": 4403, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getErrorMessage", + "ranges": [{ "startOffset": 4443, "endOffset": 4684, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "InvalidArgumentError", + "ranges": [{ "startOffset": 4940, "endOffset": 5097, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isInstance", + "ranges": [{ "startOffset": 5107, "endOffset": 5179, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "InvalidPromptError", + "ranges": [{ "startOffset": 5432, "endOffset": 5613, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isInstance", + "ranges": [{ "startOffset": 5623, "endOffset": 5695, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "InvalidResponseDataError", + "ranges": [{ "startOffset": 5967, "endOffset": 6146, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isInstance", + "ranges": [{ "startOffset": 6156, "endOffset": 6228, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "JSONParseError", + "ranges": [{ "startOffset": 6469, "endOffset": 6693, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isInstance", + "ranges": [{ "startOffset": 6703, "endOffset": 6775, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "LoadAPIKeyError", + "ranges": [{ "startOffset": 7044, "endOffset": 7133, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isInstance", + "ranges": [{ "startOffset": 7143, "endOffset": 7215, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "LoadSettingError", + "ranges": [{ "startOffset": 7486, "endOffset": 7575, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isInstance", + "ranges": [{ "startOffset": 7585, "endOffset": 7657, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "NoContentGeneratedError", + "ranges": [{ "startOffset": 7959, "endOffset": 8086, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isInstance", + "ranges": [{ "startOffset": 8096, "endOffset": 8169, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "NoSuchModelError", + "ranges": [{ "startOffset": 8428, "endOffset": 8677, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isInstance", + "ranges": [{ "startOffset": 8687, "endOffset": 8760, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "TooManyEmbeddingValuesForCallError", + "ranges": [{ "startOffset": 9076, "endOffset": 9569, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isInstance", + "ranges": [{ "startOffset": 9579, "endOffset": 9652, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_TypeValidationError", + "ranges": [{ "startOffset": 9940, "endOffset": 10794, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isInstance", + "ranges": [{ "startOffset": 10804, "endOffset": 10877, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "wrap", + "ranges": [{ "startOffset": 11513, "endOffset": 12080, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "UnsupportedFunctionalityError", + "ranges": [{ "startOffset": 12377, "endOffset": 12585, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isInstance", + "ranges": [{ "startOffset": 12595, "endOffset": 12668, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isJSONValue", + "ranges": [{ "startOffset": 12702, "endOffset": 13125, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isJSONArray", + "ranges": [{ "startOffset": 13126, "endOffset": 13216, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isJSONObject", + "ranges": [{ "startOffset": 13217, "endOffset": 13422, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1577", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@ai-sdk/provider-utils/dist/index.js", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 83849, "count": 1 }, + { "startOffset": 20646, "endOffset": 20660, "count": 0 }, + { "startOffset": 82458, "endOffset": 83814, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__export", + "ranges": [ + { "startOffset": 300, "endOffset": 414, "count": 1 }, + { "startOffset": 348, "endOffset": 412, "count": 61 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__copyProps", + "ranges": [ + { "startOffset": 434, "endOffset": 780, "count": 2 }, + { "startOffset": 503, "endOffset": 532, "count": 0 }, + { "startOffset": 587, "endOffset": 761, "count": 302 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 672, "endOffset": 687, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__toESM", + "ranges": [ + { "startOffset": 796, "endOffset": 1305, "count": 1 }, + { "startOffset": 877, "endOffset": 881, "count": 0 }, + { "startOffset": 1222, "endOffset": 1286, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__toCommonJS", + "ranges": [{ "startOffset": 1326, "endOffset": 1397, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "DEFAULT_MAX_DOWNLOAD_SIZE", + "ranges": [{ "startOffset": 1495, "endOffset": 1526, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "DelayedPromise", + "ranges": [{ "startOffset": 1546, "endOffset": 1566, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "DownloadError", + "ranges": [{ "startOffset": 1585, "endOffset": 1604, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "EventSourceParserStream", + "ranges": [{ "startOffset": 1633, "endOffset": 1677, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "VERSION", + "ranges": [{ "startOffset": 1690, "endOffset": 1703, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "asSchema", + "ranges": [{ "startOffset": 1717, "endOffset": 1731, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "combineHeaders", + "ranges": [{ "startOffset": 1751, "endOffset": 1771, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "convertAsyncIteratorToReadableStream", + "ranges": [{ "startOffset": 1813, "endOffset": 1855, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "convertBase64ToUint8Array", + "ranges": [{ "startOffset": 1886, "endOffset": 1917, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "convertImageModelFileToDataUri", + "ranges": [{ "startOffset": 1953, "endOffset": 1989, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "convertToBase64", + "ranges": [{ "startOffset": 2010, "endOffset": 2031, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "convertToFormData", + "ranges": [{ "startOffset": 2054, "endOffset": 2077, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "convertUint8ArrayToBase64", + "ranges": [{ "startOffset": 2108, "endOffset": 2139, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createBinaryResponseHandler", + "ranges": [{ "startOffset": 2172, "endOffset": 2205, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createEventSourceResponseHandler", + "ranges": [{ "startOffset": 2243, "endOffset": 2281, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createIdGenerator", + "ranges": [{ "startOffset": 2304, "endOffset": 2327, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createJsonErrorResponseHandler", + "ranges": [{ "startOffset": 2363, "endOffset": 2399, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createJsonResponseHandler", + "ranges": [{ "startOffset": 2430, "endOffset": 2461, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createProviderToolFactory", + "ranges": [{ "startOffset": 2492, "endOffset": 2523, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createProviderToolFactoryWithOutputSchema", + "ranges": [{ "startOffset": 2570, "endOffset": 2617, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createStatusCodeErrorResponseHandler", + "ranges": [{ "startOffset": 2659, "endOffset": 2701, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createToolNameMapping", + "ranges": [{ "startOffset": 2728, "endOffset": 2755, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "delay", + "ranges": [{ "startOffset": 2766, "endOffset": 2777, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "downloadBlob", + "ranges": [{ "startOffset": 2795, "endOffset": 2813, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "dynamicTool", + "ranges": [{ "startOffset": 2830, "endOffset": 2847, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "executeTool", + "ranges": [{ "startOffset": 2864, "endOffset": 2881, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "extractResponseHeaders", + "ranges": [{ "startOffset": 2909, "endOffset": 2937, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "generateId", + "ranges": [{ "startOffset": 2953, "endOffset": 2969, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getErrorMessage", + "ranges": [{ "startOffset": 2990, "endOffset": 3011, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getFromApi", + "ranges": [{ "startOffset": 3027, "endOffset": 3043, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getRuntimeEnvironmentUserAgent", + "ranges": [{ "startOffset": 3079, "endOffset": 3115, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "injectJsonInstructionIntoMessages", + "ranges": [{ "startOffset": 3154, "endOffset": 3193, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isAbortError", + "ranges": [{ "startOffset": 3211, "endOffset": 3229, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isNonNullable", + "ranges": [{ "startOffset": 3248, "endOffset": 3267, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isParsableJson", + "ranges": [{ "startOffset": 3287, "endOffset": 3307, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isUrlSupported", + "ranges": [{ "startOffset": 3327, "endOffset": 3347, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "jsonSchema", + "ranges": [{ "startOffset": 3363, "endOffset": 3379, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lazySchema", + "ranges": [{ "startOffset": 3395, "endOffset": 3411, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "loadApiKey", + "ranges": [{ "startOffset": 3427, "endOffset": 3443, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "loadOptionalSetting", + "ranges": [{ "startOffset": 3468, "endOffset": 3493, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "loadSetting", + "ranges": [{ "startOffset": 3510, "endOffset": 3527, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mediaTypeToExtension", + "ranges": [{ "startOffset": 3553, "endOffset": 3579, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "normalizeHeaders", + "ranges": [{ "startOffset": 3601, "endOffset": 3623, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseJSON", + "ranges": [{ "startOffset": 3638, "endOffset": 3653, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseJsonEventStream", + "ranges": [{ "startOffset": 3679, "endOffset": 3705, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseProviderOptions", + "ranges": [{ "startOffset": 3731, "endOffset": 3757, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "postFormDataToApi", + "ranges": [{ "startOffset": 3780, "endOffset": 3803, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "postJsonToApi", + "ranges": [{ "startOffset": 3822, "endOffset": 3841, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "postToApi", + "ranges": [{ "startOffset": 3856, "endOffset": 3871, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readResponseWithSizeLimit", + "ranges": [{ "startOffset": 3902, "endOffset": 3933, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "removeUndefinedEntries", + "ranges": [{ "startOffset": 3961, "endOffset": 3989, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolve", + "ranges": [{ "startOffset": 4002, "endOffset": 4015, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "safeParseJSON", + "ranges": [{ "startOffset": 4034, "endOffset": 4053, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "safeValidateTypes", + "ranges": [{ "startOffset": 4076, "endOffset": 4099, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stripFileExtension", + "ranges": [{ "startOffset": 4123, "endOffset": 4147, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "tool", + "ranges": [{ "startOffset": 4157, "endOffset": 4167, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "validateDownloadUrl", + "ranges": [{ "startOffset": 4192, "endOffset": 4217, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "validateTypes", + "ranges": [{ "startOffset": 4236, "endOffset": 4255, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "withUserAgentSuffix", + "ranges": [{ "startOffset": 4280, "endOffset": 4305, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "withoutTrailingSlash", + "ranges": [{ "startOffset": 4331, "endOffset": 4357, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "zodSchema", + "ranges": [{ "startOffset": 4372, "endOffset": 4387, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "combineHeaders", + "ranges": [{ "startOffset": 4465, "endOffset": 4673, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "convertAsyncIteratorToReadableStream", + "ranges": [{ "startOffset": 4727, "endOffset": 5647, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createToolNameMapping", + "ranges": [{ "startOffset": 5684, "endOffset": 6731, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "delay", + "ranges": [{ "startOffset": 6749, "endOffset": 7474, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createAbortError", + "ranges": [{ "startOffset": 7475, "endOffset": 7568, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "DelayedPromise", + "ranges": [{ "startOffset": 7627, "endOffset": 7740, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get promise", + "ranges": [{ "startOffset": 7743, "endOffset": 8149, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolve", + "ranges": [{ "startOffset": 8152, "endOffset": 8333, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "reject", + "ranges": [{ "startOffset": 8336, "endOffset": 8515, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isResolved", + "ranges": [{ "startOffset": 8518, "endOffset": 8580, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isRejected", + "ranges": [{ "startOffset": 8583, "endOffset": 8645, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isPending", + "ranges": [{ "startOffset": 8648, "endOffset": 8708, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "extractResponseHeaders", + "ranges": [{ "startOffset": 8748, "endOffset": 8845, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "convertBase64ToUint8Array", + "ranges": [{ "startOffset": 8902, "endOffset": 9137, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "convertUint8ArrayToBase64", + "ranges": [{ "startOffset": 9138, "endOffset": 9336, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "convertToBase64", + "ranges": [{ "startOffset": 9337, "endOffset": 9453, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "convertImageModelFileToDataUri", + "ranges": [{ "startOffset": 9502, "endOffset": 9721, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "convertToFormData", + "ranges": [{ "startOffset": 9754, "endOffset": 10339, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "DownloadError", + "ranges": [{ "startOffset": 10622, "endOffset": 10971, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isInstance", + "ranges": [{ "startOffset": 10981, "endOffset": 11068, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readResponseWithSizeLimit", + "ranges": [{ "startOffset": 11169, "endOffset": 12460, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "validateDownloadUrl", + "ranges": [{ "startOffset": 12494, "endOffset": 13787, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isIPv4", + "ranges": [{ "startOffset": 13788, "endOffset": 14047, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isPrivateIPv4", + "ranges": [{ "startOffset": 14048, "endOffset": 14386, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isPrivateIPv6", + "ranges": [{ "startOffset": 14387, "endOffset": 15252, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "downloadBlob", + "ranges": [{ "startOffset": 15278, "endOffset": 16232, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createIdGenerator", + "ranges": [ + { "startOffset": 16332, "endOffset": 17045, "count": 1 }, + { "startOffset": 16762, "endOffset": 17044, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "generator", + "ranges": [{ "startOffset": 16488, "endOffset": 16711, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 16999, "endOffset": 17042, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getErrorMessage", + "ranges": [{ "startOffset": 17114, "endOffset": 17355, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isAbortError", + "ranges": [{ "startOffset": 17540, "endOffset": 17755, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isBunNetworkError", + "ranges": [{ "startOffset": 18012, "endOffset": 18238, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "handleFetchError", + "ranges": [{ "startOffset": 18239, "endOffset": 19014, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getRuntimeEnvironmentUserAgent", + "ranges": [{ "startOffset": 19061, "endOffset": 19653, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "normalizeHeaders", + "ranges": [{ "startOffset": 19683, "endOffset": 20165, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "withUserAgentSuffix", + "ranges": [{ "startOffset": 20200, "endOffset": 20596, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getOriginalFetch", + "ranges": [{ "startOffset": 20709, "endOffset": 20731, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getFromApi", + "ranges": [{ "startOffset": 20750, "endOffset": 22510, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "injectJsonInstruction", + "ranges": [{ "startOffset": 22752, "endOffset": 23262, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "injectJsonInstructionIntoMessages", + "ranges": [{ "startOffset": 23263, "endOffset": 23800, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isNonNullable", + "ranges": [{ "startOffset": 23828, "endOffset": 23885, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isUrlSupported", + "ranges": [{ "startOffset": 23914, "endOffset": 24466, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "loadApiKey", + "ranges": [{ "startOffset": 24543, "endOffset": 25675, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "loadOptionalSetting", + "ranges": [{ "startOffset": 25709, "endOffset": 26113, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "loadSetting", + "ranges": [{ "startOffset": 26190, "endOffset": 27340, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mediaTypeToExtension", + "ranges": [{ "startOffset": 27376, "endOffset": 27645, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 28104, "endOffset": 28362, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "filter", + "ranges": [{ "startOffset": 28363, "endOffset": 29141, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "secureJsonParse", + "ranges": [{ "startOffset": 29142, "endOffset": 29393, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addAdditionalPropertiesToJsonSchema", + "ranges": [{ "startOffset": 29631, "endOffset": 30674, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "visit", + "ranges": [{ "startOffset": 30675, "endOffset": 30793, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getDefaultOptions", + "ranges": [{ "startOffset": 31543, "endOffset": 31666, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseAnyDef", + "ranges": [{ "startOffset": 31822, "endOffset": 31861, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseArrayDef", + "ranges": [{ "startOffset": 31957, "endOffset": 32620, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseBigintDef", + "ranges": [{ "startOffset": 32682, "endOffset": 33319, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseBooleanDef", + "ranges": [{ "startOffset": 33382, "endOffset": 33442, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseBrandedDef", + "ranges": [{ "startOffset": 33505, "endOffset": 33586, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseCatchDef", + "ranges": [{ "startOffset": 33667, "endOffset": 33730, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseDateDef", + "ranges": [{ "startOffset": 33791, "endOffset": 34370, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "integerDateParser", + "ranges": [{ "startOffset": 34395, "endOffset": 34695, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseDefaultDef", + "ranges": [{ "startOffset": 34759, "endOffset": 34892, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseEffectsDef", + "ranges": [{ "startOffset": 34955, "endOffset": 35088, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseEnumDef", + "ranges": [{ "startOffset": 35148, "endOffset": 35247, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isJsonSchema7AllOfType", + "ranges": [{ "startOffset": 35344, "endOffset": 35445, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseIntersectionDef", + "ranges": [{ "startOffset": 35447, "endOffset": 36229, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseLiteralDef", + "ranges": [{ "startOffset": 36292, "endOffset": 36658, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "emoji", + "ranges": [{ "startOffset": 37516, "endOffset": 37701, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseStringDef", + "ranges": [{ "startOffset": 39513, "endOffset": 44024, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "escapeLiteralCheckValue", + "ranges": [{ "startOffset": 44025, "endOffset": 44163, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "escapeNonAlphaNumeric", + "ranges": [{ "startOffset": 44261, "endOffset": 44481, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addFormat", + "ranges": [{ "startOffset": 44482, "endOffset": 44995, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addPattern", + "ranges": [{ "startOffset": 44996, "endOffset": 45583, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stringifyRegExpWithFlags", + "ranges": [{ "startOffset": 45584, "endOffset": 47827, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseRecordDef", + "ranges": [{ "startOffset": 47889, "endOffset": 49208, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseMapDef", + "ranges": [{ "startOffset": 49267, "endOffset": 49831, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseNativeEnumDef", + "ranges": [{ "startOffset": 49898, "endOffset": 50391, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseNeverDef", + "ranges": [{ "startOffset": 50452, "endOffset": 50513, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseNullDef", + "ranges": [{ "startOffset": 50573, "endOffset": 50633, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseUnionDef", + "ranges": [{ "startOffset": 50836, "endOffset": 52665, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "asAnyOf", + "ranges": [{ "startOffset": 52680, "endOffset": 53064, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseNullableDef", + "ranges": [{ "startOffset": 53129, "endOffset": 53647, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseNumberDef", + "ranges": [{ "startOffset": 53709, "endOffset": 54387, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseObjectDef", + "ranges": [{ "startOffset": 54449, "endOffset": 55416, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "decideAdditionalProperties", + "ranges": [{ "startOffset": 55417, "endOffset": 55968, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "safeIsOptional", + "ranges": [{ "startOffset": 55969, "endOffset": 56081, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseOptionalDef", + "ranges": [{ "startOffset": 56168, "endOffset": 56565, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parsePipelineDef", + "ranges": [{ "startOffset": 56653, "endOffset": 57131, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parsePromiseDef", + "ranges": [{ "startOffset": 57195, "endOffset": 57274, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseSetDef", + "ranges": [{ "startOffset": 57333, "endOffset": 57707, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseTupleDef", + "ranges": [{ "startOffset": 57768, "endOffset": 58652, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseUndefinedDef", + "ranges": [{ "startOffset": 58717, "endOffset": 58788, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseUnknownDef", + "ranges": [{ "startOffset": 58851, "endOffset": 58905, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseReadonlyDef", + "ranges": [{ "startOffset": 58992, "endOffset": 59055, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "selectParser", + "ranges": [{ "startOffset": 59136, "endOffset": 62365, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getRelativePath", + "ranges": [{ "startOffset": 62453, "endOffset": 62654, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseDef", + "ranges": [{ "startOffset": 62712, "endOffset": 63822, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get$ref", + "ranges": [{ "startOffset": 63837, "endOffset": 64468, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addMeta", + "ranges": [{ "startOffset": 64484, "endOffset": 64613, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getRefs", + "ranges": [{ "startOffset": 64680, "endOffset": 65342, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "zod3ToJsonSchema", + "ranges": [{ "startOffset": 65433, "endOffset": 66955, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lazySchema", + "ranges": [{ "startOffset": 67042, "endOffset": 67197, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "jsonSchema", + "ranges": [{ "startOffset": 67198, "endOffset": 67514, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isSchema", + "ranges": [{ "startOffset": 67515, "endOffset": 67702, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "asSchema", + "ranges": [{ "startOffset": 67703, "endOffset": 67966, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "standardSchema", + "ranges": [{ "startOffset": 67967, "endOffset": 68551, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "zod3Schema", + "ranges": [{ "startOffset": 68552, "endOffset": 69167, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "zod4Schema", + "ranges": [{ "startOffset": 69168, "endOffset": 69882, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isZod4Schema", + "ranges": [{ "startOffset": 69883, "endOffset": 69951, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "zodSchema", + "ranges": [{ "startOffset": 69952, "endOffset": 70132, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "validateTypes", + "ranges": [{ "startOffset": 70159, "endOffset": 70441, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "safeValidateTypes", + "ranges": [{ "startOffset": 70442, "endOffset": 71160, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseJSON", + "ranges": [{ "startOffset": 71183, "endOffset": 71618, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "safeParseJSON", + "ranges": [{ "startOffset": 71619, "endOffset": 72088, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isParsableJson", + "ranges": [{ "startOffset": 72089, "endOffset": 72214, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseJsonEventStream", + "ranges": [{ "startOffset": 72308, "endOffset": 72714, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseProviderOptions", + "ranges": [{ "startOffset": 72802, "endOffset": 73378, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getOriginalFetch2", + "ranges": [{ "startOffset": 73479, "endOffset": 73501, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "postJsonToApi", + "ranges": [{ "startOffset": 73523, "endOffset": 73895, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "postFormDataToApi", + "ranges": [{ "startOffset": 73921, "endOffset": 74257, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "postToApi", + "ranges": [{ "startOffset": 74275, "endOffset": 76120, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "tool", + "ranges": [{ "startOffset": 76144, "endOffset": 76184, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "dynamicTool", + "ranges": [{ "startOffset": 76185, "endOffset": 76256, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createProviderToolFactory", + "ranges": [{ "startOffset": 76290, "endOffset": 76708, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createProviderToolFactoryWithOutputSchema", + "ranges": [{ "startOffset": 76709, "endOffset": 77197, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "removeUndefinedEntries", + "ranges": [{ "startOffset": 77234, "endOffset": 77379, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "resolve", + "ranges": [{ "startOffset": 77399, "endOffset": 77527, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createJsonErrorResponseHandler", + "ranges": [{ "startOffset": 77646, "endOffset": 79100, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createEventSourceResponseHandler", + "ranges": [{ "startOffset": 79141, "endOffset": 79473, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createJsonResponseHandler", + "ranges": [{ "startOffset": 79507, "endOffset": 80166, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createBinaryResponseHandler", + "ranges": [{ "startOffset": 80202, "endOffset": 80978, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createStatusCodeErrorResponseHandler", + "ranges": [{ "startOffset": 81023, "endOffset": 81427, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "stripFileExtension", + "ranges": [{ "startOffset": 81461, "endOffset": 81626, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "withoutTrailingSlash", + "ranges": [{ "startOffset": 81661, "endOffset": 81755, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isAsyncIterable", + "ranges": [{ "startOffset": 81785, "endOffset": 81891, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "executeTool", + "ranges": [{ "startOffset": 81922, "endOffset": 82317, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1578", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/index.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 1057, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 88, "endOffset": 405, "count": 239 }, + { "startOffset": 232, "endOffset": 247, "count": 238 }, + { "startOffset": 248, "endOffset": 284, "count": 1 }, + { "startOffset": 264, "endOffset": 284, "count": 0 }, + { "startOffset": 287, "endOffset": 363, "count": 1 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 327, "endOffset": 354, "count": 104 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__exportStar", + "ranges": [ + { "startOffset": 541, "endOffset": 692, "count": 1 }, + { "startOffset": 585, "endOffset": 690, "count": 240 }, + { "startOffset": 605, "endOffset": 657, "count": 239 }, + { "startOffset": 659, "endOffset": 690, "count": 239 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 750, "endOffset": 831, "count": 1 }, + { "startOffset": 808, "endOffset": 828, "count": 0 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1579", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v4/classic/index.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 1464, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 88, "endOffset": 405, "count": 238 }, + { "startOffset": 232, "endOffset": 247, "count": 234 }, + { "startOffset": 248, "endOffset": 284, "count": 4 }, + { "startOffset": 264, "endOffset": 284, "count": 0 }, + { "startOffset": 287, "endOffset": 363, "count": 4 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 327, "endOffset": 354, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__exportStar", + "ranges": [ + { "startOffset": 1091, "endOffset": 1242, "count": 1 }, + { "startOffset": 1135, "endOffset": 1240, "count": 238 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1580", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v3/index.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 1464, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 }, + { "startOffset": 664, "endOffset": 706, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 88, "endOffset": 405, "count": 107 }, + { "startOffset": 248, "endOffset": 284, "count": 0 }, + { "startOffset": 287, "endOffset": 363, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 327, "endOffset": 354, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 571, "endOffset": 662, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__setModuleDefault", + "ranges": [{ "startOffset": 666, "endOffset": 706, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "__importStar", + "ranges": [ + { "startOffset": 759, "endOffset": 1039, "count": 1 }, + { "startOffset": 818, "endOffset": 1038, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "__exportStar", + "ranges": [ + { "startOffset": 1091, "endOffset": 1242, "count": 1 }, + { "startOffset": 1135, "endOffset": 1240, "count": 107 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1581", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v3/external.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 1076, "count": 1 }, + { "startOffset": 407, "endOffset": 488, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 88, "endOffset": 405, "count": 107 }, + { "startOffset": 232, "endOffset": 247, "count": 0 }, + { "startOffset": 264, "endOffset": 284, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "get", + "ranges": [{ "startOffset": 327, "endOffset": 354, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 410, "endOffset": 487, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "__exportStar", + "ranges": [ + { "startOffset": 541, "endOffset": 692, "count": 6 }, + { "startOffset": 585, "endOffset": 690, "count": 107 } + ], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1582", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v3/errors.cjs", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 579, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 70, "endOffset": 151, "count": 1 }, + { "startOffset": 122, "endOffset": 127, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "setErrorMap", + "ranges": [{ "startOffset": 465, "endOffset": 522, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getErrorMap", + "ranges": [{ "startOffset": 523, "endOffset": 578, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1583", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v3/locales/en.cjs", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 6005, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "errorMap", + "ranges": [{ "startOffset": 194, "endOffset": 5941, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1584", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v3/ZodError.cjs", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 4593, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "quotelessJson", + "ranges": [{ "startOffset": 643, "endOffset": 749, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get errors", + "ranges": [{ "startOffset": 825, "endOffset": 873, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodError", + "ranges": [{ "startOffset": 878, "endOffset": 1477, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "format", + "ranges": [{ "startOffset": 1482, "endOffset": 3504, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "assert", + "ranges": [{ "startOffset": 3516, "endOffset": 3648, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toString", + "ranges": [{ "startOffset": 3653, "endOffset": 3700, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get message", + "ranges": [{ "startOffset": 3705, "endOffset": 3811, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get isEmpty", + "ranges": [{ "startOffset": 3816, "endOffset": 3878, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "flatten", + "ranges": [{ "startOffset": 3883, "endOffset": 4408, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get formErrors", + "ranges": [{ "startOffset": 4413, "endOffset": 4468, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodError.create", + "ranges": [{ "startOffset": 4518, "endOffset": 4591, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1585", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v3/helpers/util.cjs", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 4401, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [ + { "startOffset": 180, "endOffset": 2171, "count": 1 }, + { "startOffset": 1153, "endOffset": 1413, "count": 0 }, + { "startOffset": 1728, "endOffset": 1813, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "util.assertEqual", + "ranges": [{ "startOffset": 221, "endOffset": 231, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "assertIs", + "ranges": [{ "startOffset": 237, "endOffset": 264, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "assertNever", + "ranges": [{ "startOffset": 299, "endOffset": 358, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "util.arrayToEnum", + "ranges": [ + { "startOffset": 418, "endOffset": 556, "count": 2 }, + { "startOffset": 489, "endOffset": 530, "count": 36 } + ], + "isBlockCoverage": true + }, + { + "functionName": "util.getValidEnumValues", + "ranges": [{ "startOffset": 588, "endOffset": 853, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "util.objectValues", + "ranges": [{ "startOffset": 879, "endOffset": 989, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "util.objectKeys.Object.keys.keys", + "ranges": [{ "startOffset": 1088, "endOffset": 1113, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "util.objectKeys", + "ranges": [{ "startOffset": 1155, "endOffset": 1413, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "util.find", + "ranges": [{ "startOffset": 1431, "endOffset": 1586, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 1658, "endOffset": 1688, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "util.isInteger", + "ranges": [{ "startOffset": 1730, "endOffset": 1813, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "joinValues", + "ranges": [{ "startOffset": 1819, "endOffset": 1969, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "util.jsonStringifyReplacer", + "ranges": [{ "startOffset": 2037, "endOffset": 2168, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 2227, "endOffset": 2409, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "objectUtil.mergeShapes", + "ranges": [{ "startOffset": 2280, "endOffset": 2406, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getParsedType", + "ranges": [{ "startOffset": 2806, "endOffset": 4360, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1586", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v3/helpers/parseUtil.cjs", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 4272, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "__importDefault", + "ranges": [ + { "startOffset": 70, "endOffset": 151, "count": 1 }, + { "startOffset": 122, "endOffset": 127, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "makeIssue", + "ranges": [{ "startOffset": 582, "endOffset": 1298, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "addIssueToContext", + "ranges": [{ "startOffset": 1356, "endOffset": 1983, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ParseStatus", + "ranges": [{ "startOffset": 2008, "endOffset": 2059, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "dirty", + "ranges": [{ "startOffset": 2064, "endOffset": 2149, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "abort", + "ranges": [{ "startOffset": 2154, "endOffset": 2243, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mergeArray", + "ranges": [{ "startOffset": 2255, "endOffset": 2614, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mergeObjectAsync", + "ranges": [{ "startOffset": 2626, "endOffset": 2983, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mergeObjectSync", + "ranges": [{ "startOffset": 2995, "endOffset": 3696, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "DIRTY", + "ranges": [{ "startOffset": 3809, "endOffset": 3848, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "OK", + "ranges": [{ "startOffset": 3884, "endOffset": 3923, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isAborted", + "ranges": [{ "startOffset": 3960, "endOffset": 3989, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isDirty", + "ranges": [{ "startOffset": 4038, "endOffset": 4065, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isValid", + "ranges": [{ "startOffset": 4110, "endOffset": 4137, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isAsync", + "ranges": [{ "startOffset": 4182, "endOffset": 4243, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1587", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v3/helpers/typeAliases.cjs", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 77, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1588", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v3/types.cjs", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 140154, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "ParseInputLazyPath", + "ranges": [{ "startOffset": 2057, "endOffset": 2242, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get path", + "ranges": [{ "startOffset": 2247, "endOffset": 2572, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "handleResult", + "ranges": [{ "startOffset": 2596, "endOffset": 3185, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "processCreateParams", + "ranges": [{ "startOffset": 3187, "endOffset": 4156, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get description", + "ranges": [{ "startOffset": 4177, "endOffset": 4240, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_getType", + "ranges": [{ "startOffset": 4245, "endOffset": 4325, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_getOrReturnCtx", + "ranges": [{ "startOffset": 4330, "endOffset": 4651, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_processInputParams", + "ranges": [{ "startOffset": 4656, "endOffset": 5079, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parseSync", + "ranges": [{ "startOffset": 5084, "endOffset": 5307, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parseAsync", + "ranges": [{ "startOffset": 5312, "endOffset": 5421, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parse", + "ranges": [{ "startOffset": 5426, "endOffset": 5594, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "safeParse", + "ranges": [{ "startOffset": 5599, "endOffset": 6140, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "~validate", + "ranges": [{ "startOffset": 6145, "endOffset": 7464, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parseAsync", + "ranges": [{ "startOffset": 7469, "endOffset": 7659, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "safeParseAsync", + "ranges": [{ "startOffset": 7664, "endOffset": 8337, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "refine", + "ranges": [{ "startOffset": 8342, "endOffset": 9532, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "refinement", + "ranges": [{ "startOffset": 9537, "endOffset": 9887, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_refinement", + "ranges": [{ "startOffset": 9892, "endOffset": 10105, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "superRefine", + "ranges": [{ "startOffset": 10110, "endOffset": 10186, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodType", + "ranges": [{ "startOffset": 10191, "endOffset": 11632, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "optional", + "ranges": [{ "startOffset": 11637, "endOffset": 11707, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "nullable", + "ranges": [{ "startOffset": 11712, "endOffset": 11782, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "nullish", + "ranges": [{ "startOffset": 11787, "endOffset": 11847, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "array", + "ranges": [{ "startOffset": 11852, "endOffset": 11905, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "promise", + "ranges": [{ "startOffset": 11910, "endOffset": 11978, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "or", + "ranges": [{ "startOffset": 11983, "endOffset": 12060, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "and", + "ranges": [{ "startOffset": 12065, "endOffset": 12152, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "transform", + "ranges": [{ "startOffset": 12157, "endOffset": 12412, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "default", + "ranges": [{ "startOffset": 12417, "endOffset": 12735, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "brand", + "ranges": [{ "startOffset": 12740, "endOffset": 12926, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "catch", + "ranges": [{ "startOffset": 12931, "endOffset": 13237, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "describe", + "ranges": [{ "startOffset": 13242, "endOffset": 13399, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pipe", + "ranges": [{ "startOffset": 13404, "endOffset": 13473, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "readonly", + "ranges": [{ "startOffset": 13478, "endOffset": 13537, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isOptional", + "ranges": [{ "startOffset": 13542, "endOffset": 13612, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isNullable", + "ranges": [{ "startOffset": 13617, "endOffset": 13682, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "timeRegexSource", + "ranges": [{ "startOffset": 20435, "endOffset": 20915, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "timeRegex", + "ranges": [{ "startOffset": 20916, "endOffset": 20997, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "datetimeRegex", + "ranges": [{ "startOffset": 21050, "endOffset": 21350, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isValidIP", + "ranges": [{ "startOffset": 21351, "endOffset": 21586, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isValidJWT", + "ranges": [{ "startOffset": 21587, "endOffset": 22403, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isValidCidr", + "ranges": [{ "startOffset": 22404, "endOffset": 22649, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 22688, "endOffset": 37042, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_regex", + "ranges": [{ "startOffset": 37047, "endOffset": 37306, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_addCheck", + "ranges": [{ "startOffset": 37311, "endOffset": 37454, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "email", + "ranges": [{ "startOffset": 37459, "endOffset": 37578, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "url", + "ranges": [{ "startOffset": 37583, "endOffset": 37698, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "emoji", + "ranges": [{ "startOffset": 37703, "endOffset": 37822, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "uuid", + "ranges": [{ "startOffset": 37827, "endOffset": 37944, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "nanoid", + "ranges": [{ "startOffset": 37949, "endOffset": 38070, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cuid", + "ranges": [{ "startOffset": 38075, "endOffset": 38192, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cuid2", + "ranges": [{ "startOffset": 38197, "endOffset": 38316, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ulid", + "ranges": [{ "startOffset": 38321, "endOffset": 38438, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "base64", + "ranges": [{ "startOffset": 38443, "endOffset": 38564, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "base64url", + "ranges": [{ "startOffset": 38569, "endOffset": 38833, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "jwt", + "ranges": [{ "startOffset": 38838, "endOffset": 38953, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ip", + "ranges": [{ "startOffset": 38958, "endOffset": 39071, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cidr", + "ranges": [{ "startOffset": 39076, "endOffset": 39193, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "datetime", + "ranges": [{ "startOffset": 39198, "endOffset": 39816, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "date", + "ranges": [{ "startOffset": 39821, "endOffset": 39900, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "time", + "ranges": [{ "startOffset": 39905, "endOffset": 40360, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "duration", + "ranges": [{ "startOffset": 40365, "endOffset": 40490, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "regex", + "ranges": [{ "startOffset": 40495, "endOffset": 40680, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "includes", + "ranges": [{ "startOffset": 40685, "endOffset": 40926, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "startsWith", + "ranges": [{ "startOffset": 40931, "endOffset": 41126, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "endsWith", + "ranges": [{ "startOffset": 41131, "endOffset": 41322, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "min", + "ranges": [{ "startOffset": 41327, "endOffset": 41516, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "max", + "ranges": [{ "startOffset": 41521, "endOffset": 41710, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "length", + "ranges": [{ "startOffset": 41715, "endOffset": 41898, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "nonempty", + "ranges": [{ "startOffset": 41950, "endOffset": 42047, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "trim", + "ranges": [{ "startOffset": 42052, "endOffset": 42196, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toLowerCase", + "ranges": [{ "startOffset": 42201, "endOffset": 42359, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "toUpperCase", + "ranges": [{ "startOffset": 42364, "endOffset": 42522, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get isDatetime", + "ranges": [{ "startOffset": 42527, "endOffset": 42623, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get isDate", + "ranges": [{ "startOffset": 42628, "endOffset": 42716, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get isTime", + "ranges": [{ "startOffset": 42721, "endOffset": 42809, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get isDuration", + "ranges": [{ "startOffset": 42814, "endOffset": 42910, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get isEmail", + "ranges": [{ "startOffset": 42915, "endOffset": 43005, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get isURL", + "ranges": [{ "startOffset": 43010, "endOffset": 43096, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get isEmoji", + "ranges": [{ "startOffset": 43101, "endOffset": 43191, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get isUUID", + "ranges": [{ "startOffset": 43196, "endOffset": 43284, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get isNANOID", + "ranges": [{ "startOffset": 43289, "endOffset": 43381, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get isCUID", + "ranges": [{ "startOffset": 43386, "endOffset": 43474, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get isCUID2", + "ranges": [{ "startOffset": 43479, "endOffset": 43569, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get isULID", + "ranges": [{ "startOffset": 43574, "endOffset": 43662, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get isIP", + "ranges": [{ "startOffset": 43667, "endOffset": 43751, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get isCIDR", + "ranges": [{ "startOffset": 43756, "endOffset": 43844, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get isBase64", + "ranges": [{ "startOffset": 43849, "endOffset": 43941, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get isBase64url", + "ranges": [{ "startOffset": 43946, "endOffset": 44148, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get minLength", + "ranges": [{ "startOffset": 44153, "endOffset": 44414, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get maxLength", + "ranges": [{ "startOffset": 44419, "endOffset": 44680, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodString.create", + "ranges": [{ "startOffset": 44733, "endOffset": 44935, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "floatSafeRemainder", + "ranges": [{ "startOffset": 45067, "endOffset": 45529, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodNumber", + "ranges": [{ "startOffset": 45568, "endOffset": 45713, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 45718, "endOffset": 49414, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "gte", + "ranges": [{ "startOffset": 49419, "endOffset": 49540, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "gt", + "ranges": [{ "startOffset": 49545, "endOffset": 49666, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lte", + "ranges": [{ "startOffset": 49671, "endOffset": 49792, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lt", + "ranges": [{ "startOffset": 49797, "endOffset": 49918, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setLimit", + "ranges": [{ "startOffset": 49923, "endOffset": 50309, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_addCheck", + "ranges": [{ "startOffset": 50314, "endOffset": 50457, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "int", + "ranges": [{ "startOffset": 50462, "endOffset": 50616, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "positive", + "ranges": [{ "startOffset": 50621, "endOffset": 50832, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "negative", + "ranges": [{ "startOffset": 50837, "endOffset": 51048, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "nonpositive", + "ranges": [{ "startOffset": 51053, "endOffset": 51266, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "nonnegative", + "ranges": [{ "startOffset": 51271, "endOffset": 51484, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "multipleOf", + "ranges": [{ "startOffset": 51489, "endOffset": 51690, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "finite", + "ranges": [{ "startOffset": 51695, "endOffset": 51855, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "safe", + "ranges": [{ "startOffset": 51860, "endOffset": 52274, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get minValue", + "ranges": [{ "startOffset": 52279, "endOffset": 52539, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get maxValue", + "ranges": [{ "startOffset": 52544, "endOffset": 52804, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get isInt", + "ranges": [{ "startOffset": 52809, "endOffset": 52963, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get isFinite", + "ranges": [{ "startOffset": 52968, "endOffset": 53574, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodNumber.create", + "ranges": [{ "startOffset": 53627, "endOffset": 53829, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodBigInt", + "ranges": [{ "startOffset": 53869, "endOffset": 53977, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 53982, "endOffset": 56467, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_getInvalidInput", + "ranges": [{ "startOffset": 56472, "endOffset": 56807, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "gte", + "ranges": [{ "startOffset": 56812, "endOffset": 56933, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "gt", + "ranges": [{ "startOffset": 56938, "endOffset": 57059, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lte", + "ranges": [{ "startOffset": 57064, "endOffset": 57185, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "lt", + "ranges": [{ "startOffset": 57190, "endOffset": 57311, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setLimit", + "ranges": [{ "startOffset": 57316, "endOffset": 57702, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_addCheck", + "ranges": [{ "startOffset": 57707, "endOffset": 57850, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "positive", + "ranges": [{ "startOffset": 57855, "endOffset": 58074, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "negative", + "ranges": [{ "startOffset": 58079, "endOffset": 58298, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "nonpositive", + "ranges": [{ "startOffset": 58303, "endOffset": 58524, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "nonnegative", + "ranges": [{ "startOffset": 58529, "endOffset": 58750, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "multipleOf", + "ranges": [{ "startOffset": 58755, "endOffset": 58949, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get minValue", + "ranges": [{ "startOffset": 58954, "endOffset": 59214, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get maxValue", + "ranges": [{ "startOffset": 59219, "endOffset": 59479, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodBigInt.create", + "ranges": [{ "startOffset": 59532, "endOffset": 59734, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 59775, "endOffset": 60389, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodBoolean.create", + "ranges": [{ "startOffset": 60445, "endOffset": 60629, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 60667, "endOffset": 63049, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_addCheck", + "ranges": [{ "startOffset": 63054, "endOffset": 63195, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "min", + "ranges": [{ "startOffset": 63200, "endOffset": 63401, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "max", + "ranges": [{ "startOffset": 63406, "endOffset": 63607, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get minDate", + "ranges": [{ "startOffset": 63612, "endOffset": 63902, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get maxDate", + "ranges": [{ "startOffset": 63907, "endOffset": 64197, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodDate.create", + "ranges": [{ "startOffset": 64244, "endOffset": 64442, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 64482, "endOffset": 65006, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodSymbol.create", + "ranges": [{ "startOffset": 65059, "endOffset": 65200, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 65243, "endOffset": 65773, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodUndefined.create", + "ranges": [{ "startOffset": 65835, "endOffset": 65982, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 66020, "endOffset": 66540, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodNull.create", + "ranges": [{ "startOffset": 66587, "endOffset": 66724, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodAny", + "ranges": [{ "startOffset": 66761, "endOffset": 66956, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 66961, "endOffset": 67033, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodAny.create", + "ranges": [{ "startOffset": 67077, "endOffset": 67212, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodUnknown", + "ranges": [{ "startOffset": 67253, "endOffset": 67353, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 67358, "endOffset": 67430, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodUnknown.create", + "ranges": [{ "startOffset": 67486, "endOffset": 67629, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 67668, "endOffset": 67992, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodNever.create", + "ranges": [{ "startOffset": 68042, "endOffset": 68181, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 68219, "endOffset": 68744, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodVoid.create", + "ranges": [{ "startOffset": 68791, "endOffset": 68928, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 68967, "endOffset": 71770, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get element", + "ranges": [{ "startOffset": 71775, "endOffset": 71827, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "min", + "ranges": [{ "startOffset": 71832, "endOffset": 72029, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "max", + "ranges": [{ "startOffset": 72034, "endOffset": 72231, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "length", + "ranges": [{ "startOffset": 72236, "endOffset": 72426, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "nonempty", + "ranges": [{ "startOffset": 72431, "endOffset": 72493, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodArray.create", + "ranges": [{ "startOffset": 72543, "endOffset": 72789, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "deepPartialify", + "ranges": [{ "startOffset": 72791, "endOffset": 73766, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodObject", + "ranges": [{ "startOffset": 73805, "endOffset": 75360, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_getCached", + "ranges": [{ "startOffset": 75365, "endOffset": 75618, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 75623, "endOffset": 79220, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get shape", + "ranges": [{ "startOffset": 79225, "endOffset": 79278, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "strict", + "ranges": [{ "startOffset": 79283, "endOffset": 80082, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "strip", + "ranges": [{ "startOffset": 80087, "endOffset": 80205, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "passthrough", + "ranges": [{ "startOffset": 80210, "endOffset": 80340, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "extend", + "ranges": [{ "startOffset": 80866, "endOffset": 81078, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "merge", + "ranges": [{ "startOffset": 81243, "endOffset": 81613, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "setKey", + "ranges": [{ "startOffset": 82815, "endOffset": 82890, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "catchall", + "ranges": [{ "startOffset": 83713, "endOffset": 83834, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "pick", + "ranges": [{ "startOffset": 83839, "endOffset": 84163, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "omit", + "ranges": [{ "startOffset": 84168, "endOffset": 84480, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "deepPartial", + "ranges": [{ "startOffset": 84520, "endOffset": 84578, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "partial", + "ranges": [{ "startOffset": 84583, "endOffset": 85049, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "required", + "ranges": [{ "startOffset": 85054, "endOffset": 85691, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "keyof", + "ranges": [{ "startOffset": 85696, "endOffset": 85780, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodObject.create", + "ranges": [{ "startOffset": 85833, "endOffset": 86076, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodObject.strictCreate", + "ranges": [{ "startOffset": 86103, "endOffset": 86347, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodObject.lazycreate", + "ranges": [{ "startOffset": 86372, "endOffset": 86602, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 86641, "endOffset": 89752, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get options", + "ranges": [{ "startOffset": 89757, "endOffset": 89812, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodUnion.create", + "ranges": [{ "startOffset": 89862, "endOffset": 90032, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "getDiscriminator", + "ranges": [{ "startOffset": 90437, "endOffset": 91747, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 91799, "endOffset": 93096, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get discriminator", + "ranges": [{ "startOffset": 93101, "endOffset": 93168, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get options", + "ranges": [{ "startOffset": 93173, "endOffset": 93228, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get optionsMap", + "ranges": [{ "startOffset": 93233, "endOffset": 93294, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 93773, "endOffset": 94792, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "mergeValues", + "ranges": [{ "startOffset": 94850, "endOffset": 96449, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 96494, "endOffset": 98182, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodIntersection.create", + "ranges": [{ "startOffset": 98253, "endOffset": 98461, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 98555, "endOffset": 100438, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get items", + "ranges": [{ "startOffset": 100443, "endOffset": 100494, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "rest", + "ranges": [{ "startOffset": 100499, "endOffset": 100603, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodTuple.create", + "ranges": [{ "startOffset": 100653, "endOffset": 100968, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get keySchema", + "ranges": [{ "startOffset": 101008, "endOffset": 101065, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get valueSchema", + "ranges": [{ "startOffset": 101070, "endOffset": 101131, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 101136, "endOffset": 102235, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get element", + "ranges": [{ "startOffset": 102240, "endOffset": 102297, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 102309, "endOffset": 102833, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get keySchema", + "ranges": [{ "startOffset": 102902, "endOffset": 102959, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get valueSchema", + "ranges": [{ "startOffset": 102964, "endOffset": 103025, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 103030, "endOffset": 105210, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodMap.create", + "ranges": [{ "startOffset": 105254, "endOffset": 105445, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 105482, "endOffset": 107747, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "min", + "ranges": [{ "startOffset": 107752, "endOffset": 107941, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "max", + "ranges": [{ "startOffset": 107946, "endOffset": 108135, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "size", + "ranges": [{ "startOffset": 108140, "endOffset": 108226, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "nonempty", + "ranges": [{ "startOffset": 108231, "endOffset": 108293, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodSet.create", + "ranges": [{ "startOffset": 108337, "endOffset": 108548, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodFunction", + "ranges": [{ "startOffset": 108590, "endOffset": 108680, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 108685, "endOffset": 112238, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "parameters", + "ranges": [{ "startOffset": 112243, "endOffset": 112294, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "returnType", + "ranges": [{ "startOffset": 112299, "endOffset": 112353, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "args", + "ranges": [{ "startOffset": 112358, "endOffset": 112519, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "returns", + "ranges": [{ "startOffset": 112524, "endOffset": 112655, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "implement", + "ranges": [{ "startOffset": 112660, "endOffset": 112761, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "strictImplement", + "ranges": [{ "startOffset": 112766, "endOffset": 112873, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 112885, "endOffset": 113202, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get schema", + "ranges": [{ "startOffset": 113276, "endOffset": 113331, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 113336, "endOffset": 113544, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodLazy.create", + "ranges": [{ "startOffset": 113591, "endOffset": 113760, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 113801, "endOffset": 114247, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get value", + "ranges": [{ "startOffset": 114252, "endOffset": 114303, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodLiteral.create", + "ranges": [{ "startOffset": 114359, "endOffset": 114531, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createZodEnum", + "ranges": [{ "startOffset": 114533, "endOffset": 114713, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 114750, "endOffset": 115787, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get options", + "ranges": [{ "startOffset": 115792, "endOffset": 115846, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get enum", + "ranges": [{ "startOffset": 115851, "endOffset": 116018, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get Values", + "ranges": [{ "startOffset": 116023, "endOffset": 116192, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get Enum", + "ranges": [{ "startOffset": 116197, "endOffset": 116364, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "extract", + "ranges": [{ "startOffset": 116369, "endOffset": 116513, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "exclude", + "ranges": [{ "startOffset": 116518, "endOffset": 116707, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 116811, "endOffset": 118042, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "get enum", + "ranges": [{ "startOffset": 118047, "endOffset": 118098, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodNativeEnum.create", + "ranges": [{ "startOffset": 118163, "endOffset": 118344, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "unwrap", + "ranges": [{ "startOffset": 118385, "endOffset": 118432, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 118437, "endOffset": 119258, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodPromise.create", + "ranges": [{ "startOffset": 119314, "endOffset": 119487, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "innerType", + "ranges": [{ "startOffset": 119528, "endOffset": 119580, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "sourceType", + "ranges": [{ "startOffset": 119585, "endOffset": 119764, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 119769, "endOffset": 124942, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodEffects.create", + "ranges": [{ "startOffset": 125035, "endOffset": 125226, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodEffects.createWithPreprocess", + "ranges": [{ "startOffset": 125262, "endOffset": 125504, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 125546, "endOffset": 125794, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "unwrap", + "ranges": [{ "startOffset": 125799, "endOffset": 125851, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodOptional.create", + "ranges": [{ "startOffset": 125910, "endOffset": 126086, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 126128, "endOffset": 126366, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "unwrap", + "ranges": [{ "startOffset": 126371, "endOffset": 126423, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodNullable.create", + "ranges": [{ "startOffset": 126482, "endOffset": 126658, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 126699, "endOffset": 127056, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "removeDefault", + "ranges": [{ "startOffset": 127061, "endOffset": 127120, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodDefault.create", + "ranges": [{ "startOffset": 127176, "endOffset": 127450, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 127489, "endOffset": 129004, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "removeCatch", + "ranges": [{ "startOffset": 129009, "endOffset": 129066, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodCatch.create", + "ranges": [{ "startOffset": 129116, "endOffset": 129378, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 129415, "endOffset": 129937, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodNaN.create", + "ranges": [{ "startOffset": 129981, "endOffset": 130116, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 130194, "endOffset": 130425, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "unwrap", + "ranges": [{ "startOffset": 130430, "endOffset": 130477, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 130553, "endOffset": 132201, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "create", + "ranges": [{ "startOffset": 132213, "endOffset": 132374, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "_parse", + "ranges": [{ "startOffset": 132452, "endOffset": 132832, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "unwrap", + "ranges": [{ "startOffset": 132837, "endOffset": 132889, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ZodReadonly.create", + "ranges": [{ "startOffset": 132948, "endOffset": 133124, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "cleanParams", + "ranges": [{ "startOffset": 133413, "endOffset": 133644, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "custom", + "ranges": [{ "startOffset": 133645, "endOffset": 134642, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 134725, "endOffset": 136735, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "Class", + "ranges": [{ "startOffset": 136863, "endOffset": 136884, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "instanceOfType", + "ranges": [{ "startOffset": 136910, "endOffset": 137096, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "ostring", + "ranges": [{ "startOffset": 139528, "endOffset": 139557, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "onumber", + "ranges": [{ "startOffset": 139602, "endOffset": 139631, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "oboolean", + "ranges": [{ "startOffset": 139677, "endOffset": 139707, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "string", + "ranges": [{ "startOffset": 139770, "endOffset": 139821, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "number", + "ranges": [{ "startOffset": 139837, "endOffset": 139888, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "boolean", + "ranges": [{ "startOffset": 139905, "endOffset": 139978, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "bigint", + "ranges": [{ "startOffset": 139994, "endOffset": 140045, "count": 0 }], + "isBlockCoverage": true + }, + { + "functionName": "date", + "ranges": [{ "startOffset": 140059, "endOffset": 140108, "count": 0 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1589", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/zod/v3/helpers/errorUtil.cjs", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 418, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 121, "endOffset": 364, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "errorUtil.errToObj", + "ranges": [{ "startOffset": 169, "endOffset": 239, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "errorUtil.toString", + "ranges": [{ "startOffset": 292, "endOffset": 361, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1590", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/eventsource-parser/dist/stream.cjs", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 818, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "EventSourceParserStream", + "ranges": [{ "startOffset": 169, "endOffset": 681, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1591", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/eventsource-parser/dist/index.cjs", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 6993, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "ParseError", + "ranges": [{ "startOffset": 110, "endOffset": 299, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "noop", + "ranges": [{ "startOffset": 338, "endOffset": 361, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "createParser", + "ranges": [{ "startOffset": 362, "endOffset": 6409, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isDataPrefix", + "ranges": [{ "startOffset": 6410, "endOffset": 6629, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "isEventPrefix", + "ranges": [{ "startOffset": 6630, "endOffset": 6887, "count": 0 }], + "isBlockCoverage": false + } + ] + }, + { + "scriptId": "1592", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/function-tests/tests/support/world.ts", + "functions": [ + { + "functionName": "", + "ranges": [{ "startOffset": 0, "endOffset": 1211, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "", + "ranges": [{ "startOffset": 134, "endOffset": 420, "count": 1 }], + "isBlockCoverage": true + } + ] + }, + { + "scriptId": "1593", + "url": "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/tsx/dist/lexer-DgIbo0BU.cjs", + "functions": [ + { + "functionName": "", + "ranges": [ + { "startOffset": 0, "endOffset": 13507, "count": 1 }, + { "startOffset": 13365, "endOffset": 13409, "count": 0 } + ], + "isBlockCoverage": true + }, + { + "functionName": "k", + "ranges": [{ "startOffset": 47, "endOffset": 91, "count": 3 }], + "isBlockCoverage": true + }, + { + "functionName": "exports.ImportType.exports.ImportType", + "ranges": [{ "startOffset": 118, "endOffset": 301, "count": 1 }], + "isBlockCoverage": true + }, + { + "functionName": "U", + "ranges": [{ "startOffset": 406, "endOffset": 1282, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "Y", + "ranges": [{ "startOffset": 1295, "endOffset": 1396, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "R", + "ranges": [{ "startOffset": 1405, "endOffset": 1479, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 13390, "endOffset": 13408, "count": 0 }], + "isBlockCoverage": false + }, + { + "functionName": "", + "ranges": [{ "startOffset": 13447, "endOffset": 13467, "count": 1 }], + "isBlockCoverage": true + } + ] + } + ], + "timestamp": 683913.911334, + "source-map-cache": { + "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/function-tests/tests/support/hooks.ts": { + "lineLengths": [139, 585, 4, 0, 1086], + "data": { + "version": 3, + "mappings": ";AAAA,+BAAO,kDACP,oBAAyF,8BACzF,IAAAA,iBAAmD,2BACnD,oBAAmB,4BAEnB,gCAAc,CAAE,8BAAQ,4BAAO,oCAAW,kCAAU,mDAAkB,EAAG,kBAAE,KAC3E,sCAAoB,CAAE,4BAAO,0BAAM,yBAAK,CAAC", + "names": ["import_cucumber"], + "ignoreList": [], + "sources": [ + "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/function-tests/tests/support/hooks.ts" + ], + "sourcesContent": [ + "import '../../../.pikku/pikku-bootstrap.gen.js'\nimport { Before, After, BeforeAll, AfterAll, setDefaultTimeout, Given, When, Then } from '@cucumber/cucumber'\nimport { registerHooks, registerCommonSteps } from '@pikku/cucumber'\nimport { db } from './services.js'\n\nregisterHooks({ Before, After, BeforeAll, AfterAll, setDefaultTimeout }, db)\nregisterCommonSteps({ Given, When, Then })\n" + ], + "sourceRoot": "" + }, + "url": null + }, + "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/.pikku/pikku-bootstrap.gen.ts": { + "lineLengths": [131, 2153, 4, 0, 2414], + "data": { + "version": 3, + "mappings": ";AAGA,+CAAO,wDACP,wCAAO,mDACP,uCAAO,iDACP,6CAAO,4DACP,0CAAO,uDACP,0CAAO,uDACP,oCAAO,kDACP,gDAAO,2DACP,mCAAO,gDACP,sCAAO,+CACP,sCAAO,+CACP,gCAAO,gDACP,mCAAO,8CACP,wBAAO,qCACP,kCAAO,4CACP,wCAAO,uDACP,qCAAO,kDACP,+BAAO,6CACP,sCAAO,oDACP,2CAAO,sDACP,8BAAO,2CACP,iCAAO,0CACP,iCAAO,0CACP,uBAAO,0CACP,+BAAO", + "names": [], + "ignoreList": [], + "sources": [ + "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/.pikku/pikku-bootstrap.gen.ts" + ], + "sourcesContent": [ + "/**\n * This file was generated by @pikku/cli@0.12.21\n */\nimport './rpc/pikku-rpc-wirings-meta.internal.gen.js'\nimport './agent/pikku-agent-wirings-meta.gen.js'\nimport './http/pikku-http-wirings-meta.gen.js'\nimport './scheduler/pikku-schedulers-wirings-meta.gen.js'\nimport './trigger/pikku-trigger-wirings-meta.gen.js'\nimport './trigger/pikku-trigger-sources-meta.gen.js'\nimport './function/pikku-functions-meta.gen.js'\nimport './queue/pikku-queue-workers-wirings-meta.gen.js'\nimport './channel/pikku-channels-meta.gen.js'\nimport './mcp/pikku-mcp-wirings-meta.gen.js'\nimport './cli/pikku-cli-wirings-meta.gen.js'\nimport './middleware/pikku-middleware.gen.js'\nimport './agent/pikku-agent-wirings.gen.js'\nimport './schemas/register.gen.js'\nimport './http/pikku-http-wirings.gen.js'\nimport './scheduler/pikku-schedulers-wirings.gen.js'\nimport './trigger/pikku-trigger-wirings.gen.js'\nimport './function/pikku-functions.gen.js'\nimport './workflow/pikku-workflow-wirings.gen.js'\nimport './queue/pikku-queue-workers-wirings.gen.js'\nimport './channel/pikku-channels.gen.js'\nimport './mcp/pikku-mcp-wirings.gen.js'\nimport './cli/pikku-cli-wirings.gen.js'\nimport '../src/scaffold/console.gen.js'\nimport '@pikku/addon-console/.pikku/pikku-bootstrap.gen.js'" + ], + "sourceRoot": "" + }, + "url": null + }, + "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/.pikku/rpc/pikku-rpc-wirings-meta.internal.gen.ts": { + "lineLengths": [151, 1011, 4, 0, 810], + "data": { + "version": 3, + "mappings": ";4uBAGA,oBAA2B,gCAC3B,+CAAqB,kEACrB,4BAAW,KAAM,MAAO,OAAQ,2CAAAA,OAAkC", + "names": ["metaData"], + "ignoreList": [], + "sources": [ + "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/.pikku/rpc/pikku-rpc-wirings-meta.internal.gen.ts" + ], + "sourcesContent": [ + "/**\n * This file was generated by @pikku/cli@0.12.21\n */\nimport { pikkuState } from '@pikku/core/internal'\nimport metaData from './pikku-rpc-wirings-meta.internal.gen.json' with { type: 'json' }\npikkuState(null, 'rpc', 'meta', metaData as Record)" + ], + "sourceRoot": "" + }, + "url": null + }, + "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/internal.js": { + "lineLengths": [124, 1091, 4, 0, 526], + "data": { + "version": 3, + "mappings": ";wpBAAA,2QAA4C,4BAC5C,uBAA2B", + "names": [], + "ignoreList": [], + "sources": [ + "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/internal.js" + ], + "sourcesContent": [ + "export { pikkuState, resetPikkuState } from './pikku-state.js';\nexport { httpRouter } from './wirings/http/routers/http-router.js';\n" + ], + "sourceRoot": "" + }, + "url": null + }, + "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/pikku-state.js": { + "lineLengths": [127, 4019, 4, 0, 9898], + "data": { + "version": 3, + "mappings": ";suBAAA,kaAAM,gBAAkB,OAAO,mBAAmB,EAC3C,MAAM,oBAAsB,WAAM,CACrC,GAAI,CAAC,WAAW,eAAe,EAAG,CAC9B,CACA,WAAW,eAAe,EAAI,IAAI,GACtC,CACA,OAAO,WAAW,eAAe,CACrC,EANmC,uBAuB5B,MAAM,WAAa,QAAC,YAAa,KAAM,QAAS,QAAU,CAC7D,MAAM,oBAAsB,aAAe,WAE3C,GAAI,CAAC,oBAAoB,EAAE,IAAI,mBAAmB,EAAG,CACjD,qBAAqB,mBAAmB,CAC5C,CACA,MAAM,aAAe,oBAAoB,EAAE,IAAI,mBAAmB,EAClE,GAAI,QAAU,OAAW,CACrB,aAAa,IAAI,EAAE,OAAO,EAAI,KAClC,CACA,OAAO,aAAa,IAAI,EAAE,OAAO,CACrC,EAX0B,cAY1B,MAAM,wBAA0B,YAAO,CACnC,SAAU,CACN,KAAM,CAAC,EACP,UAAW,IAAI,GACnB,EACA,IAAK,CACD,KAAM,CAAC,EACP,MAAO,IAAI,GACf,EACA,OAAQ,CACJ,SAAU,IAAI,GAClB,EACA,KAAM,CACF,WAAY,IAAI,IAChB,YAAa,IAAI,IACjB,OAAQ,IAAI,IACZ,KAAM,CACF,KAAM,CAAC,EACP,IAAK,CAAC,EACN,OAAQ,CAAC,EACT,MAAO,CAAC,EACR,KAAM,CAAC,EACP,IAAK,CAAC,EACN,QAAS,CAAC,CACd,CACJ,EACA,QAAS,CACL,SAAU,IAAI,IACd,KAAM,CAAC,CACX,EACA,UAAW,CACP,MAAO,IAAI,IACX,KAAM,CAAC,CACX,EACA,MAAO,CACH,cAAe,IAAI,IACnB,KAAM,CAAC,CACX,EACA,UAAW,CACP,cAAe,IAAI,IACnB,KAAM,CAAC,CACX,EACA,QAAS,CACL,UAAW,IAAI,IACf,SAAU,IAAI,IACd,eAAgB,IAAI,IACpB,KAAM,CAAC,EACP,WAAY,CAAC,CACjB,EACA,IAAK,CACD,UAAW,IAAI,IACf,cAAe,CAAC,EAChB,UAAW,CAAC,EACZ,QAAS,IAAI,IACb,YAAa,CAAC,CAClB,EACA,MAAO,CACH,OAAQ,IAAI,IACZ,WAAY,CAAC,CACjB,EACA,QAAS,CACL,SAAU,IAAI,IACd,KAAM,CAAC,CACX,EACA,IAAK,CACD,KAAM,CAAE,SAAU,CAAC,EAAG,UAAW,CAAC,CAAE,EACpC,SAAU,CAAC,CACf,EACA,WAAY,CACR,SAAU,CAAC,EACX,UAAW,CAAC,EACZ,OAAQ,CAAC,CACb,EACA,kBAAmB,CACf,SAAU,CAAC,CACf,EACA,YAAa,CACT,SAAU,CAAC,EACX,UAAW,CAAC,EACZ,OAAQ,CAAC,CACb,EACA,KAAM,CACF,OAAQ,IAAI,IACZ,QAAS,IAAI,IACb,WAAY,CAAC,EACb,kBAAmB,CAAC,EACpB,YAAa,CAAC,CAClB,EACA,OAAQ,CACJ,OAAQ,IACZ,EACA,QAAS,CACL,UAAW,KACX,kBAAmB,KACnB,gBAAiB,KACjB,uBAAwB,IAC5B,CACJ,GAjGgC,2BAqGzB,MAAM,qBAAuB,OAAC,aAAgB,CACjD,GAAI,CAAC,oBAAoB,EAAE,IAAI,WAAW,EAAG,CACzC,oBAAoB,EAAE,IAAI,YAAa,wBAAwB,CAAC,CACpE,CACJ,EAJoC,wBAK7B,MAAM,gBAAkB,WAAM,CAEjC,MAAM,eAAiB,oBAAoB,EAAE,IAAI,UAAU,GAAG,KAAK,OACnE,WAAW,eAAe,EAAI,IAAI,IAClC,qBAAqB,UAAU,EAE/B,GAAI,eAAgB,CAChB,MAAM,UAAY,oBAAoB,EAAE,IAAI,UAAU,EACtD,UAAU,KAAK,OAAS,cAC5B,CACJ,EAV+B,mBAW/B,GAAI,CAAC,oBAAoB,EAAE,IAAI,UAAU,EAAG,CACxC,gBAAgB,CACpB,CACO,MAAM,qBAAuB,WAAM,CACtC,MAAM,SAAW,WAAW,KAAM,UAAW,mBAAmB,EAChE,GAAI,CAAC,SACD,MAAM,IAAI,MAAM,oCAAoC,EACxD,OAAO,QACX,EALoC,wBAM7B,MAAM,sBAAwB,WAAM,CACvC,OAAO,WAAW,KAAM,UAAW,WAAW,GAAG,kBACrD,EAFqC,yBAU9B,MAAM,2BAA6B,QAAC,YAAa,YAAc,CAClE,WAAW,YAAa,UAAW,YAAa,SAAS,CAC7D,EAF0C", + "names": [], + "ignoreList": [], + "sources": [ + "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/pikku-state.js" + ], + "sourcesContent": [ + "const PIKKU_STATE_KEY = Symbol('@pikku/core/state');\nexport const getAllPackageStates = () => {\n if (!globalThis[PIKKU_STATE_KEY]) {\n ;\n globalThis[PIKKU_STATE_KEY] = new Map();\n }\n return globalThis[PIKKU_STATE_KEY];\n};\n/**\n * Get or set package-scoped pikku state\n *\n * @param packageName - Package name (null for main package, '@scope/package' for addon packages)\n * @param type - State category (function, rpc, http, etc.)\n * @param content - Content key within the category\n * @param value - Optional value to set\n * @returns The current value of the state\n *\n * @example\n * // Main package\n * pikkuState(null, 'function', 'functions').get(funcName)\n *\n * // Addon package\n * pikkuState('@acme/stripe-functions', 'rpc', 'meta')\n */\nexport const pikkuState = (packageName, type, content, value) => {\n const resolvedPackageName = packageName ?? '__main__';\n // Initialize package state if it doesn't exist\n if (!getAllPackageStates().has(resolvedPackageName)) {\n initializePikkuState(resolvedPackageName);\n }\n const packageState = getAllPackageStates().get(resolvedPackageName);\n if (value !== undefined) {\n packageState[type][content] = value;\n }\n return packageState[type][content];\n};\nconst createEmptyPackageState = () => ({\n function: {\n meta: {},\n functions: new Map(),\n },\n rpc: {\n meta: {},\n files: new Map(),\n },\n addons: {\n packages: new Map(),\n },\n http: {\n middleware: new Map(),\n permissions: new Map(),\n routes: new Map(),\n meta: {\n post: {},\n get: {},\n delete: {},\n patch: {},\n head: {},\n put: {},\n options: {},\n },\n },\n channel: {\n channels: new Map(),\n meta: {},\n },\n scheduler: {\n tasks: new Map(),\n meta: [],\n },\n queue: {\n registrations: new Map(),\n meta: {},\n },\n workflows: {\n registrations: new Map(),\n meta: {},\n },\n trigger: {\n functions: new Map(),\n triggers: new Map(),\n triggerSources: new Map(),\n meta: {},\n sourceMeta: {},\n },\n mcp: {\n resources: new Map(),\n resourcesMeta: {},\n toolsMeta: {},\n prompts: new Map(),\n promptsMeta: {},\n },\n agent: {\n agents: new Map(),\n agentsMeta: {},\n },\n gateway: {\n gateways: new Map(),\n meta: {},\n },\n cli: {\n meta: { programs: {}, renderers: {} },\n programs: {},\n },\n middleware: {\n tagGroup: {},\n httpGroup: {},\n global: [],\n },\n channelMiddleware: {\n tagGroup: {},\n },\n permissions: {\n tagGroup: {},\n httpGroup: {},\n global: [],\n },\n misc: {\n errors: new Map(),\n schemas: new Map(),\n middleware: {},\n channelMiddleware: {},\n permissions: {},\n },\n models: {\n config: null,\n },\n package: {\n factories: null,\n singletonServices: null,\n credentialsMeta: null,\n requiredParentServices: null,\n },\n});\n/**\n * Initialize state for a new package\n */\nexport const initializePikkuState = (packageName) => {\n if (!getAllPackageStates().has(packageName)) {\n getAllPackageStates().set(packageName, createEmptyPackageState());\n }\n};\nexport const resetPikkuState = () => {\n // Preserve the errors map before resetting\n const existingErrors = getAllPackageStates().get('__main__')?.misc.errors;\n globalThis[PIKKU_STATE_KEY] = new Map();\n initializePikkuState('__main__');\n // Restore the errors map if it existed\n if (existingErrors) {\n const mainState = getAllPackageStates().get('__main__');\n mainState.misc.errors = existingErrors;\n }\n};\nif (!getAllPackageStates().has('__main__')) {\n resetPikkuState();\n}\nexport const getSingletonServices = () => {\n const services = pikkuState(null, 'package', 'singletonServices');\n if (!services)\n throw new Error('Singleton services not initialized');\n return services;\n};\nexport const getCreateWireServices = () => {\n return pikkuState(null, 'package', 'factories')?.createWireServices;\n};\n/**\n * Register service factories for an addon package.\n * These factories are used to create services when the package's functions are invoked.\n *\n * @param packageName - The package name (e.g., '@pikku/templates-function-addon')\n * @param factories - The service factory functions\n */\nexport const addPackageServiceFactories = (packageName, factories) => {\n pikkuState(packageName, 'package', 'factories', factories);\n};\n" + ], + "sourceRoot": "" + }, + "url": null + }, + "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/wirings/http/routers/http-router.js": { + "lineLengths": [148, 946, 4, 0, 538], + "data": { + "version": 3, + "mappings": ";wpBAAA,+JAAkC,8BAC3B,MAAM,WAAa,IAAI", + "names": [], + "ignoreList": [], + "sources": [ + "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/wirings/http/routers/http-router.js" + ], + "sourcesContent": [ + "import { PathToRegexRouter } from './path-to-regex.js';\nexport const httpRouter = new PathToRegexRouter();\n" + ], + "sourceRoot": "" + }, + "url": null + }, + "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/wirings/http/routers/path-to-regex.js": { + "lineLengths": [150, 3018, 4, 0, 7646], + "data": { + "version": 3, + "mappings": ";suBAAA,oLAAsB,0BACtB,uBAA2B,mCACpB,MAAM,iBAAkB,CAF/B,MAE+B,kCAC3B,eAAiB,IAAI,IACrB,aAAe,IAAI,IACnB,cAAgB,MAChB,OAAQ,CACJ,KAAK,eAAiB,IAAI,IAC1B,KAAK,aAAe,IAAI,IACxB,KAAK,cAAgB,KACzB,CACA,YAAa,CACT,MAAM,UAAS,+BAAW,KAAM,OAAQ,QAAQ,EAChD,MAAM,iBAAgB,+BAAW,KAAM,UAAW,UAAU,EAE5D,MAAM,uBAAyB,QAAC,OAAQ,eAAiB,CACrD,MAAM,qBAAuB,KAAK,eAAe,IAAI,MAAM,GAAK,IAAI,IACpE,MAAM,mBAAqB,KAAK,aAAa,IAAI,MAAM,GAAK,IAAI,IAChE,SAAW,CAAC,SAAS,IAAK,aAAc,CAEpC,MAAM,oBAAsB,UAAU,WAAW,GAAG,EAC9C,UACA,IAAI,SAAS,GAEnB,MAAM,cAAgB,CAAC,OAAO,KAAK,mBAAmB,EACtD,GAAI,cAAe,CAEf,mBAAmB,IAAI,oBAAqB,CACxC,MAAO,SACX,CAAC,CACL,KACK,CAED,MAAM,WAAU,6BAAM,oBAAqB,CACvC,OAAQ,kBACZ,CAAC,EACD,qBAAqB,IAAI,oBAAqB,CAC1C,QACA,MAAO,SACX,CAAC,CACL,CACJ,CACA,KAAK,eAAe,IAAI,OAAQ,oBAAoB,EACpD,KAAK,aAAa,IAAI,OAAQ,kBAAkB,CACpD,EA7B+B,0BA+B/B,SAAW,CAAC,OAAQ,QAAQ,IAAK,OAAO,QAAQ,EAAG,CAC/C,uBAAuB,OAAQ,SAAS,QAAQ,CAAC,CACrD,CAEA,MAAM,mBAAqB,MAAM,KAAK,cAAc,QAAQ,CAAC,EAAE,IAAI,CAAC,CAAC,CAAE,OAAO,IAAM,CAAC,QAAQ,MAAO,OAAO,CAAC,EAC5G,uBAAuB,MAAO,kBAAkB,EAChD,KAAK,cAAgB,IACzB,CACA,MAAM,OAAQ,KAAM,CAChB,GAAI,CAAC,KAAK,cAAe,CACrB,KAAK,WAAW,CACpB,CAEA,MAAM,eAAiB,KAAK,WAAW,GAAG,EAAI,KAAO,IAAI,IAAI,GAE7D,MAAM,mBAAqB,KAAK,aAAa,IAAI,MAAM,EACvD,GAAI,mBAAoB,CACpB,MAAM,YAAc,mBAAmB,IAAI,cAAc,EACzD,GAAI,YAAa,CACb,MAAO,CACH,MAAO,YAAY,MACnB,OAAQ,CAAC,CACb,CACJ,CACJ,CAEA,MAAM,aAAe,KAAK,eAAe,IAAI,MAAM,EACnD,GAAI,CAAC,aAAc,CACf,OAAO,IACX,CAEA,SAAW,CAAC,CAAE,aAAa,IAAK,aAAa,QAAQ,EAAG,CACpD,MAAM,OAAS,cAAc,QAAQ,cAAc,EACnD,GAAI,OAAQ,CACR,MAAO,CACH,MAAO,cAAc,MACrB,OAAQ,OAAO,MACnB,CACJ,CACJ,CACA,OAAO,IACX,CACJ", + "names": [], + "ignoreList": [], + "sources": [ + "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/wirings/http/routers/path-to-regex.js" + ], + "sourcesContent": [ + "import { match } from 'path-to-regexp';\nimport { pikkuState } from '../../../pikku-state.js';\nexport class PathToRegexRouter {\n compiledRoutes = new Map();\n staticRoutes = new Map();\n isInitialized = false;\n reset() {\n this.compiledRoutes = new Map();\n this.staticRoutes = new Map();\n this.isInitialized = false;\n }\n initialize() {\n const routes = pikkuState(null, 'http', 'routes');\n const channelRoutes = pikkuState(null, 'channel', 'channels');\n // Helper function to compile routes for a given method\n const compileRoutesForMethod = (method, routeEntries) => {\n const methodCompiledRoutes = this.compiledRoutes.get(method) || new Map();\n const methodStaticRoutes = this.staticRoutes.get(method) || new Map();\n for (const [routePath] of routeEntries) {\n // Normalize route path - ensure it starts with /\n const normalizedRoutePath = routePath.startsWith('/')\n ? routePath\n : `/${routePath}`;\n // Check if route is static (no parameters or wildcards)\n const isStaticRoute = !/\\*|:/.test(normalizedRoutePath);\n if (isStaticRoute) {\n // Store static routes for O(1) lookup\n methodStaticRoutes.set(normalizedRoutePath, {\n route: routePath, // Keep the original route path for lookup in pikkuState\n });\n }\n else {\n // Compile dynamic routes with path-to-regexp\n const matcher = match(normalizedRoutePath, {\n decode: decodeURIComponent,\n });\n methodCompiledRoutes.set(normalizedRoutePath, {\n matcher,\n route: routePath, // Keep the original route path for lookup in pikkuState\n });\n }\n }\n this.compiledRoutes.set(method, methodCompiledRoutes);\n this.staticRoutes.set(method, methodStaticRoutes);\n };\n // Precompile all HTTP route matchers\n for (const [method, routeMap] of routes.entries()) {\n compileRoutesForMethod(method, routeMap.entries());\n }\n // Precompile all channel route matchers (treating them as GET routes for WebSocket upgrades)\n const channelRoutesArray = Array.from(channelRoutes.entries()).map(([, channel]) => [channel.route, channel]);\n compileRoutesForMethod('get', channelRoutesArray);\n this.isInitialized = true;\n }\n match(method, path) {\n if (!this.isInitialized) {\n this.initialize();\n }\n // Normalize path - ensure it starts with /\n const normalizedPath = path.startsWith('/') ? path : `/${path}`;\n // First, try static routes for O(1) lookup\n const methodStaticRoutes = this.staticRoutes.get(method);\n if (methodStaticRoutes) {\n const staticRoute = methodStaticRoutes.get(normalizedPath);\n if (staticRoute) {\n return {\n route: staticRoute.route,\n params: {},\n };\n }\n }\n // If no static route matched, try dynamic routes\n const methodRoutes = this.compiledRoutes.get(method);\n if (!methodRoutes) {\n return null;\n }\n // Try each compiled route for this method\n for (const [, compiledRoute] of methodRoutes.entries()) {\n const result = compiledRoute.matcher(normalizedPath);\n if (result) {\n return {\n route: compiledRoute.route,\n params: result.params,\n };\n }\n }\n return null;\n }\n}\n" + ], + "sourceRoot": "" + }, + "url": null + }, + "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/path-to-regexp/dist/index.js": { + "lineLengths": [ + 13, 62, 47, 22, 26, 22, 36, 30, 30, 36, 39, 56, 64, 3, 37, 3, 26, 53, 1, 3, 38, 3, 22, 55, + 1, 3, 27, 3, 17, 39, 29, 41, 5, 1, 30, 3, 67, 3, 35, 40, 27, 25, 40, 69, 20, 41, 5, 1, 30, + 3, 37, 3, 35, 48, 27, 18, 32, 26, 22, 30, 22, 23, 25, 29, 40, 15, 22, 9, 38, 41, 32, 28, 30, + 13, 33, 45, 90, 17, 39, 25, 13, 49, 66, 30, 50, 24, 47, 61, 17, 48, 43, 50, 53, 36, 43, 34, + 25, 60, 50, 36, 45, 21, 37, 94, 21, 17, 28, 89, 17, 28, 44, 25, 13, 32, 28, 29, 34, 46, 19, + 25, 13, 32, 32, 32, 32, 32, 32, 32, 32, 86, 13, 26, 9, 18, 90, 9, 20, 22, 5, 48, 1, 3, 56, + 3, 38, 83, 72, 64, 39, 27, 41, 29, 77, 9, 20, 6, 1, 54, 86, 31, 24, 41, 45, 9, 22, 6, 1, 3, + 56, 3, 52, 30, 33, 33, 69, 35, 39, 44, 39, 29, 58, 22, 10, 5, 45, 56, 35, 43, 32, 41, 26, + 13, 62, 88, 13, 28, 52, 51, 88, 17, 26, 40, 48, 13, 26, 10, 5, 31, 39, 28, 37, 22, 9, 40, + 75, 9, 34, 6, 1, 3, 42, 3, 36, 83, 57, 40, 29, 30, 33, 26, 61, 7, 34, 37, 15, 25, 26, 43, + 44, 35, 25, 36, 44, 45, 9, 32, 6, 1, 3, 63, 3, 43, 103, 20, 20, 25, 28, 34, 33, 27, 19, 9, + 76, 49, 38, 85, 13, 33, 30, 81, 27, 11, 5, 18, 35, 17, 53, 61, 71, 1, 3, 65, 3, 51, 35, 38, + 37, 38, 93, 32, 21, 9, 27, 5, 21, 1, 3, 65, 3, 64, 20, 23, 31, 28, 30, 18, 40, 39, 42, 36, + 28, 40, 52, 26, 13, 9, 21, 5, 30, 24, 39, 42, 38, 22, 34, 9, 22, 5, 35, 38, 36, 42, 37, 38, + 49, 48, 38, 21, 9, 66, 48, 103, 13, 41, 25, 70, 62, 91, 72, 81, 91, 64, 57, 13, 18, 25, 70, + 55, 92, 93, 39, 39, 57, 13, 29, 27, 21, 9, 65, 5, 18, 1, 3, 49, 3, 23, 28, 53, 16, 57, 21, + 54, 21, 53, 33, 1, 3, 51, 3, 41, 19, 35, 38, 36, 45, 21, 9, 37, 66, 21, 9, 37, 68, 21, 9, + 40, 68, 21, 9, 65, 5, 17, 1, 3, 43, 3, 26, 43, 1, 3, 75, 3, 36, 23, 36, 112, 36, 5, 16, 1, + 33 + ], + "data": { + "version": 3, + "file": "index.js", + "sourceRoot": "", + "sources": [ + "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/path-to-regexp/src/index.ts" + ], + "names": [], + "mappings": ";;;AAqJA,sBAiHC;AAKD,0BAmBC;AA2HD,sBA+BC;AAKD,oCAuCC;AAyKD,8BAEC;AA/oBD,MAAM,iBAAiB,GAAG,GAAG,CAAC;AAC9B,MAAM,UAAU,GAAG,CAAC,KAAa,EAAE,EAAE,CAAC,KAAK,CAAC;AAC5C,MAAM,QAAQ,GAAG,qBAAqB,CAAC;AACvC,MAAM,WAAW,GAAG,mCAAmC,CAAC;AACxD,MAAM,EAAE,GAAG,oDAAoD,CAAC;AAwDhE;;GAEG;AACH,SAAS,UAAU,CAAC,GAAW;IAC7B,OAAO,GAAG,CAAC,OAAO,CAAC,oBAAoB,EAAE,MAAM,CAAC,CAAC;AACnD,CAAC;AAED;;GAEG;AACH,SAAS,MAAM,CAAC,GAAW;IACzB,OAAO,GAAG,CAAC,OAAO,CAAC,sBAAsB,EAAE,MAAM,CAAC,CAAC;AACrD,CAAC;AAiDD;;GAEG;AACH,MAAa,SAAS;IACpB,YACkB,MAAe,EACf,YAAqB;QADrB,WAAM,GAAN,MAAM,CAAS;QACf,iBAAY,GAAZ,YAAY,CAAS;IACpC,CAAC;CACL;AALD,8BAKC;AAED;;GAEG;AACH,MAAa,SAAU,SAAQ,SAAS;IACtC,YACE,OAAe,EACC,YAAgC;QAEhD,IAAI,IAAI,GAAG,OAAO,CAAC;QACnB,IAAI,YAAY;YAAE,IAAI,IAAI,KAAK,YAAY,EAAE,CAAC;QAC9C,IAAI,IAAI,oDAAoD,CAAC;QAC7D,KAAK,CAAC,IAAI,CAAC,CAAC;QALI,iBAAY,GAAZ,YAAY,CAAoB;IAMlD,CAAC;CACF;AAVD,8BAUC;AAED;;GAEG;AACH,SAAgB,KAAK,CAAC,GAAW,EAAE,UAAwB,EAAE;IAC3D,MAAM,EAAE,UAAU,GAAG,UAAU,EAAE,GAAG,OAAO,CAAC;IAC5C,MAAM,KAAK,GAAG,CAAC,GAAG,GAAG,CAAC,CAAC;IACvB,IAAI,KAAK,GAAG,CAAC,CAAC;IAEd,SAAS,YAAY,CAAC,GAAW;QAC/B,MAAM,MAAM,GAAY,EAAE,CAAC;QAC3B,IAAI,IAAI,GAAG,EAAE,CAAC;QAEd,SAAS,SAAS;YAChB,IAAI,CAAC,IAAI;gBAAE,OAAO;YAClB,MAAM,CAAC,IAAI,CAAC;gBACV,IAAI,EAAE,MAAM;gBACZ,KAAK,EAAE,UAAU,CAAC,IAAI,CAAC;aACxB,CAAC,CAAC;YACH,IAAI,GAAG,EAAE,CAAC;QACZ,CAAC;QAED,OAAO,KAAK,GAAG,KAAK,CAAC,MAAM,EAAE,CAAC;YAC5B,MAAM,KAAK,GAAG,KAAK,CAAC,KAAK,EAAE,CAAC,CAAC;YAE7B,IAAI,KAAK,KAAK,GAAG,EAAE,CAAC;gBAClB,SAAS,EAAE,CAAC;gBACZ,OAAO,MAAM,CAAC;YAChB,CAAC;YAED,IAAI,KAAK,KAAK,IAAI,EAAE,CAAC;gBACnB,IAAI,KAAK,KAAK,KAAK,CAAC,MAAM,EAAE,CAAC;oBAC3B,MAAM,IAAI,SAAS,CAAC,oCAAoC,KAAK,EAAE,EAAE,GAAG,CAAC,CAAC;gBACxE,CAAC;gBAED,IAAI,IAAI,KAAK,CAAC,KAAK,EAAE,CAAC,CAAC;gBACvB,SAAS;YACX,CAAC;YAED,IAAI,KAAK,KAAK,GAAG,IAAI,KAAK,KAAK,GAAG,EAAE,CAAC;gBACnC,MAAM,IAAI,GAAG,KAAK,KAAK,GAAG,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,UAAU,CAAC;gBAClD,IAAI,IAAI,GAAG,EAAE,CAAC;gBAEd,IAAI,QAAQ,CAAC,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC;oBAChC,GAAG,CAAC;wBACF,IAAI,IAAI,KAAK,CAAC,KAAK,EAAE,CAAC,CAAC;oBACzB,CAAC,QAAQ,WAAW,CAAC,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,EAAE;gBAC3C,CAAC;qBAAM,IAAI,KAAK,CAAC,KAAK,CAAC,KAAK,GAAG,EAAE,CAAC;oBAChC,IAAI,UAAU,GAAG,KAAK,CAAC;oBAEvB,OAAO,KAAK,GAAG,KAAK,CAAC,MAAM,EAAE,CAAC;wBAC5B,IAAI,KAAK,CAAC,EAAE,KAAK,CAAC,KAAK,GAAG,EAAE,CAAC;4BAC3B,KAAK,EAAE,CAAC;4BACR,UAAU,GAAG,CAAC,CAAC;4BACf,MAAM;wBACR,CAAC;wBAED,oCAAoC;wBACpC,IAAI,KAAK,CAAC,KAAK,CAAC,KAAK,IAAI;4BAAE,KAAK,EAAE,CAAC;wBAEnC,IAAI,IAAI,KAAK,CAAC,KAAK,CAAC,CAAC;oBACvB,CAAC;oBAED,IAAI,UAAU,EAAE,CAAC;wBACf,MAAM,IAAI,SAAS,CACjB,+BAA+B,UAAU,EAAE,EAC3C,GAAG,CACJ,CAAC;oBACJ,CAAC;gBACH,CAAC;gBAED,IAAI,CAAC,IAAI,EAAE,CAAC;oBACV,MAAM,IAAI,SAAS,CAAC,mCAAmC,KAAK,EAAE,EAAE,GAAG,CAAC,CAAC;gBACvE,CAAC;gBAED,SAAS,EAAE,CAAC;gBACZ,MAAM,CAAC,IAAI,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;gBAC5B,SAAS;YACX,CAAC;YAED,IAAI,KAAK,KAAK,GAAG,EAAE,CAAC;gBAClB,SAAS,EAAE,CAAC;gBACZ,MAAM,CAAC,IAAI,CAAC;oBACV,IAAI,EAAE,OAAO;oBACb,MAAM,EAAE,YAAY,CAAC,GAAG,CAAC;iBAC1B,CAAC,CAAC;gBACH,SAAS;YACX,CAAC;YAED,IACE,KAAK,KAAK,GAAG;gBACb,KAAK,KAAK,GAAG;gBACb,KAAK,KAAK,GAAG;gBACb,KAAK,KAAK,GAAG;gBACb,KAAK,KAAK,GAAG;gBACb,KAAK,KAAK,GAAG;gBACb,KAAK,KAAK,GAAG;gBACb,KAAK,KAAK,GAAG,EACb,CAAC;gBACD,MAAM,IAAI,SAAS,CAAC,cAAc,KAAK,aAAa,KAAK,GAAG,CAAC,EAAE,EAAE,GAAG,CAAC,CAAC;YACxE,CAAC;YAED,IAAI,IAAI,KAAK,CAAC;QAChB,CAAC;QAED,IAAI,GAAG,EAAE,CAAC;YACR,MAAM,IAAI,SAAS,CACjB,2BAA2B,KAAK,cAAc,GAAG,EAAE,EACnD,GAAG,CACJ,CAAC;QACJ,CAAC;QAED,SAAS,EAAE,CAAC;QACZ,OAAO,MAAM,CAAC;IAChB,CAAC;IAED,OAAO,IAAI,SAAS,CAAC,YAAY,CAAC,EAAE,CAAC,EAAE,GAAG,CAAC,CAAC;AAC9C,CAAC;AAED;;GAEG;AACH,SAAgB,OAAO,CACrB,IAAU,EACV,UAAyC,EAAE;IAE3C,MAAM,EAAE,MAAM,GAAG,kBAAkB,EAAE,SAAS,GAAG,iBAAiB,EAAE,GAClE,OAAO,CAAC;IACV,MAAM,IAAI,GAAG,OAAO,IAAI,KAAK,QAAQ,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;IACpE,MAAM,EAAE,GAAG,gBAAgB,CAAC,IAAI,CAAC,MAAM,EAAE,SAAS,EAAE,MAAM,CAAC,CAAC;IAE5D,OAAO,SAAS,IAAI,CAAC,SAAY,EAAO;QACtC,MAAM,OAAO,GAAa,EAAE,CAAC;QAC7B,MAAM,IAAI,GAAG,EAAE,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;QAEjC,IAAI,OAAO,CAAC,MAAM,EAAE,CAAC;YACnB,MAAM,IAAI,SAAS,CAAC,uBAAuB,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;QACnE,CAAC;QAED,OAAO,IAAI,CAAC;IACd,CAAC,CAAC;AACJ,CAAC;AAUD,SAAS,gBAAgB,CACvB,MAAe,EACf,SAAiB,EACjB,MAAsB;IAEtB,MAAM,QAAQ,GAAG,MAAM,CAAC,GAAG,CAAC,CAAC,KAAK,EAAE,EAAE,CACpC,eAAe,CAAC,KAAK,EAAE,SAAS,EAAE,MAAM,CAAC,CAC1C,CAAC;IAEF,OAAO,CAAC,IAAe,EAAE,OAAiB,EAAE,EAAE;QAC5C,IAAI,MAAM,GAAG,EAAE,CAAC;QAEhB,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE,CAAC;YAC/B,MAAM,IAAI,OAAO,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;QACnC,CAAC;QAED,OAAO,MAAM,CAAC;IAChB,CAAC,CAAC;AACJ,CAAC;AAED;;GAEG;AACH,SAAS,eAAe,CACtB,KAAY,EACZ,SAAiB,EACjB,MAAsB;IAEtB,IAAI,KAAK,CAAC,IAAI,KAAK,MAAM;QAAE,OAAO,GAAG,EAAE,CAAC,KAAK,CAAC,KAAK,CAAC;IAEpD,IAAI,KAAK,CAAC,IAAI,KAAK,OAAO,EAAE,CAAC;QAC3B,MAAM,EAAE,GAAG,gBAAgB,CAAC,KAAK,CAAC,MAAM,EAAE,SAAS,EAAE,MAAM,CAAC,CAAC;QAE7D,OAAO,CAAC,IAAI,EAAE,OAAO,EAAE,EAAE;YACvB,MAAM,GAAG,GAAG,OAAO,CAAC,MAAM,CAAC;YAC3B,MAAM,KAAK,GAAG,EAAE,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;YAChC,IAAI,OAAO,CAAC,MAAM,KAAK,GAAG;gBAAE,OAAO,KAAK,CAAC;YAEzC,OAAO,CAAC,MAAM,GAAG,GAAG,CAAC,CAAC,wBAAwB;YAC9C,OAAO,EAAE,CAAC;QACZ,CAAC,CAAC;IACJ,CAAC;IAED,MAAM,WAAW,GAAG,MAAM,IAAI,UAAU,CAAC;IAEzC,IAAI,KAAK,CAAC,IAAI,KAAK,UAAU,IAAI,MAAM,KAAK,KAAK,EAAE,CAAC;QAClD,OAAO,CAAC,IAAI,EAAE,OAAO,EAAE,EAAE;YACvB,MAAM,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;YAC/B,IAAI,KAAK,IAAI,IAAI,EAAE,CAAC;gBAClB,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;gBACzB,OAAO,EAAE,CAAC;YACZ,CAAC;YAED,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,IAAI,KAAK,CAAC,MAAM,KAAK,CAAC,EAAE,CAAC;gBAChD,MAAM,IAAI,SAAS,CAAC,aAAa,KAAK,CAAC,IAAI,2BAA2B,CAAC,CAAC;YAC1E,CAAC;YAED,IAAI,MAAM,GAAG,EAAE,CAAC;YAEhB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,KAAK,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE,CAAC;gBACtC,IAAI,OAAO,KAAK,CAAC,CAAC,CAAC,KAAK,QAAQ,EAAE,CAAC;oBACjC,MAAM,IAAI,SAAS,CAAC,aAAa,KAAK,CAAC,IAAI,IAAI,CAAC,kBAAkB,CAAC,CAAC;gBACtE,CAAC;gBAED,IAAI,CAAC,GAAG,CAAC;oBAAE,MAAM,IAAI,SAAS,CAAC;gBAC/B,MAAM,IAAI,WAAW,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC;YAClC,CAAC;YAED,OAAO,MAAM,CAAC;QAChB,CAAC,CAAC;IACJ,CAAC;IAED,OAAO,CAAC,IAAI,EAAE,OAAO,EAAE,EAAE;QACvB,MAAM,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;QAC/B,IAAI,KAAK,IAAI,IAAI,EAAE,CAAC;YAClB,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;YACzB,OAAO,EAAE,CAAC;QACZ,CAAC;QAED,IAAI,OAAO,KAAK,KAAK,QAAQ,EAAE,CAAC;YAC9B,MAAM,IAAI,SAAS,CAAC,aAAa,KAAK,CAAC,IAAI,kBAAkB,CAAC,CAAC;QACjE,CAAC;QAED,OAAO,WAAW,CAAC,KAAK,CAAC,CAAC;IAC5B,CAAC,CAAC;AACJ,CAAC;AAyBD;;GAEG;AACH,SAAgB,KAAK,CACnB,IAAmB,EACnB,UAAuC,EAAE;IAEzC,MAAM,EAAE,MAAM,GAAG,kBAAkB,EAAE,SAAS,GAAG,iBAAiB,EAAE,GAClE,OAAO,CAAC;IACV,MAAM,EAAE,MAAM,EAAE,IAAI,EAAE,GAAG,YAAY,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;IAErD,MAAM,QAAQ,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,EAAE;QAChC,IAAI,MAAM,KAAK,KAAK;YAAE,OAAO,UAAU,CAAC;QACxC,IAAI,GAAG,CAAC,IAAI,KAAK,OAAO;YAAE,OAAO,MAAM,CAAC;QACxC,OAAO,CAAC,KAAa,EAAE,EAAE,CAAC,KAAK,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC;IAC/D,CAAC,CAAC,CAAC;IAEH,OAAO,SAAS,KAAK,CAAC,KAAa;QACjC,MAAM,CAAC,GAAG,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;QAC7B,IAAI,CAAC,CAAC;YAAE,OAAO,KAAK,CAAC;QAErB,MAAM,IAAI,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;QAClB,MAAM,MAAM,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;QAEnC,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE,CAAC;YAClC,IAAI,CAAC,CAAC,CAAC,CAAC,KAAK,SAAS;gBAAE,SAAS;YAEjC,MAAM,GAAG,GAAG,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC;YACxB,MAAM,OAAO,GAAG,QAAQ,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC;YAChC,MAAM,CAAC,GAAG,CAAC,IAAI,CAAC,GAAG,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QACnC,CAAC;QAED,OAAO,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;IAC1B,CAAC,CAAC;AACJ,CAAC;AAED;;GAEG;AACH,SAAgB,YAAY,CAC1B,IAAmB,EACnB,UAA8C,EAAE;IAEhD,MAAM,EACJ,SAAS,GAAG,iBAAiB,EAC7B,GAAG,GAAG,IAAI,EACV,SAAS,GAAG,KAAK,EACjB,QAAQ,GAAG,IAAI,GAChB,GAAG,OAAO,CAAC;IACZ,MAAM,IAAI,GAAS,EAAE,CAAC;IACtB,IAAI,MAAM,GAAG,EAAE,CAAC;IAChB,IAAI,YAAY,GAAG,CAAC,CAAC;IAErB,SAAS,OAAO,CAAC,IAAmB;QAClC,IAAI,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE,CAAC;YACxB,KAAK,MAAM,CAAC,IAAI,IAAI;gBAAE,OAAO,CAAC,CAAC,CAAC,CAAC;YACjC,OAAO;QACT,CAAC;QAED,MAAM,IAAI,GAAG,OAAO,IAAI,KAAK,QAAQ,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;QACpE,OAAO,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,MAAM,EAAE,EAAE;YACrC,IAAI,YAAY,IAAI,GAAG,EAAE,CAAC;gBACxB,MAAM,IAAI,SAAS,CAAC,4BAA4B,EAAE,IAAI,CAAC,YAAY,CAAC,CAAC;YACvE,CAAC;YAED,IAAI,YAAY,GAAG,CAAC;gBAAE,MAAM,IAAI,GAAG,CAAC;YACpC,MAAM,IAAI,cAAc,CAAC,MAAM,EAAE,SAAS,EAAE,IAAI,EAAE,IAAI,CAAC,YAAY,CAAC,CAAC;YACrE,YAAY,EAAE,CAAC;QACjB,CAAC,CAAC,CAAC;IACL,CAAC;IAED,OAAO,CAAC,IAAI,CAAC,CAAC;IAEd,IAAI,OAAO,GAAG,OAAO,MAAM,GAAG,CAAC;IAC/B,IAAI,QAAQ;QAAE,OAAO,IAAI,KAAK,GAAG,MAAM,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC;IAC3D,OAAO,IAAI,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,KAAK,GAAG,MAAM,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC;IAEzD,OAAO,EAAE,MAAM,EAAE,IAAI,MAAM,CAAC,OAAO,EAAE,SAAS,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,IAAI,EAAE,CAAC;AACrE,CAAC;AAED;;GAEG;AACH,SAAS,OAAO,CACd,MAAe,EACf,KAAa,EACb,MAA+B,EAC/B,QAAmD;IAEnD,OAAO,KAAK,GAAG,MAAM,CAAC,MAAM,EAAE,CAAC;QAC7B,MAAM,KAAK,GAAG,MAAM,CAAC,KAAK,EAAE,CAAC,CAAC;QAE9B,IAAI,KAAK,CAAC,IAAI,KAAK,OAAO,EAAE,CAAC;YAC3B,MAAM,GAAG,GAAG,MAAM,CAAC,MAAM,CAAC;YAC1B,OAAO,CAAC,KAAK,CAAC,MAAM,EAAE,CAAC,EAAE,MAAM,EAAE,CAAC,GAAG,EAAE,EAAE,CACvC,OAAO,CAAC,MAAM,EAAE,KAAK,EAAE,GAAG,EAAE,QAAQ,CAAC,CACtC,CAAC;YACF,MAAM,CAAC,MAAM,GAAG,GAAG,CAAC;YACpB,SAAS;QACX,CAAC;QAED,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;IACrB,CAAC;IAED,QAAQ,CAAC,MAAM,CAAC,CAAC;AACnB,CAAC;AAED;;GAEG;AACH,SAAS,cAAc,CACrB,MAA+B,EAC/B,SAAiB,EACjB,IAAU,EACV,YAAgC;IAEhC,IAAI,MAAM,GAAG,EAAE,CAAC;IAChB,IAAI,SAAS,GAAG,EAAE,CAAC;IACnB,IAAI,iBAAiB,GAAG,EAAE,CAAC;IAC3B,IAAI,eAAe,GAAc,CAAC,CAAC;IACnC,IAAI,iBAAiB,GAAG,CAAC,CAAC;IAC1B,IAAI,KAAK,GAAG,CAAC,CAAC;IAEd,SAAS,YAAY,CAAC,KAAa,EAAE,IAAmB;QACtD,OAAO,KAAK,GAAG,MAAM,CAAC,MAAM,EAAE,CAAC;YAC7B,MAAM,KAAK,GAAG,MAAM,CAAC,KAAK,EAAE,CAAC,CAAC;YAC9B,IAAI,KAAK,CAAC,IAAI,KAAK,IAAI;gBAAE,OAAO,IAAI,CAAC;YACrC,IAAI,KAAK,CAAC,IAAI,KAAK,MAAM,EAAE,CAAC;gBAC1B,IAAI,KAAK,CAAC,KAAK,CAAC,QAAQ,CAAC,SAAS,CAAC;oBAAE,MAAM;YAC7C,CAAC;QACH,CAAC;QACD,OAAO,KAAK,CAAC;IACf,CAAC;IAED,SAAS,QAAQ,CAAC,KAAa;QAC7B,IAAI,MAAM,GAAG,EAAE,CAAC;QAChB,OAAO,KAAK,GAAG,MAAM,CAAC,MAAM,EAAE,CAAC;YAC7B,MAAM,KAAK,GAAG,MAAM,CAAC,KAAK,EAAE,CAAC,CAAC;YAC9B,IAAI,KAAK,CAAC,IAAI,KAAK,MAAM;gBAAE,MAAM;YACjC,MAAM,IAAI,KAAK,CAAC,KAAK,CAAC;QACxB,CAAC;QACD,OAAO,MAAM,CAAC;IAChB,CAAC;IAED,OAAO,KAAK,GAAG,MAAM,CAAC,MAAM,EAAE,CAAC;QAC7B,MAAM,KAAK,GAAG,MAAM,CAAC,KAAK,EAAE,CAAC,CAAC;QAE9B,IAAI,KAAK,CAAC,IAAI,KAAK,MAAM,EAAE,CAAC;YAC1B,MAAM,IAAI,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;YAC9B,SAAS,IAAI,KAAK,CAAC,KAAK,CAAC;YACzB,IAAI,eAAe,KAAK,CAAC;gBAAE,iBAAiB,IAAI,KAAK,CAAC,KAAK,CAAC;YAC5D,IAAI,KAAK,CAAC,KAAK,CAAC,QAAQ,CAAC,SAAS,CAAC;gBAAE,iBAAiB,GAAG,CAAC,CAAC;YAC3D,SAAS;QACX,CAAC;QAED,IAAI,KAAK,CAAC,IAAI,KAAK,OAAO,IAAI,KAAK,CAAC,IAAI,KAAK,UAAU,EAAE,CAAC;YACxD,IAAI,eAAe,IAAI,CAAC,SAAS,EAAE,CAAC;gBAClC,MAAM,IAAI,SAAS,CACjB,wBAAwB,KAAK,CAAC,IAAI,KAAK,KAAK,CAAC,IAAI,EAAE,EACnD,YAAY,CACb,CAAC;YACJ,CAAC;YAED,IAAI,KAAK,CAAC,IAAI,KAAK,OAAO,EAAE,CAAC;gBAC3B,MAAM;oBACJ,iBAAiB,GAAG,CAAC,CAAC,4BAA4B;wBAChD,CAAC,CAAC,IAAI,MAAM,CAAC,SAAS,EAAE,SAAS,CAAC,IAAI;wBACtC,CAAC,CAAC,YAAY,CAAC,KAAK,EAAE,UAAU,CAAC,CAAC,iCAAiC;4BACjE,CAAC,CAAC,IAAI,MAAM,CAAC,SAAS,EAAE,QAAQ,CAAC,KAAK,CAAC,CAAC,IAAI;4BAC5C,CAAC,CAAC,iBAAiB,GAAG,CAAC,CAAC,6BAA6B;gCACnD,CAAC,CAAC,IAAI,MAAM,CAAC,SAAS,EAAE,SAAS,CAAC,KAAK,MAAM,CAAC,SAAS,CAAC,GAAG;gCAC3D,CAAC,CAAC,IAAI,MAAM,CAAC,SAAS,EAAE,EAAE,CAAC,IAAI,CAAC;gBAExC,iBAAiB,IAAI,eAAe,GAAG,CAAC,CAAC;YAC3C,CAAC;iBAAM,CAAC;gBACN,MAAM;oBACJ,iBAAiB,GAAG,CAAC,CAAC,4BAA4B;wBAChD,CAAC,CAAC,IAAI,MAAM,CAAC,SAAS,EAAE,EAAE,CAAC,IAAI;wBAC/B,CAAC,CAAC,iBAAiB,CAAC,gDAAgD;4BAClE,CAAC,CAAC,IAAI,MAAM,CAAC,iBAAiB,EAAE,EAAE,CAAC,KAAK,MAAM,CAAC,SAAS,EAAE,EAAE,CAAC,IAAI;4BACjE,CAAC,CAAC,QAAQ,CAAC;gBAEjB,iBAAiB,GAAG,EAAE,CAAC;gBACvB,iBAAiB,IAAI,eAAe,GAAG,CAAC,CAAC;YAC3C,CAAC;YAED,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;YACjB,SAAS,GAAG,EAAE,CAAC;YACf,SAAS;QACX,CAAC;QAED,MAAM,IAAI,SAAS,CAAC,uBAAwB,KAAa,CAAC,IAAI,EAAE,CAAC,CAAC;IACpE,CAAC;IAED,OAAO,MAAM,CAAC;AAChB,CAAC;AAED;;GAEG;AACH,SAAS,MAAM,CAAC,CAAS,EAAE,CAAS;IAClC,IAAI,CAAC,CAAC,MAAM,GAAG,CAAC,CAAC,MAAM;QAAE,OAAO,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,wBAAwB;IAEtE,IAAI,CAAC,KAAK,CAAC;QAAE,CAAC,GAAG,EAAE,CAAC,CAAC,yCAAyC;IAC9D,IAAI,CAAC,CAAC,MAAM,GAAG,CAAC;QAAE,OAAO,SAAS,MAAM,CAAC,CAAC,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,OAAO,CAAC;IAChE,IAAI,CAAC,CAAC,MAAM,GAAG,CAAC;QAAE,OAAO,SAAS,MAAM,CAAC,CAAC,CAAC,MAAM,MAAM,CAAC,CAAC,CAAC,IAAI,CAAC;IAC/D,OAAO,KAAK,MAAM,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC;AAC/B,CAAC;AAED;;GAEG;AACH,SAAS,eAAe,CAAC,MAAe,EAAE,KAAa;IACrD,IAAI,KAAK,GAAG,EAAE,CAAC;IAEf,OAAO,KAAK,GAAG,MAAM,CAAC,MAAM,EAAE,CAAC;QAC7B,MAAM,KAAK,GAAG,MAAM,CAAC,KAAK,EAAE,CAAC,CAAC;QAE9B,IAAI,KAAK,CAAC,IAAI,KAAK,MAAM,EAAE,CAAC;YAC1B,KAAK,IAAI,UAAU,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;YACjC,SAAS;QACX,CAAC;QAED,IAAI,KAAK,CAAC,IAAI,KAAK,OAAO,EAAE,CAAC;YAC3B,KAAK,IAAI,GAAG,GAAG,eAAe,CAAC,KAAK,CAAC,MAAM,EAAE,CAAC,CAAC,GAAG,GAAG,CAAC;YACtD,SAAS;QACX,CAAC;QAED,IAAI,KAAK,CAAC,IAAI,KAAK,OAAO,EAAE,CAAC;YAC3B,KAAK,IAAI,GAAG,GAAG,aAAa,CAAC,KAAK,CAAC,IAAI,EAAE,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC;YACxD,SAAS;QACX,CAAC;QAED,IAAI,KAAK,CAAC,IAAI,KAAK,UAAU,EAAE,CAAC;YAC9B,KAAK,IAAI,GAAG,GAAG,aAAa,CAAC,KAAK,CAAC,IAAI,EAAE,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC;YACxD,SAAS;QACX,CAAC;QAED,MAAM,IAAI,SAAS,CAAC,uBAAwB,KAAa,CAAC,IAAI,EAAE,CAAC,CAAC;IACpE,CAAC;IAED,OAAO,KAAK,CAAC;AACf,CAAC;AAED;;GAEG;AACH,SAAgB,SAAS,CAAC,IAAe;IACvC,OAAO,eAAe,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC;AACzC,CAAC;AAED;;GAEG;AACH,SAAS,aAAa,CAAC,IAAY,EAAE,IAAuB;IAC1D,IAAI,CAAC,EAAE,CAAC,IAAI,CAAC,IAAI,CAAC;QAAE,OAAO,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,CAAC;IAEhD,IAAI,CAAA,IAAI,aAAJ,IAAI,uBAAJ,IAAI,CAAE,IAAI,MAAK,MAAM,IAAI,WAAW,CAAC,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC;QAC7D,OAAO,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,CAAC;IAC9B,CAAC;IAED,OAAO,IAAI,CAAC;AACd,CAAC", + "sourcesContent": [ + "const DEFAULT_DELIMITER = \"/\";\nconst NOOP_VALUE = (value: string) => value;\nconst ID_START = /^[$_\\p{ID_Start}]$/u;\nconst ID_CONTINUE = /^[$\\u200c\\u200d\\p{ID_Continue}]$/u;\nconst ID = /^[$_\\p{ID_Start}][$\\u200c\\u200d\\p{ID_Continue}]*$/u;\n\n/**\n * Encode a string into another string.\n */\nexport type Encode = (value: string) => string;\n\n/**\n * Decode a string into another string.\n */\nexport type Decode = (value: string) => string;\n\nexport interface ParseOptions {\n /**\n * A function for encoding input strings.\n */\n encodePath?: Encode;\n}\n\nexport interface PathToRegexpOptions {\n /**\n * Matches the path completely without trailing characters. (default: `true`)\n */\n end?: boolean;\n /**\n * Allows optional trailing delimiter to match. (default: `true`)\n */\n trailing?: boolean;\n /**\n * Match will be case sensitive. (default: `false`)\n */\n sensitive?: boolean;\n /**\n * The default delimiter for segments. (default: `'/'`)\n */\n delimiter?: string;\n}\n\nexport interface MatchOptions extends PathToRegexpOptions {\n /**\n * Function for decoding strings for params, or `false` to disable entirely. (default: `decodeURIComponent`)\n */\n decode?: Decode | false;\n}\n\nexport interface CompileOptions {\n /**\n * Function for encoding input strings for output into the path, or `false` to disable entirely. (default: `encodeURIComponent`)\n */\n encode?: Encode | false;\n /**\n * The default delimiter for segments. (default: `'/'`)\n */\n delimiter?: string;\n}\n\n/**\n * Escape text for stringify to path.\n */\nfunction escapeText(str: string) {\n return str.replace(/[{}()\\[\\]+?!:*\\\\]/g, \"\\\\$&\");\n}\n\n/**\n * Escape a regular expression string.\n */\nfunction escape(str: string) {\n return str.replace(/[.+*?^${}()[\\]|/\\\\]/g, \"\\\\$&\");\n}\n\n/**\n * Plain text.\n */\nexport interface Text {\n type: \"text\";\n value: string;\n}\n\n/**\n * A parameter designed to match arbitrary text within a segment.\n */\nexport interface Parameter {\n type: \"param\";\n name: string;\n}\n\n/**\n * A wildcard parameter designed to match multiple segments.\n */\nexport interface Wildcard {\n type: \"wildcard\";\n name: string;\n}\n\n/**\n * A set of possible tokens to expand when matching.\n */\nexport interface Group {\n type: \"group\";\n tokens: Token[];\n}\n\n/**\n * A token that corresponds with a regexp capture.\n */\nexport type Key = Parameter | Wildcard;\n\n/**\n * A sequence of `path-to-regexp` keys that match capturing groups.\n */\nexport type Keys = Array;\n\n/**\n * A sequence of path match characters.\n */\nexport type Token = Text | Parameter | Wildcard | Group;\n\n/**\n * Tokenized path instance.\n */\nexport class TokenData {\n constructor(\n public readonly tokens: Token[],\n public readonly originalPath?: string,\n ) {}\n}\n\n/**\n * ParseError is thrown when there is an error processing the path.\n */\nexport class PathError extends TypeError {\n constructor(\n message: string,\n public readonly originalPath: string | undefined,\n ) {\n let text = message;\n if (originalPath) text += `: ${originalPath}`;\n text += `; visit https://git.new/pathToRegexpError for info`;\n super(text);\n }\n}\n\n/**\n * Parse a string for the raw tokens.\n */\nexport function parse(str: string, options: ParseOptions = {}): TokenData {\n const { encodePath = NOOP_VALUE } = options;\n const chars = [...str];\n let index = 0;\n\n function consumeUntil(end: string): Token[] {\n const output: Token[] = [];\n let path = \"\";\n\n function writePath() {\n if (!path) return;\n output.push({\n type: \"text\",\n value: encodePath(path),\n });\n path = \"\";\n }\n\n while (index < chars.length) {\n const value = chars[index++];\n\n if (value === end) {\n writePath();\n return output;\n }\n\n if (value === \"\\\\\") {\n if (index === chars.length) {\n throw new PathError(`Unexpected end after \\\\ at index ${index}`, str);\n }\n\n path += chars[index++];\n continue;\n }\n\n if (value === \":\" || value === \"*\") {\n const type = value === \":\" ? \"param\" : \"wildcard\";\n let name = \"\";\n\n if (ID_START.test(chars[index])) {\n do {\n name += chars[index++];\n } while (ID_CONTINUE.test(chars[index]));\n } else if (chars[index] === '\"') {\n let quoteStart = index;\n\n while (index < chars.length) {\n if (chars[++index] === '\"') {\n index++;\n quoteStart = 0;\n break;\n }\n\n // Increment over escape characters.\n if (chars[index] === \"\\\\\") index++;\n\n name += chars[index];\n }\n\n if (quoteStart) {\n throw new PathError(\n `Unterminated quote at index ${quoteStart}`,\n str,\n );\n }\n }\n\n if (!name) {\n throw new PathError(`Missing parameter name at index ${index}`, str);\n }\n\n writePath();\n output.push({ type, name });\n continue;\n }\n\n if (value === \"{\") {\n writePath();\n output.push({\n type: \"group\",\n tokens: consumeUntil(\"}\"),\n });\n continue;\n }\n\n if (\n value === \"}\" ||\n value === \"(\" ||\n value === \")\" ||\n value === \"[\" ||\n value === \"]\" ||\n value === \"+\" ||\n value === \"?\" ||\n value === \"!\"\n ) {\n throw new PathError(`Unexpected ${value} at index ${index - 1}`, str);\n }\n\n path += value;\n }\n\n if (end) {\n throw new PathError(\n `Unexpected end at index ${index}, expected ${end}`,\n str,\n );\n }\n\n writePath();\n return output;\n }\n\n return new TokenData(consumeUntil(\"\"), str);\n}\n\n/**\n * Compile a string to a template function for the path.\n */\nexport function compile

(\n path: Path,\n options: CompileOptions & ParseOptions = {},\n) {\n const { encode = encodeURIComponent, delimiter = DEFAULT_DELIMITER } =\n options;\n const data = typeof path === \"object\" ? path : parse(path, options);\n const fn = tokensToFunction(data.tokens, delimiter, encode);\n\n return function path(params: P = {} as P) {\n const missing: string[] = [];\n const path = fn(params, missing);\n\n if (missing.length) {\n throw new TypeError(`Missing parameters: ${missing.join(\", \")}`);\n }\n\n return path;\n };\n}\n\nexport type ParamData = Partial>;\nexport type PathFunction

= (data?: P) => string;\n\n/**\n * Internal path builder function.\n */\ntype TokenEncoder = (data: ParamData, missing: string[]) => string;\n\nfunction tokensToFunction(\n tokens: Token[],\n delimiter: string,\n encode: Encode | false,\n): TokenEncoder {\n const encoders = tokens.map((token) =>\n tokenToFunction(token, delimiter, encode),\n );\n\n return (data: ParamData, missing: string[]) => {\n let result = \"\";\n\n for (const encoder of encoders) {\n result += encoder(data, missing);\n }\n\n return result;\n };\n}\n\n/**\n * Convert a single token into a path building function.\n */\nfunction tokenToFunction(\n token: Token,\n delimiter: string,\n encode: Encode | false,\n): TokenEncoder {\n if (token.type === \"text\") return () => token.value;\n\n if (token.type === \"group\") {\n const fn = tokensToFunction(token.tokens, delimiter, encode);\n\n return (data, missing) => {\n const len = missing.length;\n const value = fn(data, missing);\n if (missing.length === len) return value;\n\n missing.length = len; // Reset optional group.\n return \"\";\n };\n }\n\n const encodeValue = encode || NOOP_VALUE;\n\n if (token.type === \"wildcard\" && encode !== false) {\n return (data, missing) => {\n const value = data[token.name];\n if (value == null) {\n missing.push(token.name);\n return \"\";\n }\n\n if (!Array.isArray(value) || value.length === 0) {\n throw new TypeError(`Expected \"${token.name}\" to be a non-empty array`);\n }\n\n let result = \"\";\n\n for (let i = 0; i < value.length; i++) {\n if (typeof value[i] !== \"string\") {\n throw new TypeError(`Expected \"${token.name}/${i}\" to be a string`);\n }\n\n if (i > 0) result += delimiter;\n result += encodeValue(value[i]);\n }\n\n return result;\n };\n }\n\n return (data, missing) => {\n const value = data[token.name];\n if (value == null) {\n missing.push(token.name);\n return \"\";\n }\n\n if (typeof value !== \"string\") {\n throw new TypeError(`Expected \"${token.name}\" to be a string`);\n }\n\n return encodeValue(value);\n };\n}\n\n/**\n * A match result contains data about the path match.\n */\nexport interface MatchResult

{\n path: string;\n params: P;\n}\n\n/**\n * A match is either `false` (no match) or a match result.\n */\nexport type Match

= false | MatchResult

;\n\n/**\n * The match function takes a string and returns whether it matched the path.\n */\nexport type MatchFunction

= (path: string) => Match

;\n\n/**\n * Supported path types.\n */\nexport type Path = string | TokenData;\n\n/**\n * Transform a path into a match function.\n */\nexport function match

(\n path: Path | Path[],\n options: MatchOptions & ParseOptions = {},\n): MatchFunction

{\n const { decode = decodeURIComponent, delimiter = DEFAULT_DELIMITER } =\n options;\n const { regexp, keys } = pathToRegexp(path, options);\n\n const decoders = keys.map((key) => {\n if (decode === false) return NOOP_VALUE;\n if (key.type === \"param\") return decode;\n return (value: string) => value.split(delimiter).map(decode);\n });\n\n return function match(input: string) {\n const m = regexp.exec(input);\n if (!m) return false;\n\n const path = m[0];\n const params = Object.create(null);\n\n for (let i = 1; i < m.length; i++) {\n if (m[i] === undefined) continue;\n\n const key = keys[i - 1];\n const decoder = decoders[i - 1];\n params[key.name] = decoder(m[i]);\n }\n\n return { path, params };\n };\n}\n\n/**\n * Transform a path into a regular expression and capture keys.\n */\nexport function pathToRegexp(\n path: Path | Path[],\n options: PathToRegexpOptions & ParseOptions = {},\n) {\n const {\n delimiter = DEFAULT_DELIMITER,\n end = true,\n sensitive = false,\n trailing = true,\n } = options;\n const keys: Keys = [];\n let source = \"\";\n let combinations = 0;\n\n function process(path: Path | Path[]) {\n if (Array.isArray(path)) {\n for (const p of path) process(p);\n return;\n }\n\n const data = typeof path === \"object\" ? path : parse(path, options);\n flatten(data.tokens, 0, [], (tokens) => {\n if (combinations >= 256) {\n throw new PathError(\"Too many path combinations\", data.originalPath);\n }\n\n if (combinations > 0) source += \"|\";\n source += toRegExpSource(tokens, delimiter, keys, data.originalPath);\n combinations++;\n });\n }\n\n process(path);\n\n let pattern = `^(?:${source})`;\n if (trailing) pattern += \"(?:\" + escape(delimiter) + \"$)?\";\n pattern += end ? \"$\" : \"(?=\" + escape(delimiter) + \"|$)\";\n\n return { regexp: new RegExp(pattern, sensitive ? \"\" : \"i\"), keys };\n}\n\n/**\n * Generate a flat list of sequence tokens from the given tokens.\n */\nfunction flatten(\n tokens: Token[],\n index: number,\n result: Exclude[],\n callback: (result: Exclude[]) => void,\n): void {\n while (index < tokens.length) {\n const token = tokens[index++];\n\n if (token.type === \"group\") {\n const len = result.length;\n flatten(token.tokens, 0, result, (seq) =>\n flatten(tokens, index, seq, callback),\n );\n result.length = len;\n continue;\n }\n\n result.push(token);\n }\n\n callback(result);\n}\n\n/**\n * Transform a flat sequence of tokens into a regular expression.\n */\nfunction toRegExpSource(\n tokens: Exclude[],\n delimiter: string,\n keys: Keys,\n originalPath: string | undefined,\n): string {\n let result = \"\";\n let backtrack = \"\";\n let wildcardBacktrack = \"\";\n let prevCaptureType: 0 | 1 | 2 = 0;\n let hasSegmentCapture = 0;\n let index = 0;\n\n function hasInSegment(index: number, type: Token[\"type\"]) {\n while (index < tokens.length) {\n const token = tokens[index++];\n if (token.type === type) return true;\n if (token.type === \"text\") {\n if (token.value.includes(delimiter)) break;\n }\n }\n return false;\n }\n\n function peekText(index: number) {\n let result = \"\";\n while (index < tokens.length) {\n const token = tokens[index++];\n if (token.type !== \"text\") break;\n result += token.value;\n }\n return result;\n }\n\n while (index < tokens.length) {\n const token = tokens[index++];\n\n if (token.type === \"text\") {\n result += escape(token.value);\n backtrack += token.value;\n if (prevCaptureType === 2) wildcardBacktrack += token.value;\n if (token.value.includes(delimiter)) hasSegmentCapture = 0;\n continue;\n }\n\n if (token.type === \"param\" || token.type === \"wildcard\") {\n if (prevCaptureType && !backtrack) {\n throw new PathError(\n `Missing text before \"${token.name}\" ${token.type}`,\n originalPath,\n );\n }\n\n if (token.type === \"param\") {\n result +=\n hasSegmentCapture & 2 // Seen wildcard in segment.\n ? `(${negate(delimiter, backtrack)}+)`\n : hasInSegment(index, \"wildcard\") // See wildcard later in segment.\n ? `(${negate(delimiter, peekText(index))}+)`\n : hasSegmentCapture & 1 // Seen parameter in segment.\n ? `(${negate(delimiter, backtrack)}+|${escape(backtrack)})`\n : `(${negate(delimiter, \"\")}+)`;\n\n hasSegmentCapture |= prevCaptureType = 1;\n } else {\n result +=\n hasSegmentCapture & 2 // Seen wildcard in segment.\n ? `(${negate(backtrack, \"\")}+)`\n : wildcardBacktrack // No capture in segment, seen wildcard in path.\n ? `(${negate(wildcardBacktrack, \"\")}+|${negate(delimiter, \"\")}+)`\n : `([^]+)`;\n\n wildcardBacktrack = \"\";\n hasSegmentCapture |= prevCaptureType = 2;\n }\n\n keys.push(token);\n backtrack = \"\";\n continue;\n }\n\n throw new TypeError(`Unknown token type: ${(token as any).type}`);\n }\n\n return result;\n}\n\n/**\n * Block backtracking on previous text/delimiter.\n */\nfunction negate(a: string, b: string): string {\n if (b.length > a.length) return negate(b, a); // Longest string first.\n\n if (a === b) b = \"\"; // Cleaner regex strings, no duplication.\n if (b.length > 1) return `(?:(?!${escape(a)}|${escape(b)})[^])`;\n if (a.length > 1) return `(?:(?!${escape(a)})[^${escape(b)}])`;\n return `[^${escape(a + b)}]`;\n}\n\n/**\n * Stringify an array of tokens into a path string.\n */\nfunction stringifyTokens(tokens: Token[], index: number): string {\n let value = \"\";\n\n while (index < tokens.length) {\n const token = tokens[index++];\n\n if (token.type === \"text\") {\n value += escapeText(token.value);\n continue;\n }\n\n if (token.type === \"group\") {\n value += \"{\" + stringifyTokens(token.tokens, 0) + \"}\";\n continue;\n }\n\n if (token.type === \"param\") {\n value += \":\" + stringifyName(token.name, tokens[index]);\n continue;\n }\n\n if (token.type === \"wildcard\") {\n value += \"*\" + stringifyName(token.name, tokens[index]);\n continue;\n }\n\n throw new TypeError(`Unknown token type: ${(token as any).type}`);\n }\n\n return value;\n}\n\n/**\n * Stringify token data into a path string.\n */\nexport function stringify(data: TokenData): string {\n return stringifyTokens(data.tokens, 0);\n}\n\n/**\n * Stringify a parameter name, escaping when it cannot be emitted directly.\n */\nfunction stringifyName(name: string, next: Token | undefined): string {\n if (!ID.test(name)) return JSON.stringify(name);\n\n if (next?.type === \"text\" && ID_CONTINUE.test(next.value[0])) {\n return JSON.stringify(name);\n }\n\n return name;\n}\n" + ] + }, + "url": null + }, + "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/.pikku/agent/pikku-agent-wirings-meta.gen.ts": { + "lineLengths": [146, 1009, 4, 0, 886], + "data": { + "version": 3, + "mappings": ";4uBAGA,oBAA2B,gCAE3B,wCAAqB,2DACrB,4BAAW,KAAM,QAAS,aAAc,oCAAAA,QAAS,UAAyB", + "names": ["metaData"], + "ignoreList": [], + "sources": [ + "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/.pikku/agent/pikku-agent-wirings-meta.gen.ts" + ], + "sourcesContent": [ + "/**\n * This file was generated by @pikku/cli@0.12.21\n */\nimport { pikkuState } from '@pikku/core/internal'\nimport type { AIAgentMeta } from '@pikku/core/ai-agent'\nimport metaData from './pikku-agent-wirings-meta.gen.json' with { type: 'json' }\npikkuState(null, 'agent', 'agentsMeta', metaData.agentsMeta as AIAgentMeta)" + ], + "sourceRoot": "" + }, + "url": null + }, + "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/.pikku/http/pikku-http-wirings-meta.gen.ts": { + "lineLengths": [144, 988, 4, 0, 858], + "data": { + "version": 3, + "mappings": ";4uBAGA,oBAA2B,gCAE3B,uCAAqB,0DACrB,4BAAW,KAAM,OAAQ,OAAQ,mCAAAA,OAA2B", + "names": ["metaData"], + "ignoreList": [], + "sources": [ + "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/.pikku/http/pikku-http-wirings-meta.gen.ts" + ], + "sourcesContent": [ + "/**\n * This file was generated by @pikku/cli@0.12.21\n */\nimport { pikkuState } from '@pikku/core/internal'\nimport type { HTTPWiringsMeta } from '@pikku/core/http'\nimport metaData from './pikku-http-wirings-meta.gen.json' with { type: 'json' }\npikkuState(null, 'http', 'meta', metaData as HTTPWiringsMeta)" + ], + "sourceRoot": "" + }, + "url": null + }, + "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/.pikku/scheduler/pikku-schedulers-wirings-meta.gen.ts": { + "lineLengths": [155, 1210, 4, 0, 978], + "data": { + "version": 3, + "mappings": ";2zBAAA,wHAGA,oBAA2B,gCAE3B,6CAAqB,gEAErB,4BAAW,KAAM,YAAa,OAAQ,yCAAAA,OAA8B", + "names": ["metaData"], + "ignoreList": [], + "sources": [ + "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/.pikku/scheduler/pikku-schedulers-wirings-meta.gen.ts" + ], + "sourcesContent": [ + "/**\n * This file was generated by @pikku/cli@0.12.21\n */\nimport { pikkuState } from '@pikku/core/internal'\nimport { ScheduledTasksMeta } from '@pikku/core/scheduler'\nimport metaData from './pikku-schedulers-wirings-meta.gen.json' with { type: 'json' }\n\npikkuState(null, 'scheduler', 'meta', metaData as ScheduledTasksMeta)\n\nexport type ScheduledTaskNames = 'archiveStaleCards'" + ], + "sourceRoot": "" + }, + "url": null + }, + "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/.pikku/trigger/pikku-trigger-wirings-meta.gen.ts": { + "lineLengths": [150, 1193, 4, 0, 926], + "data": { + "version": 3, + "mappings": ";2zBAAA,kHAGA,oBAA2B,gCAE3B,0CAAqB,6DAErB,4BAAW,KAAM,UAAW,OAAQ,sCAAAA,OAAuB", + "names": ["metaData"], + "ignoreList": [], + "sources": [ + "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/.pikku/trigger/pikku-trigger-wirings-meta.gen.ts" + ], + "sourcesContent": [ + "/**\n * This file was generated by @pikku/cli@0.12.21\n */\nimport { pikkuState } from '@pikku/core/internal'\nimport { TriggerMeta } from '@pikku/core/trigger'\nimport metaData from './pikku-trigger-wirings-meta.gen.json' with { type: 'json' }\n\npikkuState(null, 'trigger', 'meta', metaData as TriggerMeta)\n\nexport type TriggerNames = 'card-event'" + ], + "sourceRoot": "" + }, + "url": null + }, + "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/.pikku/trigger/pikku-trigger-sources-meta.gen.ts": { + "lineLengths": [150, 1006, 4, 0, 886], + "data": { + "version": 3, + "mappings": ";4uBAGA,oBAA2B,gCAE3B,0CAAqB,6DAErB,4BAAW,KAAM,UAAW,aAAc,sCAAAA,OAA6B", + "names": ["metaData"], + "ignoreList": [], + "sources": [ + "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/.pikku/trigger/pikku-trigger-sources-meta.gen.ts" + ], + "sourcesContent": [ + "/**\n * This file was generated by @pikku/cli@0.12.21\n */\nimport { pikkuState } from '@pikku/core/internal'\nimport { TriggerSourceMeta } from '@pikku/core/trigger'\nimport metaData from './pikku-trigger-sources-meta.gen.json' with { type: 'json' }\n\npikkuState(null, 'trigger', 'sourceMeta', metaData as TriggerSourceMeta)" + ], + "sourceRoot": "" + }, + "url": null + }, + "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/.pikku/function/pikku-functions-meta.gen.ts": { + "lineLengths": [145, 983, 4, 0, 846], + "data": { + "version": 3, + "mappings": ";4uBAGA,oBAA2B,gCAE3B,oCAAqB,uDACrB,4BAAW,KAAM,WAAY,OAAQ,gCAAAA,OAAyB", + "names": ["metaData"], + "ignoreList": [], + "sources": [ + "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/.pikku/function/pikku-functions-meta.gen.ts" + ], + "sourcesContent": [ + "/**\n * This file was generated by @pikku/cli@0.12.21\n */\nimport { pikkuState } from '@pikku/core/internal'\nimport type { FunctionsMeta } from '@pikku/core'\nimport metaData from './pikku-functions-meta.gen.json' with { type: 'json' }\npikkuState(null, 'function', 'meta', metaData as FunctionsMeta)" + ], + "sourceRoot": "" + }, + "url": null + }, + "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/.pikku/queue/pikku-queue-workers-wirings-meta.gen.ts": { + "lineLengths": [154, 1016, 4, 0, 882], + "data": { + "version": 3, + "mappings": ";4uBAGA,oBAA2B,gCAE3B,gDAAqB,mEAErB,4BAAW,KAAM,QAAS,OAAQ,4CAAAA,OAA4B", + "names": ["metaData"], + "ignoreList": [], + "sources": [ + "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/.pikku/queue/pikku-queue-workers-wirings-meta.gen.ts" + ], + "sourcesContent": [ + "/**\n * This file was generated by @pikku/cli@0.12.21\n */\nimport { pikkuState } from '@pikku/core/internal'\nimport { QueueWorkersMeta } from '@pikku/core/queue'\nimport metaData from './pikku-queue-workers-wirings-meta.gen.json' with { type: 'json' }\n\npikkuState(null, 'queue', 'meta', metaData as QueueWorkersMeta)" + ], + "sourceRoot": "" + }, + "url": null + }, + "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/.pikku/channel/pikku-channels-meta.gen.ts": { + "lineLengths": [143, 979, 4, 0, 850], + "data": { + "version": 3, + "mappings": ";4uBAGA,oBAA2B,gCAE3B,mCAAqB,sDACrB,4BAAW,KAAM,UAAW,OAAQ,+BAAAA,OAAwB", + "names": ["metaData"], + "ignoreList": [], + "sources": [ + "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/.pikku/channel/pikku-channels-meta.gen.ts" + ], + "sourcesContent": [ + "/**\n * This file was generated by @pikku/cli@0.12.21\n */\nimport { pikkuState } from '@pikku/core/internal'\nimport type { ChannelsMeta } from '@pikku/core/channel'\nimport metaData from './pikku-channels-meta.gen.json' with { type: 'json' }\npikkuState(null, 'channel', 'meta', metaData as ChannelsMeta)" + ], + "sourceRoot": "" + }, + "url": null + }, + "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/.pikku/mcp/pikku-mcp-wirings-meta.gen.ts": { + "lineLengths": [142, 1225, 4, 0, 1250], + "data": { + "version": 3, + "mappings": ";4uBAGA,oBAA2B,gCAE3B,sCAAqB,yDACrB,4BAAW,KAAM,MAAO,gBAAiB,kCAAAA,QAAS,aAAgC,KAClF,4BAAW,KAAM,MAAO,YAAa,kCAAAA,QAAS,SAAwB,KACtE,4BAAW,KAAM,MAAO,cAAe,kCAAAA,QAAS,WAA4B", + "names": ["metaData"], + "ignoreList": [], + "sources": [ + "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/.pikku/mcp/pikku-mcp-wirings-meta.gen.ts" + ], + "sourcesContent": [ + "/**\n * This file was generated by @pikku/cli@0.12.21\n */\nimport { pikkuState } from '@pikku/core/internal'\nimport type { MCPResourceMeta, MCPToolMeta, MCPPromptMeta } from '@pikku/core/mcp'\nimport metaData from './pikku-mcp-wirings-meta.gen.json' with { type: 'json' }\npikkuState(null, 'mcp', 'resourcesMeta', metaData.resourcesMeta as MCPResourceMeta)\npikkuState(null, 'mcp', 'toolsMeta', metaData.toolsMeta as MCPToolMeta)\npikkuState(null, 'mcp', 'promptsMeta', metaData.promptsMeta as MCPPromptMeta)" + ], + "sourceRoot": "" + }, + "url": null + }, + "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/.pikku/cli/pikku-cli-wirings-meta.gen.ts": { + "lineLengths": [142, 984, 4, 0, 822], + "data": { + "version": 3, + "mappings": ";4uBAGA,oBAA2B,gCAE3B,sCAAqB,yDACrB,4BAAW,KAAM,MAAO,OAAQ,kCAAAA,OAAmB", + "names": ["metaData"], + "ignoreList": [], + "sources": [ + "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/.pikku/cli/pikku-cli-wirings-meta.gen.ts" + ], + "sourcesContent": [ + "/**\n * This file was generated by @pikku/cli@0.12.21\n */\nimport { pikkuState } from '@pikku/core/internal'\nimport { CLIMeta } from '@pikku/core/cli'\nimport metaData from './pikku-cli-wirings-meta.gen.json' with { type: 'json' }\npikkuState(null, 'cli', 'meta', metaData as CLIMeta)" + ], + "sourceRoot": "" + }, + "url": null + }, + "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/.pikku/middleware/pikku-middleware.gen.ts": { + "lineLengths": [143, 118, 4, 0, 654], + "data": { + "version": 3, + "mappings": ";AAIA,2BAA2B,sDAC3B,mCAAW", + "names": [], + "ignoreList": [], + "sources": [ + "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/.pikku/middleware/pikku-middleware.gen.ts" + ], + "sourcesContent": [ + "/**\n * This file was generated by @pikku/cli@0.12.21\n */\n/* Call middleware group factories to register at module evaluation */\nimport { globalCors } from '../../src/middleware/cors.middleware.js'\nglobalCors()" + ], + "sourceRoot": "" + }, + "url": null + }, + "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/middleware/cors.middleware.ts": { + "lineLengths": [135, 1158, 4, 0, 722], + "data": { + "version": 3, + "mappings": ";mvBAAA,kKAAkC,4BAClC,sBAAqB,kCAEd,MAAM,WAAa,cACxB,+BAAkB,IAAK,IAAC,wBAAK,CAAE,OAAQ,GAAI,CAAC,CAAC,CAAC,EADtB", + "names": [], + "ignoreList": [], + "sources": [ + "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/packages/functions/src/middleware/cors.middleware.ts" + ], + "sourcesContent": [ + "import { addHTTPMiddleware } from '@pikku/core/http'\nimport { cors } from '@pikku/core/middleware'\n\nexport const globalCors = () =>\n addHTTPMiddleware('*', [cors({ origin: '*' })])\n" + ], + "sourceRoot": "" + }, + "url": null + }, + "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/wirings/http/index.js": { + "lineLengths": [134, 1982, 4, 0, 1022], + "data": { + "version": 3, + "mappings": ";wpBAAA,kxBAAsC,yCACtC,qCAAuC,0CACvC,2BAA0B,gCAC1B,uBAAkF,4BAClF,uBAAiD,4BACjD,uBAA+C", + "names": [], + "ignoreList": [], + "sources": [ + "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/wirings/http/index.js" + ], + "sourcesContent": [ + "export { PikkuFetchHTTPRequest } from './pikku-fetch-http-request.js';\nexport { PikkuFetchHTTPResponse } from './pikku-fetch-http-response.js';\nexport { logRoutes } from './log-http-routes.js';\nexport { fetch, fetchData, wireHTTP, addHTTPMiddleware, addHTTPPermission, } from './http-runner.js';\nexport { wireHTTPRoutes, defineHTTPRoutes } from './http-routes.js';\nexport { toWebRequest, applyWebResponse } from './web-request.js';\n" + ], + "sourceRoot": "" + }, + "url": null + }, + "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/wirings/http/pikku-fetch-http-request.js": { + "lineLengths": [153, 3877, 4, 0, 11082], + "data": { + "version": 3, + "mappings": ";suBAAA,wNAAoC,qBACpC,kBAAqC,kBACrC,kBAA0C,kCAMnC,MAAM,qBAAsB,CARnC,MAQmC,sCAC/B,QACA,SACA,QAAU,CAAC,EACX,KACA,YAAY,QAAS,CACjB,KAAK,QAAU,QACf,KAAK,KAAO,IAAI,IAAI,QAAQ,GAAG,CACnC,CACA,QAAS,CACL,OAAO,KAAK,QAAQ,OAAO,YAAY,CAC3C,CACA,MAAO,CACH,OAAO,KAAK,KAAK,QACrB,CAKA,MAAO,CACH,OAAO,KAAK,QAAQ,KAAK,CAC7B,CAKA,aAAc,CACV,OAAO,KAAK,QAAQ,YAAY,CACpC,CACA,SAAU,CACN,OAAO,OAAO,YAAY,KAAK,QAAQ,QAAQ,QAAQ,CAAC,CAC5D,CAMA,OAAO,WAAY,CACf,OAAO,KAAK,QAAQ,QAAQ,IAAI,WAAW,YAAY,CAAC,CAC5D,CAKA,OAAO,WAAY,CACf,GAAI,KAAK,WAAW,UAAU,EAAG,CAC7B,OAAO,KAAK,SAAS,UAAU,CACnC,CACA,MAAM,aAAe,KAAK,OAAO,QAAQ,EACzC,KAAK,SAAW,gBAAe,cAAAA,OAAY,YAAY,EAAI,CAAC,EAC5D,OAAO,KAAK,SAAS,UAAU,GAAK,IACxC,CAKA,QAAS,CACL,OAAO,KAAK,OAChB,CAKA,UAAU,OAAQ,CACd,KAAK,QAAU,MACnB,CAKA,OAAQ,CACJ,SAAO,iBAAAC,OAAW,KAAK,KAAK,aAAa,SAAS,CAAC,CACvD,CAKA,MAAM,MAAO,CACT,MAAM,KAAO,MAAM,KAAK,KAAK,EAC7B,MAAM,MAAQ,CAAC,KAAK,OAAO,EAAG,KAAK,MAAM,EAAG,IAAI,EAChD,MAAM,OAAS,CAAC,EAChB,UAAW,QAAQ,MAAO,CACtB,SAAW,CAAC,IAAK,KAAK,IAAK,OAAO,QAAQ,IAAI,EAAG,CAC7C,GAAI,MAAQ,aAAe,MAAQ,eAAiB,MAAQ,YAAa,CACrE,QACJ,CACA,GAAI,OAAO,QAAU,CAAC,oBAAoB,OAAO,GAAG,EAAG,KAAK,EAAG,CAC3D,MAAM,IAAI,wCAA0B,+BAA+B,GAAG,OAAO,OAAO,GAAG,CAAC,SAAS,KAAK,GAAG,CAC7G,CACA,OAAO,GAAG,IAAM,KACpB,CACJ,CACA,OAAO,MACX,CACA,MAAM,MAAO,CACT,MAAM,cAAgB,CAAC,MAAO,OAAQ,UAAW,QAAQ,EACzD,GAAI,cAAc,SAAS,KAAK,OAAO,CAAC,EAAG,CACvC,MAAO,CAAC,CACZ,CACA,IAAI,KAAO,CAAC,EACZ,MAAM,YAAc,KAAK,OAAO,cAAc,GAAK,GACnD,GAAI,CACA,GAAI,YAAY,SAAS,kBAAkB,EAAG,CAC1C,MAAM,OAAS,MAAM,KAAK,KAAK,EAC/B,KACI,OAAO,SAAW,UACd,SAAW,MACX,CAAC,MAAM,QAAQ,MAAM,EACnB,OACA,CAAE,KAAM,MAAO,CAC7B,SACS,YAAY,SAAS,OAAO,EAAG,CACpC,MAAM,KAAO,MAAM,KAAK,QAAQ,KAAK,EACrC,KAAO,CAAE,KAAM,IAAK,CACxB,SACS,YAAY,SAAS,0BAA0B,EAAG,CACvD,MAAM,OAAS,MAAM,KAAK,QAAQ,YAAY,EAC9C,KAAO,CAAE,KAAM,MAAO,CAC1B,SACS,cAAgB,oCAAqC,CAC1D,MAAM,KAAO,MAAM,KAAK,QAAQ,KAAK,EACrC,MAAM,OAAS,IAAI,gBAAgB,IAAI,EACvC,IAAI,MAAQ,EACZ,UAAW,KAAK,OAAQ,CACpB,GAAI,EAAE,MAAQ,IAAK,CACf,MAAM,IAAI,wCAA0B,0BAA0B,CAClE,CACJ,CACA,KAAO,OAAO,YAAY,MAAM,CACpC,KACK,CACD,MAAM,IAAI,wCAA0B,4BAA4B,WAAW,EAAE,CACjF,CACJ,OACO,EAAG,CACN,MAAM,IAAI,wCAA0B,uBAAuB,CAAC,EAAE,CAClE,CACA,OAAO,IACX,CACJ,CACA,SAAS,oBAAoB,EAAG,EAAG,CAC/B,OAAO,OAAO,CAAC,IAAM,OAAO,CAAC,CACjC,CAFS,kDAGT,SAAS,OAAO,MAAO,CACnB,GAAI,OAAO,QAAU,WAAa,OAAO,QAAU,SAC/C,OAAO,MACX,GAAI,OAAO,QAAU,SAAU,CAC3B,GAAI,QAAU,OACV,MAAO,MACX,GAAI,QAAU,QACV,MAAO,OACX,MAAM,IAAM,OAAO,KAAK,EACxB,OAAO,MAAM,GAAG,EAAI,MAAQ,GAChC,CACA,OAAO,KACX,CAZS", + "names": ["parseCookie", "parseQuery"], + "ignoreList": [], + "sources": [ + "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/@pikku/core/dist/wirings/http/pikku-fetch-http-request.js" + ], + "sourcesContent": [ + "import { parse as parseQuery } from 'picoquery';\nimport { parse as parseCookie } from 'cookie';\nimport { UnprocessableContentError } from '../../errors/errors.js';\n/**\n * Abstract class representing a pikku request.\n * @template In - The type of the request body.\n * @group RequestResponse\n */\nexport class PikkuFetchHTTPRequest {\n request;\n #cookies;\n #params = {};\n #url;\n constructor(request) {\n this.request = request;\n this.#url = new URL(request.url);\n }\n method() {\n return this.request.method.toLowerCase();\n }\n path() {\n return this.#url.pathname;\n }\n /**\n * Retrieves the request body.\n * @returns A promise that resolves to the request body.\n */\n json() {\n return this.request.json();\n }\n /**\n * Retrieves the raw request body as a Buffer.\n * @returns A promise that resolves to the raw request body.\n */\n arrayBuffer() {\n return this.request.arrayBuffer();\n }\n headers() {\n return Object.fromEntries(this.request.headers.entries());\n }\n /**\n * Retrieves the value of a specific header.\n * @param headerName - The name of the header to retrieve.\n * @returns The value of the header, or undefined if the header is not found.\n */\n header(headerName) {\n return this.request.headers.get(headerName.toLowerCase());\n }\n /**\n * Retrieves the cookies from the request.\n * @returns An object containing the cookies.\n */\n cookie(cookieName) {\n if (this.#cookies?.[cookieName]) {\n return this.#cookies[cookieName];\n }\n const cookieHeader = this.header('cookie');\n this.#cookies = cookieHeader ? parseCookie(cookieHeader) : {};\n return this.#cookies[cookieName] || null;\n }\n /**\n * Retrieves the request parameters.\n * @returns An object containing the request parameters.\n */\n params() {\n return this.#params;\n }\n /**\n * Sets the request parameters.\n * @param params - An object containing the request parameters to set.\n */\n setParams(params) {\n this.#params = params;\n }\n /**\n * Retrieves the query parameters from the request.\n * @returns An object containing the query parameters.\n */\n query() {\n return parseQuery(this.#url.searchParams.toString());\n }\n /**\n * Retrieves the combined data from the request, including parameters, query, and body.\n * @returns A promise that resolves to an object containing the combined data.\n */\n async data() {\n const body = await this.body();\n const parts = [this.params(), this.query(), body];\n const merged = {};\n for (const part of parts) {\n for (const [key, value] of Object.entries(part)) {\n if (key === '__proto__' || key === 'constructor' || key === 'prototype') {\n continue;\n }\n if (key in merged && !valuesAreEquivalent(merged[key], value)) {\n throw new UnprocessableContentError(`Conflicting values for key \"${key}\": \"${merged[key]}\" vs \"${value}\"`);\n }\n merged[key] ??= value;\n }\n }\n return merged;\n }\n async body() {\n const noBodyMethods = ['get', 'head', 'options', 'delete'];\n if (noBodyMethods.includes(this.method())) {\n return {};\n }\n let body = {};\n const contentType = this.header('content-type') || '';\n try {\n if (contentType.includes('application/json')) {\n const parsed = await this.json();\n body =\n typeof parsed === 'object' &&\n parsed !== null &&\n !Array.isArray(parsed)\n ? parsed\n : { data: parsed };\n }\n else if (contentType.includes('text/')) {\n const text = await this.request.text();\n body = { data: text };\n }\n else if (contentType.includes('application/octet-stream')) {\n const buffer = await this.request.arrayBuffer();\n body = { data: buffer };\n }\n else if (contentType === 'application/x-www-form-urlencoded') {\n const text = await this.request.text();\n const params = new URLSearchParams(text);\n let count = 0;\n for (const _ of params) {\n if (++count > 256) {\n throw new UnprocessableContentError('Too many form parameters');\n }\n }\n body = Object.fromEntries(params);\n }\n else {\n throw new UnprocessableContentError(`Unsupported content type ${contentType}`);\n }\n }\n catch (e) {\n throw new UnprocessableContentError(`Error parsing body: ${e}`);\n }\n return body;\n }\n}\nfunction valuesAreEquivalent(a, b) {\n return coerce(a) === coerce(b);\n}\nfunction coerce(value) {\n if (typeof value === 'boolean' || typeof value === 'number')\n return value;\n if (typeof value === 'string') {\n if (value === 'true')\n return true;\n if (value === 'false')\n return false;\n const num = Number(value);\n return isNaN(num) ? value : num;\n }\n return value;\n}\n" + ], + "sourceRoot": "" + }, + "url": null + }, + "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/picoquery/lib/main.js": { + "lineLengths": [117, 1166, 4, 0, 514], + "data": { + "version": 3, + "mappings": ";4xBAAA,8KAAsB,sBACtB,qBAA0B,0BAC1B,wBAAc,uBAFd", + "names": [], + "ignoreList": [], + "sources": [ + "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/picoquery/lib/main.js" + ], + "sourcesContent": [ + "export { parse } from './parse.js';\nexport { stringify } from './stringify.js';\nexport * from './shared.js';\n" + ], + "sourceRoot": "" + }, + "url": null + }, + "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/picoquery/lib/parse.js": { + "lineLengths": [118, 6223, 4, 0, 17346], + "data": { + "version": 3, + "mappings": ";suBAAA,qOAA8B,4BAC9B,kBAA+B,uBAC/B,gCAAmC,qCAC5B,MAAM,sBAAwB,OAAC,KAAQ,CAC1C,MAAM,SAAW,OAAO,GAAG,EAC3B,GAAI,CAAC,OAAO,MAAM,QAAQ,EAAG,CACzB,OAAO,QACX,CACA,OAAO,GACX,EANqC,yBAO9B,MAAM,wBAA0B,OAAC,OAAU,CAC9C,MAAM,SAAW,OAAO,KAAK,EAC7B,GAAI,CAAC,OAAO,MAAM,QAAQ,EAAG,CACzB,OAAO,QACX,CACA,OAAO,KACX,EANuC,2BAOvC,MAAM,UAAY,MAClB,MAAM,MAAQ,iBAAY,CAAE,EAAd,SACd,MAAM,UAAY,OAAO,OAAO,IAAI,EACpC,SAAS,gBAAgB,MAAO,WAAY,SAAU,WAAY,gBAAiB,CAC/E,IAAI,MAAQ,MAAM,UAAU,WAAY,QAAQ,EAChD,GAAI,WAAY,CACZ,MAAQ,MAAM,QAAQ,UAAW,GAAG,CACxC,CACA,GAAI,gBAAiB,CACjB,SAAQ,gDAAmB,KAAK,GAAK,KACzC,CACA,OAAO,KACX,CATS,0CAeF,SAAS,MAAM,MAAO,QAAS,CAClC,KAAM,CAAE,kBAAoB,6BAAe,kBAAmB,gBAAkB,6BAAe,gBAAiB,kBAAoB,6BAAe,kBAAmB,QAAU,6BAAe,QAAS,YAAc,6BAAe,YAAa,cAAgB,6BAAe,cAAe,UAAY,6BAAe,SAAU,EAAI,SAAW,CAAC,EACrV,MAAM,cAAgB,OAAO,YAAc,SAAW,UAAU,WAAW,CAAC,EAAI,UAChF,MAAM,kBAAoB,gBAAkB,KAG5C,MAAM,OAAS,IAAI,MACnB,GAAI,OAAO,QAAU,SAAU,CAC3B,OAAO,MACX,CACA,MAAM,YAAc,MAAM,OAC1B,IAAI,MAAQ,GACZ,IAAI,cAAgB,GACpB,IAAI,cAAgB,GACpB,IAAI,kBAAoB,GACxB,IAAI,WAAa,OACjB,IAAI,QAAU,OACd,IAAI,WAAa,GACjB,IAAI,SAAW,GACf,IAAI,gBAAkB,MACtB,IAAI,kBAAoB,MACxB,IAAI,WAAa,MACjB,IAAI,aAAe,MACnB,IAAI,SAAW,MACf,IAAI,oBAAsB,MAC1B,IAAI,EAAI,EACR,IAAI,wBAA0B,GAC9B,IAAI,UAAY,GAChB,IAAI,SAAW,GAEf,QAAS,EAAI,EAAG,EAAI,YAAc,EAAG,IAAK,CACtC,EAAI,IAAM,YAAc,MAAM,WAAW,CAAC,EAAI,cAE9C,GAAI,IAAM,cAAe,CACrB,oBAAsB,cAAgB,cAEtC,GAAI,CAAC,oBAAqB,CACtB,cAAgB,CACpB,CACA,GAAI,oBAAsB,cAAgB,EAAG,CACzC,SAAW,gBAAgB,MAAO,kBAAoB,EAAG,wBAA0B,GAC7E,wBACA,cAAe,WAAY,eAAe,EAChD,WAAa,gBAAgB,QAAQ,EACrC,GAAI,UAAY,OAAW,CACvB,cAAa,kCAAc,WAAY,QAAS,WAAY,mBAAqB,SAAU,MAAS,CACxG,CACJ,CAEA,GAAI,qBAAuB,aAAe,GAAI,CAC1C,GAAI,oBAAqB,CACrB,MAAQ,MAAM,MAAM,cAAgB,EAAG,CAAC,EACxC,GAAI,aAAc,CACd,MAAQ,MAAM,QAAQ,UAAW,GAAG,CACxC,CACA,GAAI,kBAAmB,CACnB,SAAQ,gDAAmB,KAAK,GAAK,KACzC,CACJ,CACA,MAAM,SAAW,kBAAkB,MAAO,UAAU,EACpD,GAAI,YAAa,CACb,MAAM,aAAe,WAAW,UAAU,EAC1C,GAAI,eAAiB,OAAW,CAC5B,GAAI,wBAA0B,GAAI,CAC9B,WAAW,UAAU,EAAI,CAAC,QAAQ,CACtC,KACK,CACD,WAAW,UAAU,EAAI,QAC7B,CACJ,SAES,aAAa,IAAK,CACvB,aAAa,KAAK,QAAQ,CAC9B,KACK,CACD,WAAW,UAAU,EAAI,CAAC,aAAc,QAAQ,CACpD,CACJ,MAEI,WAAW,UAAU,EAAI,QACjC,CAEA,MAAQ,GACR,cAAgB,EAChB,cAAgB,EAChB,gBAAkB,MAClB,kBAAoB,MACpB,WAAa,MACb,aAAe,MACf,SAAW,MACX,wBAA0B,GAC1B,kBAAoB,EACpB,WAAa,OACb,QAAU,OACV,WAAa,EACjB,SAES,IAAM,GAAI,CACf,GAAI,aAAe,oBAAsB,UAAW,CAChD,GAAI,WAAa,GAAI,CACjB,wBAA0B,SAC9B,CACJ,CACA,GAAI,UACC,gBAAkB,SAAW,oBAC9B,eAAiB,cAAe,CAChC,GAAI,oBAAsB,UAAW,CACjC,SAAW,gBAAgB,MAAO,kBAAoB,EAAG,EAAG,WAAY,eAAe,EACvF,WAAa,gBAAgB,QAAQ,EACrC,GAAI,UAAY,OAAW,CACvB,cAAa,kCAAc,WAAY,QAAS,WAAY,OAAW,MAAS,CACpF,CACA,QAAU,WACV,WAAa,MACb,gBAAkB,KACtB,CACA,kBAAoB,EACpB,SAAW,KACf,CACJ,SAES,IAAM,GAAI,CACf,GAAI,UACC,gBAAkB,OAAS,oBAC5B,eAAiB,cAAe,CAChC,GAAI,oBAAsB,UAAW,CACjC,SAAW,gBAAgB,MAAO,kBAAoB,EAAG,EAAG,WAAY,eAAe,EACvF,WAAa,gBAAgB,QAAQ,EACrC,GAAI,UAAY,OAAW,CACvB,cAAa,kCAAc,WAAY,QAAS,WAAY,iBAAiB,CACjF,CACA,QAAU,WACV,WAAa,MACb,gBAAkB,KACtB,CACA,SAAW,KACX,kBAAoB,CACxB,CACJ,SAES,IAAM,GAAI,CACf,GAAI,UACC,gBAAkB,SAAW,oBAC9B,eAAiB,cAAe,CAChC,GAAI,oBAAsB,UAAW,CACjC,SAAW,gBAAgB,MAAO,kBAAoB,EAAG,EAAG,WAAY,eAAe,EACvF,WAAa,gBAAgB,QAAQ,EACrC,GAAI,mBAAqB,UAAY,OAAW,CAC5C,cAAa,kCAAc,WAAY,QAAS,WAAY,iBAAiB,CACjF,CACA,QAAU,WACV,WAAa,MACb,gBAAkB,MAClB,SAAW,KACf,CACA,kBAAoB,CACxB,CACJ,SAES,IAAM,GAAI,CACf,GAAI,eAAiB,cAAe,CAChC,cAAgB,CACpB,KAEK,CACD,kBAAoB,IACxB,CACJ,SAES,IAAM,GAAI,CACf,GAAI,cAAgB,cAAe,CAC/B,aAAe,IACnB,KACK,CACD,WAAa,IACjB,CACJ,SAES,IAAM,GAAI,CACf,GAAI,cAAgB,cAAe,CAC/B,kBAAoB,IACxB,KACK,CACD,gBAAkB,IACtB,CACJ,CACA,UAAY,EACZ,SAAW,CACf,CACA,OAAO,MACX,CA9LgB", + "names": [], + "ignoreList": [], + "sources": [ + "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/picoquery/lib/parse.js" + ], + "sourcesContent": [ + "import { getDeepObject } from './object-util.js';\nimport { defaultOptions } from './shared.js';\nimport { decodeURIComponent } from './decode-uri-component.js';\nexport const numberKeyDeserializer = (key) => {\n const asNumber = Number(key);\n if (!Number.isNaN(asNumber)) {\n return asNumber;\n }\n return key;\n};\nexport const numberValueDeserializer = (value) => {\n const asNumber = Number(value);\n if (!Number.isNaN(asNumber)) {\n return asNumber;\n }\n return value;\n};\nconst regexPlus = /\\+/g;\nconst Empty = function () { };\nEmpty.prototype = Object.create(null);\nfunction computeKeySlice(input, startIndex, endIndex, keyHasPlus, shouldDecodeKey) {\n let chunk = input.substring(startIndex, endIndex);\n if (keyHasPlus) {\n chunk = chunk.replace(regexPlus, ' ');\n }\n if (shouldDecodeKey) {\n chunk = decodeURIComponent(chunk) || chunk;\n }\n return chunk;\n}\n/**\n * Parses a query string into an object\n * @param {string} input\n * @param {ParseOptions=} options\n */\nexport function parse(input, options) {\n const { valueDeserializer = defaultOptions.valueDeserializer, keyDeserializer = defaultOptions.keyDeserializer, arrayRepeatSyntax = defaultOptions.arrayRepeatSyntax, nesting = defaultOptions.nesting, arrayRepeat = defaultOptions.arrayRepeat, nestingSyntax = defaultOptions.nestingSyntax, delimiter = defaultOptions.delimiter } = options ?? {};\n const charDelimiter = typeof delimiter === 'string' ? delimiter.charCodeAt(0) : delimiter;\n const isJsNestingSyntax = nestingSyntax === 'js';\n // Optimization: Use new Empty() instead of Object.create(null) for performance\n // v8 has a better optimization for initializing functions compared to Object\n const result = new Empty();\n if (typeof input !== 'string') {\n return result;\n }\n const inputLength = input.length;\n let value = '';\n let startingIndex = -1;\n let equalityIndex = -1;\n let keySeparatorIndex = -1;\n let currentObj = result;\n let lastKey = undefined;\n let currentKey = '';\n let keyChunk = '';\n let shouldDecodeKey = false;\n let shouldDecodeValue = false;\n let keyHasPlus = false;\n let valueHasPlus = false;\n let keyIsDot = false;\n let hasBothKeyValuePair = false;\n let c = 0;\n let arrayRepeatBracketIndex = -1;\n let prevIndex = -1;\n let prevChar = -1;\n // Have a boundary of input.length + 1 to access last pair inside the loop.\n for (let i = 0; i < inputLength + 1; i++) {\n c = i !== inputLength ? input.charCodeAt(i) : charDelimiter;\n // Handle '&' and end of line to pass the current values to result\n if (c === charDelimiter) {\n hasBothKeyValuePair = equalityIndex > startingIndex;\n // Optimization: Reuse equality index to store the end of key\n if (!hasBothKeyValuePair) {\n equalityIndex = i;\n }\n if (keySeparatorIndex !== equalityIndex - 1) {\n keyChunk = computeKeySlice(input, keySeparatorIndex + 1, arrayRepeatBracketIndex > -1\n ? arrayRepeatBracketIndex\n : equalityIndex, keyHasPlus, shouldDecodeKey);\n currentKey = keyDeserializer(keyChunk);\n if (lastKey !== undefined) {\n currentObj = getDeepObject(currentObj, lastKey, currentKey, isJsNestingSyntax && keyIsDot, undefined);\n }\n }\n // Add key/value pair only if the range size is greater than 1; a.k.a. contains at least \"=\"\n if (hasBothKeyValuePair || currentKey !== '') {\n if (hasBothKeyValuePair) {\n value = input.slice(equalityIndex + 1, i);\n if (valueHasPlus) {\n value = value.replace(regexPlus, ' ');\n }\n if (shouldDecodeValue) {\n value = decodeURIComponent(value) || value;\n }\n }\n const newValue = valueDeserializer(value, currentKey);\n if (arrayRepeat) {\n const currentValue = currentObj[currentKey];\n if (currentValue === undefined) {\n if (arrayRepeatBracketIndex > -1) {\n currentObj[currentKey] = [newValue];\n }\n else {\n currentObj[currentKey] = newValue;\n }\n }\n // Optimization: value.pop is faster than Array.isArray(value)\n else if (currentValue.pop) {\n currentValue.push(newValue);\n }\n else {\n currentObj[currentKey] = [currentValue, newValue];\n }\n }\n else\n currentObj[currentKey] = newValue;\n }\n // Reset reading key value pairs\n value = '';\n startingIndex = i;\n equalityIndex = i;\n shouldDecodeKey = false;\n shouldDecodeValue = false;\n keyHasPlus = false;\n valueHasPlus = false;\n keyIsDot = false;\n arrayRepeatBracketIndex = -1;\n keySeparatorIndex = i;\n currentObj = result;\n lastKey = undefined;\n currentKey = '';\n }\n // Check ']'\n else if (c === 93) {\n if (arrayRepeat && arrayRepeatSyntax === 'bracket') {\n if (prevChar === 91) {\n arrayRepeatBracketIndex = prevIndex;\n }\n }\n if (nesting &&\n (nestingSyntax === 'index' || isJsNestingSyntax) &&\n equalityIndex <= startingIndex) {\n if (keySeparatorIndex !== prevIndex) {\n keyChunk = computeKeySlice(input, keySeparatorIndex + 1, i, keyHasPlus, shouldDecodeKey);\n currentKey = keyDeserializer(keyChunk);\n if (lastKey !== undefined) {\n currentObj = getDeepObject(currentObj, lastKey, currentKey, undefined, undefined);\n }\n lastKey = currentKey;\n keyHasPlus = false;\n shouldDecodeKey = false;\n }\n keySeparatorIndex = i;\n keyIsDot = false;\n }\n }\n // Check '.'\n else if (c === 46) {\n if (nesting &&\n (nestingSyntax === 'dot' || isJsNestingSyntax) &&\n equalityIndex <= startingIndex) {\n if (keySeparatorIndex !== prevIndex) {\n keyChunk = computeKeySlice(input, keySeparatorIndex + 1, i, keyHasPlus, shouldDecodeKey);\n currentKey = keyDeserializer(keyChunk);\n if (lastKey !== undefined) {\n currentObj = getDeepObject(currentObj, lastKey, currentKey, isJsNestingSyntax);\n }\n lastKey = currentKey;\n keyHasPlus = false;\n shouldDecodeKey = false;\n }\n keyIsDot = true;\n keySeparatorIndex = i;\n }\n }\n // Check '['\n else if (c === 91) {\n if (nesting &&\n (nestingSyntax === 'index' || isJsNestingSyntax) &&\n equalityIndex <= startingIndex) {\n if (keySeparatorIndex !== prevIndex) {\n keyChunk = computeKeySlice(input, keySeparatorIndex + 1, i, keyHasPlus, shouldDecodeKey);\n currentKey = keyDeserializer(keyChunk);\n if (isJsNestingSyntax && lastKey !== undefined) {\n currentObj = getDeepObject(currentObj, lastKey, currentKey, isJsNestingSyntax);\n }\n lastKey = currentKey;\n keyHasPlus = false;\n shouldDecodeKey = false;\n keyIsDot = false;\n }\n keySeparatorIndex = i;\n }\n }\n // Check '='\n else if (c === 61) {\n if (equalityIndex <= startingIndex) {\n equalityIndex = i;\n }\n // If '=' character occurs again, we should decode the input.\n else {\n shouldDecodeValue = true;\n }\n }\n // Check '+', and remember to replace it with empty space.\n else if (c === 43) {\n if (equalityIndex > startingIndex) {\n valueHasPlus = true;\n }\n else {\n keyHasPlus = true;\n }\n }\n // Check '%' character for encoding\n else if (c === 37) {\n if (equalityIndex > startingIndex) {\n shouldDecodeValue = true;\n }\n else {\n shouldDecodeKey = true;\n }\n }\n prevIndex = i;\n prevChar = c;\n }\n return result;\n}\n" + ], + "sourceRoot": "" + }, + "url": null + }, + "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/picoquery/lib/object-util.js": { + "lineLengths": [124, 3273, 4, 0, 6678], + "data": { + "version": 3, + "mappings": ";suBAAA,kMAA+B,uBAC/B,uBAA6B,4BAC7B,SAAS,eAAe,MAAO,CAC3B,OAAQ,QAAU,aAAe,QAAU,eAAiB,QAAU,WAC1E,CAFS,wCAGF,SAAS,cAAc,IAAK,IAAK,QAAS,YAAa,WAAY,CACtE,GAAI,eAAe,GAAG,EAClB,OAAO,IACX,MAAM,QAAU,IAAI,GAAG,EACvB,GAAI,OAAO,UAAY,UAAY,UAAY,KAAM,CACjD,OAAO,OACX,CAEA,GAAI,CAAC,cACA,YACG,OAAO,UAAY,UAClB,OAAO,UAAY,UAChB,QAAU,IAAM,GAChB,QAAQ,QAAQ,GAAG,IAAM,IAAM,CACvC,OAAQ,IAAI,GAAG,EAAI,CAAC,CACxB,CACA,OAAQ,IAAI,GAAG,EAAI,CAAC,CACxB,CAjBgB,sCAkBhB,MAAM,UAAY,GAClB,MAAM,eAAiB,KACvB,MAAM,eAAiB,IACvB,MAAM,gBAAkB,IACxB,MAAM,OAAS,IACR,SAAS,gBAAgB,IAAK,QAAS,MAAQ,EAAG,UAAW,gBAAiB,CACjF,KAAM,CAAE,cAAgB,6BAAe,cAAe,YAAc,6BAAe,YAAa,kBAAoB,6BAAe,kBAAmB,QAAU,6BAAe,QAAS,UAAY,6BAAe,UAAW,gBAAkB,6BAAe,gBAAiB,sBAAwB,6BAAe,qBAAsB,EAAI,QACjV,MAAM,aAAe,OAAO,YAAc,SAAW,OAAO,aAAa,SAAS,EAAI,UACtF,MAAM,kBAAoB,kBAAoB,MAAQ,YACtD,MAAM,aAAe,gBAAkB,OAAU,gBAAkB,MAAQ,CAAC,gBAC5E,GAAI,MAAQ,UAAW,CACnB,MAAO,EACX,CACA,IAAI,OAAS,GACb,IAAI,SAAW,KACf,IAAI,qBAAuB,MAC3B,UAAW,OAAO,IAAK,CACnB,MAAM,MAAQ,IAAI,GAAG,EACrB,GAAI,QAAU,OAAW,CACrB,QACJ,CACA,IAAI,KACJ,GAAI,UAAW,CACX,KAAO,UACP,GAAI,kBAAmB,CACnB,GAAI,oBAAsB,UAAW,CACjC,MAAQ,cACZ,CACJ,SACS,aAAc,CACnB,MAAQ,OACR,MAAQ,GACZ,KACK,CACD,MAAQ,eACR,MAAQ,IACR,MAAQ,eACZ,CACJ,KACK,CACD,KAAO,GACX,CACA,GAAI,CAAC,SAAU,CACX,QAAU,YACd,CACA,GAAI,OAAO,QAAU,UACjB,QAAU,MACV,CAAC,sBAAsB,KAAK,EAAG,CAC/B,qBAAuB,MAAM,MAAQ,OACrC,GAAI,SAAY,aAAe,qBAAuB,CAClD,QAAU,gBAAgB,MAAO,QAAS,MAAQ,EAAG,KAAM,oBAAoB,CACnF,CACJ,KACK,CACD,WAAU,iCAAa,IAAI,EAC3B,QAAU,IACV,QAAU,gBAAgB,MAAO,GAAG,CACxC,CACA,GAAI,SAAU,CACV,SAAW,KACf,CACJ,CACA,OAAO,MACX,CA1DgB", + "names": [], + "ignoreList": [], + "sources": [ + "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/picoquery/lib/object-util.js" + ], + "sourcesContent": [ + "import { defaultOptions } from './shared.js';\nimport { encodeString } from './string-util.js';\nfunction isPrototypeKey(value) {\n return (value === '__proto__' || value === 'constructor' || value === 'prototype');\n}\nexport function getDeepObject(obj, key, nextKey, forceObject, forceArray) {\n if (isPrototypeKey(key))\n return obj;\n const currObj = obj[key];\n if (typeof currObj === 'object' && currObj !== null) {\n return currObj;\n }\n // Check if the key is not a number, if it is a number, an array must be used\n if (!forceObject &&\n (forceArray ||\n typeof nextKey === 'number' ||\n (typeof nextKey === 'string' &&\n nextKey * 0 === 0 &&\n nextKey.indexOf('.') === -1))) {\n return (obj[key] = []);\n }\n return (obj[key] = {});\n}\nconst MAX_DEPTH = 20;\nconst strBracketPair = '[]';\nconst strBracketLeft = '[';\nconst strBracketRight = ']';\nconst strDot = '.';\nexport function stringifyObject(obj, options, depth = 0, parentKey, isProbableArray) {\n const { nestingSyntax = defaultOptions.nestingSyntax, arrayRepeat = defaultOptions.arrayRepeat, arrayRepeatSyntax = defaultOptions.arrayRepeatSyntax, nesting = defaultOptions.nesting, delimiter = defaultOptions.delimiter, valueSerializer = defaultOptions.valueSerializer, shouldSerializeObject = defaultOptions.shouldSerializeObject } = options;\n const strDelimiter = typeof delimiter === 'number' ? String.fromCharCode(delimiter) : delimiter;\n const useArrayRepeatKey = isProbableArray === true && arrayRepeat;\n const shouldUseDot = nestingSyntax === 'dot' || (nestingSyntax === 'js' && !isProbableArray);\n if (depth > MAX_DEPTH) {\n return '';\n }\n let result = '';\n let firstKey = true;\n let valueIsProbableArray = false;\n for (const key in obj) {\n const value = obj[key];\n if (value === undefined) {\n continue;\n }\n let path;\n if (parentKey) {\n path = parentKey;\n if (useArrayRepeatKey) {\n if (arrayRepeatSyntax === 'bracket') {\n path += strBracketPair;\n }\n }\n else if (shouldUseDot) {\n path += strDot;\n path += key;\n }\n else {\n path += strBracketLeft;\n path += key;\n path += strBracketRight;\n }\n }\n else {\n path = key;\n }\n if (!firstKey) {\n result += strDelimiter;\n }\n if (typeof value === 'object' &&\n value !== null &&\n !shouldSerializeObject(value)) {\n valueIsProbableArray = value.pop !== undefined;\n if (nesting || (arrayRepeat && valueIsProbableArray)) {\n result += stringifyObject(value, options, depth + 1, path, valueIsProbableArray);\n }\n }\n else {\n result += encodeString(path);\n result += '=';\n result += valueSerializer(value, key);\n }\n if (firstKey) {\n firstKey = false;\n }\n }\n return result;\n}\n" + ], + "sourceRoot": "" + }, + "url": null + }, + "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/picoquery/lib/shared.js": { + "lineLengths": [119, 1953, 4, 0, 2502], + "data": { + "version": 3, + "mappings": ";suBAAA,sQAA6B,4BACtB,MAAM,uBAAyB,OAAC,OAAU,CAC7C,OAAQ,OAAO,MAAO,CAClB,IAAK,SAED,SAAO,iCAAa,KAAK,EAC7B,IAAK,SACL,IAAK,UACD,MAAO,GAAK,MAChB,IAAK,SACD,GAAI,OAAO,SAAS,KAAK,EAAG,CACxB,OAAO,MAAQ,KAAO,GAAK,SAAQ,iCAAa,GAAK,KAAK,CAC9D,CACA,KACR,CACA,GAAI,iBAAiB,KAAM,CACvB,SAAO,iCAAa,MAAM,YAAY,CAAC,CAC3C,CACA,MAAO,EACX,EAlBsC,0BAmB/B,MAAM,6BAA+B,OAAC,KAAQ,CACjD,OAAO,eAAe,IAC1B,EAF4C,gCAG5C,MAAM,aAAe,OAAC,GAAM,EAAP,gBACd,MAAM,eAAiB,CAC1B,QAAS,KACT,cAAe,MACf,YAAa,MACb,kBAAmB,SACnB,UAAW,GACX,kBAAmB,aACnB,gBAAiB,uBACjB,gBAAiB,aACjB,sBAAuB,4BAC3B", + "names": [], + "ignoreList": [], + "sources": [ + "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/picoquery/lib/shared.js" + ], + "sourcesContent": [ + "import { encodeString } from './string-util.js';\nexport const defaultValueSerializer = (value) => {\n switch (typeof value) {\n case 'string':\n // Length check is handled inside encodeString function\n return encodeString(value);\n case 'bigint':\n case 'boolean':\n return '' + value;\n case 'number':\n if (Number.isFinite(value)) {\n return value < 1e21 ? '' + value : encodeString('' + value);\n }\n break;\n }\n if (value instanceof Date) {\n return encodeString(value.toISOString());\n }\n return '';\n};\nexport const defaultShouldSerializeObject = (val) => {\n return val instanceof Date;\n};\nconst identityFunc = (v) => v;\nexport const defaultOptions = {\n nesting: true,\n nestingSyntax: 'dot',\n arrayRepeat: false,\n arrayRepeatSyntax: 'repeat',\n delimiter: 38,\n valueDeserializer: identityFunc,\n valueSerializer: defaultValueSerializer,\n keyDeserializer: identityFunc,\n shouldSerializeObject: defaultShouldSerializeObject\n};\n" + ], + "sourceRoot": "" + }, + "url": null + }, + "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/picoquery/lib/string-util.js": { + "lineLengths": [124, 2141, 4, 0, 6606], + "data": { + "version": 3, + "mappings": ";suBAAA,0IAEA,MAAM,SAAW,MAAM,KAAK,CAAE,OAAQ,GAAI,EAAG,CAAC,EAAG,IAAM,MAAQ,EAAI,GAAK,IAAM,IAAM,EAAE,SAAS,EAAE,GAAG,YAAY,CAAC,EAOjH,MAAM,SAAW,IAAI,UAAU,CAC3B,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAC3E,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAC3E,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAC3E,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAC3E,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,CACzE,CAAC,EAKM,SAAS,aAAa,IAAK,CAC9B,MAAM,IAAM,IAAI,OAChB,GAAI,MAAQ,EAAG,CACX,MAAO,EACX,CACA,IAAI,IAAM,GACV,IAAI,QAAU,EACd,IAAI,EAAI,EACR,MAAO,KAAO,EAAI,IAAK,IAAK,CACxB,IAAI,EAAI,IAAI,WAAW,CAAC,EAExB,MAAO,EAAI,IAAM,CACb,GAAI,SAAS,CAAC,IAAM,EAAG,CACnB,GAAI,QAAU,EACV,KAAO,IAAI,MAAM,QAAS,CAAC,EAC/B,QAAU,EAAI,EACd,KAAO,SAAS,CAAC,CACrB,CACA,GAAI,EAAE,IAAM,IACR,MAAM,MACV,EAAI,IAAI,WAAW,CAAC,CACxB,CACA,GAAI,QAAU,EACV,KAAO,IAAI,MAAM,QAAS,CAAC,EAE/B,GAAI,EAAI,KAAO,CACX,QAAU,EAAI,EACd,KAAO,SAAS,IAAQ,GAAK,CAAE,EAAI,SAAS,IAAQ,EAAI,EAAK,EAC7D,QACJ,CACA,GAAI,EAAI,OAAU,GAAK,MAAQ,CAC3B,QAAU,EAAI,EACd,KACI,SAAS,IAAQ,GAAK,EAAG,EACrB,SAAS,IAAS,GAAK,EAAK,EAAK,EACjC,SAAS,IAAQ,EAAI,EAAK,EAClC,QACJ,CAEA,EAAE,EAIF,GAAI,GAAK,IAAK,CACV,MAAM,IAAI,MAAM,eAAe,CACnC,CACA,MAAM,GAAK,IAAI,WAAW,CAAC,EAAI,KAC/B,QAAU,EAAI,EACd,EAAI,QAAa,EAAI,OAAU,GAAM,IACrC,KACI,SAAS,IAAQ,GAAK,EAAG,EACrB,SAAS,IAAS,GAAK,GAAM,EAAK,EAClC,SAAS,IAAS,GAAK,EAAK,EAAK,EACjC,SAAS,IAAQ,EAAI,EAAK,CACtC,CACA,GAAI,UAAY,EACZ,OAAO,IACX,GAAI,QAAU,IACV,OAAO,IAAM,IAAI,MAAM,OAAO,EAClC,OAAO,GACX,CA5DgB", + "names": [], + "ignoreList": [], + "sources": [ + "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/picoquery/lib/string-util.js" + ], + "sourcesContent": [ + "// This function is taken from Node.js project.\n// Full implementation can be found from https://github.com/nodejs/node/blob/main/lib/internal/querystring.js\nconst hexTable = Array.from({ length: 256 }, (_, i) => '%' + ((i < 16 ? '0' : '') + i.toString(16)).toUpperCase());\n// These characters do not need escaping when generating query strings:\n// ! - . _ ~\n// ' ( ) *\n// digits\n// alpha (uppercase)\n// alpha (lowercase)\nconst noEscape = new Int8Array([\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 1, 1, 0, 1, 1, 1, 1,\n 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,\n 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1,\n 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 0\n]);\n/**\n * @param {string} str\n * @returns {string}\n */\nexport function encodeString(str) {\n const len = str.length;\n if (len === 0) {\n return '';\n }\n let out = '';\n let lastPos = 0;\n let i = 0;\n outer: for (; i < len; i++) {\n let c = str.charCodeAt(i);\n // ASCII\n while (c < 0x80) {\n if (noEscape[c] !== 1) {\n if (lastPos < i)\n out += str.slice(lastPos, i);\n lastPos = i + 1;\n out += hexTable[c];\n }\n if (++i === len)\n break outer;\n c = str.charCodeAt(i);\n }\n if (lastPos < i)\n out += str.slice(lastPos, i);\n // Multi-byte characters ...\n if (c < 0x800) {\n lastPos = i + 1;\n out += hexTable[0xc0 | (c >> 6)] + hexTable[0x80 | (c & 0x3f)];\n continue;\n }\n if (c < 0xd800 || c >= 0xe000) {\n lastPos = i + 1;\n out +=\n hexTable[0xe0 | (c >> 12)] +\n hexTable[0x80 | ((c >> 6) & 0x3f)] +\n hexTable[0x80 | (c & 0x3f)];\n continue;\n }\n // Surrogate pair\n ++i;\n // This branch should never happen because all URLSearchParams entries\n // should already be converted to USVString. But, included for\n // completion's sake anyway.\n if (i >= len) {\n throw new Error('URI malformed');\n }\n const c2 = str.charCodeAt(i) & 0x3ff;\n lastPos = i + 1;\n c = 0x10000 + (((c & 0x3ff) << 10) | c2);\n out +=\n hexTable[0xf0 | (c >> 18)] +\n hexTable[0x80 | ((c >> 12) & 0x3f)] +\n hexTable[0x80 | ((c >> 6) & 0x3f)] +\n hexTable[0x80 | (c & 0x3f)];\n }\n if (lastPos === 0)\n return str;\n if (lastPos < len)\n return out + str.slice(lastPos);\n return out;\n}\n" + ], + "sourceRoot": "" + }, + "url": null + }, + "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/picoquery/lib/decode-uri-component.js": { + "lineLengths": [133, 3057, 4, 0, 9142], + "data": { + "version": 3, + "mappings": ";suBAAA,uLAAM,YAAc,GACpB,MAAM,YAAc,EACpB,MAAM,UAAY,CAEd,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAC3E,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAC3E,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAC3E,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAC3E,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAC3E,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAC3E,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAC3E,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAC3E,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAC3E,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,GAAI,EAAG,EAAG,EAAG,GAAI,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAGjE,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,GAAI,EAAG,EAAG,EAAG,EAAG,GAAI,GAAI,GAAI,GAAI,GAAI,GACxE,GAAI,EAAG,GAAI,GAAI,GAAI,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,GAAI,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAC1E,EAAG,EAAG,GAAI,GAAI,GAAI,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,GAAI,GAAI,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAC1E,EAAG,EAAG,GAAI,GAAI,GAAI,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,GAAI,GAAI,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAC1E,EAAG,EAAG,GAAI,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAGrC,IAAM,GAAM,GAAM,GAAM,EAAM,GAAM,GAAM,GAAM,GAAM,EAAM,EAAM,CACtE,EACO,SAAS,mBAAmB,IAAK,CACpC,IAAI,gBAAkB,IAAI,QAAQ,GAAG,EACrC,GAAI,kBAAoB,GAAI,CACxB,OAAO,GACX,CACA,MAAM,OAAS,IAAI,OACnB,IAAI,QAAU,GACd,IAAI,KAAO,EACX,IAAI,UAAY,EAChB,IAAI,cAAgB,gBACpB,IAAI,MAAQ,YACZ,MAAO,gBAAkB,IAAM,gBAAkB,OAAQ,CACrD,MAAM,KAAO,aAAa,IAAI,gBAAkB,CAAC,EAAG,CAAC,EACrD,MAAM,IAAM,aAAa,IAAI,gBAAkB,CAAC,EAAG,CAAC,EACpD,MAAM,KAAO,KAAO,IACpB,MAAM,KAAO,UAAU,IAAI,EAC3B,MAAQ,UAAU,IAAM,MAAQ,IAAI,EACpC,UAAa,WAAa,EAAM,KAAO,UAAU,IAAM,IAAI,EAC3D,GAAI,QAAU,YAAa,CACvB,SAAW,IAAI,MAAM,KAAM,aAAa,EACxC,SACI,WAAa,MACP,OAAO,aAAa,SAAS,EAC7B,OAAO,aAAa,OAAU,WAAa,IAAK,OAAU,UAAY,KAAM,EACtF,UAAY,EACZ,KAAO,gBAAkB,EACzB,gBAAkB,cAAgB,IAAI,QAAQ,IAAK,IAAI,CAC3D,SACS,QAAU,YAAa,CAC5B,OAAO,IACX,KACK,CACD,iBAAmB,EACnB,GAAI,gBAAkB,QAAU,IAAI,WAAW,eAAe,IAAM,GAChE,SACJ,OAAO,IACX,CACJ,CACA,OAAO,QAAU,IAAI,MAAM,IAAI,CACnC,CAvCgB,gDAwChB,MAAM,IAAM,CACR,IAAK,EACL,IAAK,EACL,IAAK,EACL,IAAK,EACL,IAAK,EACL,IAAK,EACL,IAAK,EACL,IAAK,EACL,IAAK,EACL,IAAK,EACL,EAAG,GACH,EAAG,GACH,EAAG,GACH,EAAG,GACH,EAAG,GACH,EAAG,GACH,EAAG,GACH,EAAG,GACH,EAAG,GACH,EAAG,GACH,EAAG,GACH,EAAG,EACP,EACA,SAAS,aAAa,EAAG,MAAO,CAC5B,MAAM,EAAI,IAAI,CAAC,EACf,OAAO,IAAM,OAAY,IAAM,GAAK,KACxC,CAHS", + "names": [], + "ignoreList": [], + "sources": [ + "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/picoquery/lib/decode-uri-component.js" + ], + "sourcesContent": [ + "const UTF8_ACCEPT = 12;\nconst UTF8_REJECT = 0;\nconst UTF8_DATA = [\n // The first part of the table maps bytes to character to a transition.\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1,\n 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,\n 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,\n 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,\n 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7,\n 7, 7, 7, 8, 7, 7, 10, 9, 9, 9, 11, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,\n // The second part of the table maps a state to a new state when adding a\n // transition.\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 24, 36, 48, 60, 72, 84,\n 96, 0, 12, 12, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 24, 24, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 24, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 48, 48, 48, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48, 48, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 48, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n // The third part maps the current transition to a mask that needs to apply\n // to the byte.\n 0x7f, 0x3f, 0x3f, 0x3f, 0x00, 0x1f, 0x0f, 0x0f, 0x0f, 0x07, 0x07, 0x07\n];\nexport function decodeURIComponent(uri) {\n let percentPosition = uri.indexOf('%');\n if (percentPosition === -1) {\n return uri;\n }\n const length = uri.length;\n let decoded = '';\n let last = 0;\n let codepoint = 0;\n let startOfOctets = percentPosition;\n let state = UTF8_ACCEPT;\n while (percentPosition > -1 && percentPosition < length) {\n const high = hexCodeToInt(uri[percentPosition + 1], 4);\n const low = hexCodeToInt(uri[percentPosition + 2], 0);\n const byte = high | low;\n const type = UTF8_DATA[byte];\n state = UTF8_DATA[256 + state + type];\n codepoint = (codepoint << 6) | (byte & UTF8_DATA[364 + type]);\n if (state === UTF8_ACCEPT) {\n decoded += uri.slice(last, startOfOctets);\n decoded +=\n codepoint <= 0xffff\n ? String.fromCharCode(codepoint)\n : String.fromCharCode(0xd7c0 + (codepoint >> 10), 0xdc00 + (codepoint & 0x3ff));\n codepoint = 0;\n last = percentPosition + 3;\n percentPosition = startOfOctets = uri.indexOf('%', last);\n }\n else if (state === UTF8_REJECT) {\n return null;\n }\n else {\n percentPosition += 3;\n if (percentPosition < length && uri.charCodeAt(percentPosition) === 37)\n continue;\n return null;\n }\n }\n return decoded + uri.slice(last);\n}\nconst HEX = {\n '0': 0,\n '1': 1,\n '2': 2,\n '3': 3,\n '4': 4,\n '5': 5,\n '6': 6,\n '7': 7,\n '8': 8,\n '9': 9,\n a: 10,\n A: 10,\n b: 11,\n B: 11,\n c: 12,\n C: 12,\n d: 13,\n D: 13,\n e: 14,\n E: 14,\n f: 15,\n F: 15\n};\nfunction hexCodeToInt(c, shift) {\n const i = HEX[c];\n return i === undefined ? 255 : i << shift;\n}\n" + ], + "sourceRoot": "" + }, + "url": null + }, + "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/picoquery/lib/stringify.js": { + "lineLengths": [122, 1158, 4, 0, 1062], + "data": { + "version": 3, + "mappings": ";suBAAA,qJAAgC,4BAMzB,SAAS,UAAU,MAAO,QAAS,CACtC,GAAI,QAAU,MAAQ,OAAO,QAAU,SAAU,CAC7C,MAAO,EACX,CACA,MAAM,WAAa,SAAW,CAAC,EAC/B,SAAO,oCAAgB,MAAO,UAAU,CAC5C,CANgB", + "names": [], + "ignoreList": [], + "sources": [ + "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/picoquery/lib/stringify.js" + ], + "sourcesContent": [ + "import { stringifyObject } from './object-util.js';\n/**\n * @param {unknown} input Object to stringify\n * @param {StringifyOptions=} options Stringify options\n * @returns {string}\n */\nexport function stringify(input, options) {\n if (input === null || typeof input !== 'object') {\n return '';\n }\n const optionsObj = options ?? {};\n return stringifyObject(input, optionsObj);\n}\n" + ], + "sourceRoot": "" + }, + "url": null + }, + "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/cookie/dist/index.js": { + "lineLengths": [ + 13, 62, 34, 28, 42, 48, 39, 40, 48, 39, 3, 52, 75, 74, 2, 28, 30, 58, 58, 54, 2, 79, 76, 3, + 65, 3, 53, 2, 70, 67, 60, 61, 38, 2, 72, 70, 3, 60, 3, 53, 2, 34, 62, 59, 56, 60, 60, 76, + 62, 38, 41, 77, 63, 60, 2, 76, 2, 77, 74, 49, 3, 112, 3, 51, 2, 52, 30, 57, 3, 58, 3, 54, 3, + 31, 45, 43, 30, 38, 13, 5, 3, 27, 2, 54, 62, 3, 36, 33, 27, 101, 16, 19, 42, 18, 8, 47, 25, + 43, 49, 29, 43, 56, 21, 9, 50, 27, 37, 63, 9, 27, 26, 15, 1, 3, 54, 3, 43, 54, 29, 45, 33, + 30, 21, 43, 67, 9, 31, 45, 65, 9, 47, 5, 36, 1, 49, 44, 15, 57, 60, 54, 46, 72, 5, 56, 41, + 72, 5, 40, 38, 47, 78, 9, 44, 5, 24, 53, 78, 9, 43, 5, 22, 49, 74, 9, 39, 5, 25, 84, 80, 9, + 59, 5, 26, 28, 5, 24, 26, 5, 29, 31, 5, 26, 60, 43, 24, 27, 23, 40, 22, 26, 43, 22, 24, 41, + 22, 20, 86, 9, 5, 26, 60, 43, 30, 27, 22, 26, 43, 22, 23, 40, 22, 24, 41, 22, 20, 86, 9, 5, + 15, 1, 3, 52, 2, 35, 53, 3, 39, 42, 27, 41, 42, 34, 62, 11, 44, 59, 10, 27, 25, 49, 50, 33, + 44, 44, 82, 37, 28, 42, 22, 26, 40, 22, 31, 45, 22, 26, 39, 22, 24, 37, 22, 27, 50, 51, 22, + 27, 25, 26, 43, 52, 45, 22, 28, 25, 26, 51, 41, 44, 42, 50, 17, 22, 28, 25, 26, 51, 41, 44, + 42, 50, 17, 22, 9, 27, 5, 21, 1, 3, 57, 3, 34, 40, 38, 1, 3, 57, 3, 33, 40, 36, 1, 3, 45, 3, + 36, 20, 18, 8, 43, 60, 18, 28, 25, 45, 60, 18, 14, 5, 33, 1, 3, 68, 3, 22, 32, 19, 9, 39, 5, + 15, 19, 5, 1, 3, 32, 3, 22, 52, 1, 33 + ], + "data": { + "version": 3, + "file": "index.js", + "sourceRoot": "", + "sources": [ + "file:///Users/yasser/git/pikku/fabric/templates/kanban-board-template/node_modules/cookie/src/index.ts" + ], + "names": [], + "mappings": ";;AA2GA,kCAgCC;AAmZwD,4BAAK;AAnY9D,0CAyBC;AA2GD,gDA8GC;AAiJ8B,uCAAS;AAzIxC,wCA2EC;AA1MD,gDAGU;AAqQqB,uCAAS;AA9hBxC;;;;;;;;;;;;;GAaG;AACH,MAAM,gBAAgB,GAAG,uCAAuC,CAAC;AAEjE;;;;;;;;;;;GAWG;AACH,MAAM,iBAAiB,GAAG,iCAAiC,CAAC;AAE5D;;;;;;;;;;;;;;;;;;;;;;GAsBG;AACH,MAAM,iBAAiB,GACrB,qFAAqF,CAAC;AAExF;;;;;;GAMG;AACH,MAAM,eAAe,GAAG,iCAAiC,CAAC;AAE1D;;GAEG;AACH,MAAM,YAAY,GAAG,SAAS,CAAC;AAE/B,MAAM,UAAU,GAAG,MAAM,CAAC,SAAS,CAAC,QAAQ,CAAC;AAE7C,MAAM,UAAU,GAAG,eAAe,CAAC,CAAC,GAAG,EAAE;IACvC,MAAM,CAAC,GAAG,cAAa,CAAC,CAAC;IACzB,CAAC,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;IAClC,OAAO,CAAC,CAAC;AACX,CAAC,CAAC,EAAgC,CAAC;AAyBnC;;;;;GAKG;AACH,SAAgB,WAAW,CAAC,GAAW,EAAE,OAAsB;IAC7D,MAAM,GAAG,GAAY,IAAI,UAAU,EAAE,CAAC;IACtC,MAAM,GAAG,GAAG,GAAG,CAAC,MAAM,CAAC;IACvB,iGAAiG;IACjG,IAAI,GAAG,GAAG,CAAC;QAAE,OAAO,GAAG,CAAC;IAExB,MAAM,GAAG,GAAG,OAAO,EAAE,MAAM,IAAI,MAAM,CAAC;IACtC,IAAI,KAAK,GAAG,CAAC,CAAC;IAEd,GAAG,CAAC;QACF,MAAM,KAAK,GAAG,OAAO,CAAC,GAAG,EAAE,KAAK,EAAE,GAAG,CAAC,CAAC;QACvC,IAAI,KAAK,KAAK,CAAC,CAAC;YAAE,MAAM,CAAC,wBAAwB;QAEjD,MAAM,MAAM,GAAG,QAAQ,CAAC,GAAG,EAAE,KAAK,EAAE,GAAG,CAAC,CAAC;QAEzC,IAAI,KAAK,GAAG,MAAM,EAAE,CAAC;YACnB,+BAA+B;YAC/B,KAAK,GAAG,GAAG,CAAC,WAAW,CAAC,GAAG,EAAE,KAAK,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC;YAC5C,SAAS;QACX,CAAC;QAED,MAAM,GAAG,GAAG,UAAU,CAAC,GAAG,EAAE,KAAK,EAAE,KAAK,CAAC,CAAC;QAE1C,mBAAmB;QACnB,IAAI,GAAG,CAAC,GAAG,CAAC,KAAK,SAAS,EAAE,CAAC;YAC3B,GAAG,CAAC,GAAG,CAAC,GAAG,GAAG,CAAC,UAAU,CAAC,GAAG,EAAE,KAAK,GAAG,CAAC,EAAE,MAAM,CAAC,CAAC,CAAC;QACrD,CAAC;QAED,KAAK,GAAG,MAAM,GAAG,CAAC,CAAC;IACrB,CAAC,QAAQ,KAAK,GAAG,GAAG,EAAE;IAEtB,OAAO,GAAG,CAAC;AACb,CAAC;AAaD;;GAEG;AACH,SAAgB,eAAe,CAC7B,MAAe,EACf,OAA0B;IAE1B,MAAM,GAAG,GAAG,OAAO,EAAE,MAAM,IAAI,kBAAkB,CAAC;IAClD,MAAM,aAAa,GAAa,EAAE,CAAC;IAEnC,KAAK,MAAM,IAAI,IAAI,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,EAAE,CAAC;QACvC,MAAM,GAAG,GAAG,MAAM,CAAC,IAAI,CAAC,CAAC;QACzB,IAAI,GAAG,KAAK,SAAS;YAAE,SAAS;QAEhC,IAAI,CAAC,gBAAgB,CAAC,IAAI,CAAC,IAAI,CAAC,EAAE,CAAC;YACjC,MAAM,IAAI,SAAS,CAAC,2BAA2B,IAAI,EAAE,CAAC,CAAC;QACzD,CAAC;QAED,MAAM,KAAK,GAAG,GAAG,CAAC,GAAG,CAAC,CAAC;QAEvB,IAAI,CAAC,iBAAiB,CAAC,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC;YACnC,MAAM,IAAI,SAAS,CAAC,0BAA0B,GAAG,EAAE,CAAC,CAAC;QACvD,CAAC;QAED,aAAa,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,KAAK,EAAE,CAAC,CAAC;IACzC,CAAC;IAED,OAAO,aAAa,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;AAClC,CAAC;AA2GD,SAAgB,kBAAkB,CAChC,KAAyB,EACzB,IAAgC,EAChC,KAAwB;IAExB,MAAM,MAAM,GACV,OAAO,KAAK,KAAK,QAAQ;QACvB,CAAC,CAAC,KAAK;QACP,CAAC,CAAC,EAAE,GAAG,KAAK,EAAE,IAAI,EAAE,KAAK,EAAE,KAAK,EAAE,MAAM,CAAC,IAAI,CAAC,EAAE,CAAC;IACrD,MAAM,OAAO,GAAG,OAAO,IAAI,KAAK,QAAQ,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK,CAAC;IACxD,MAAM,GAAG,GAAG,OAAO,EAAE,MAAM,IAAI,kBAAkB,CAAC;IAElD,IAAI,CAAC,gBAAgB,CAAC,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,EAAE,CAAC;QACxC,MAAM,IAAI,SAAS,CAAC,6BAA6B,MAAM,CAAC,IAAI,EAAE,CAAC,CAAC;IAClE,CAAC;IAED,MAAM,KAAK,GAAG,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC;IAEpD,IAAI,CAAC,iBAAiB,CAAC,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC;QACnC,MAAM,IAAI,SAAS,CAAC,4BAA4B,MAAM,CAAC,KAAK,EAAE,CAAC,CAAC;IAClE,CAAC;IAED,IAAI,GAAG,GAAG,MAAM,CAAC,IAAI,GAAG,GAAG,GAAG,KAAK,CAAC;IAEpC,IAAI,MAAM,CAAC,MAAM,KAAK,SAAS,EAAE,CAAC;QAChC,IAAI,CAAC,MAAM,CAAC,SAAS,CAAC,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC;YACrC,MAAM,IAAI,SAAS,CAAC,6BAA6B,MAAM,CAAC,MAAM,EAAE,CAAC,CAAC;QACpE,CAAC;QAED,GAAG,IAAI,YAAY,GAAG,MAAM,CAAC,MAAM,CAAC;IACtC,CAAC;IAED,IAAI,MAAM,CAAC,MAAM,EAAE,CAAC;QAClB,IAAI,CAAC,iBAAiB,CAAC,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC;YAC3C,MAAM,IAAI,SAAS,CAAC,6BAA6B,MAAM,CAAC,MAAM,EAAE,CAAC,CAAC;QACpE,CAAC;QAED,GAAG,IAAI,WAAW,GAAG,MAAM,CAAC,MAAM,CAAC;IACrC,CAAC;IAED,IAAI,MAAM,CAAC,IAAI,EAAE,CAAC;QAChB,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,EAAE,CAAC;YACvC,MAAM,IAAI,SAAS,CAAC,2BAA2B,MAAM,CAAC,IAAI,EAAE,CAAC,CAAC;QAChE,CAAC;QAED,GAAG,IAAI,SAAS,GAAG,MAAM,CAAC,IAAI,CAAC;IACjC,CAAC;IAED,IAAI,MAAM,CAAC,OAAO,EAAE,CAAC;QACnB,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,MAAM,CAAC,OAAO,CAAC,OAAO,EAAE,CAAC,EAAE,CAAC;YAC1E,MAAM,IAAI,SAAS,CAAC,8BAA8B,MAAM,CAAC,OAAO,EAAE,CAAC,CAAC;QACtE,CAAC;QAED,GAAG,IAAI,YAAY,GAAG,MAAM,CAAC,OAAO,CAAC,WAAW,EAAE,CAAC;IACrD,CAAC;IAED,IAAI,MAAM,CAAC,QAAQ,EAAE,CAAC;QACpB,GAAG,IAAI,YAAY,CAAC;IACtB,CAAC;IAED,IAAI,MAAM,CAAC,MAAM,EAAE,CAAC;QAClB,GAAG,IAAI,UAAU,CAAC;IACpB,CAAC;IAED,IAAI,MAAM,CAAC,WAAW,EAAE,CAAC;QACvB,GAAG,IAAI,eAAe,CAAC;IACzB,CAAC;IAED,IAAI,MAAM,CAAC,QAAQ,EAAE,CAAC;QACpB,MAAM,QAAQ,GACZ,OAAO,MAAM,CAAC,QAAQ,KAAK,QAAQ;YACjC,CAAC,CAAC,MAAM,CAAC,QAAQ,CAAC,WAAW,EAAE;YAC/B,CAAC,CAAC,SAAS,CAAC;QAChB,QAAQ,QAAQ,EAAE,CAAC;YACjB,KAAK,KAAK;gBACR,GAAG,IAAI,gBAAgB,CAAC;gBACxB,MAAM;YACR,KAAK,QAAQ;gBACX,GAAG,IAAI,mBAAmB,CAAC;gBAC3B,MAAM;YACR,KAAK,MAAM;gBACT,GAAG,IAAI,iBAAiB,CAAC;gBACzB,MAAM;YACR;gBACE,MAAM,IAAI,SAAS,CAAC,+BAA+B,MAAM,CAAC,QAAQ,EAAE,CAAC,CAAC;QAC1E,CAAC;IACH,CAAC;IAED,IAAI,MAAM,CAAC,QAAQ,EAAE,CAAC;QACpB,MAAM,QAAQ,GACZ,OAAO,MAAM,CAAC,QAAQ,KAAK,QAAQ;YACjC,CAAC,CAAC,MAAM,CAAC,QAAQ,CAAC,WAAW,EAAE;YAC/B,CAAC,CAAC,MAAM,CAAC,QAAQ,CAAC;QACtB,QAAQ,QAAQ,EAAE,CAAC;YACjB,KAAK,IAAI,CAAC;YACV,KAAK,QAAQ;gBACX,GAAG,IAAI,mBAAmB,CAAC;gBAC3B,MAAM;YACR,KAAK,KAAK;gBACR,GAAG,IAAI,gBAAgB,CAAC;gBACxB,MAAM;YACR,KAAK,MAAM;gBACT,GAAG,IAAI,iBAAiB,CAAC;gBACzB,MAAM;YACR;gBACE,MAAM,IAAI,SAAS,CAAC,+BAA+B,MAAM,CAAC,QAAQ,EAAE,CAAC,CAAC;QAC1E,CAAC;IACH,CAAC;IAED,OAAO,GAAG,CAAC;AACb,CAAC;AAED;;;;;GAKG;AACH,SAAgB,cAAc,CAAC,GAAW,EAAE,OAAsB;IAChE,MAAM,GAAG,GAAG,OAAO,EAAE,MAAM,IAAI,MAAM,CAAC;IACtC,MAAM,GAAG,GAAG,GAAG,CAAC,MAAM,CAAC;IACvB,MAAM,MAAM,GAAG,QAAQ,CAAC,GAAG,EAAE,CAAC,EAAE,GAAG,CAAC,CAAC;IACrC,MAAM,KAAK,GAAG,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,MAAM,CAAC,CAAC;IACtC,MAAM,SAAS,GACb,KAAK,KAAK,CAAC,CAAC;QACV,CAAC,CAAC,EAAE,IAAI,EAAE,EAAE,EAAE,KAAK,EAAE,GAAG,CAAC,UAAU,CAAC,GAAG,EAAE,CAAC,EAAE,MAAM,CAAC,CAAC,EAAE;QACtD,CAAC,CAAC;YACE,IAAI,EAAE,UAAU,CAAC,GAAG,EAAE,CAAC,EAAE,KAAK,CAAC;YAC/B,KAAK,EAAE,GAAG,CAAC,UAAU,CAAC,GAAG,EAAE,KAAK,GAAG,CAAC,EAAE,MAAM,CAAC,CAAC;SAC/C,CAAC;IAER,IAAI,KAAK,GAAG,MAAM,GAAG,CAAC,CAAC;IACvB,OAAO,KAAK,GAAG,GAAG,EAAE,CAAC;QACnB,MAAM,MAAM,GAAG,QAAQ,CAAC,GAAG,EAAE,KAAK,EAAE,GAAG,CAAC,CAAC;QACzC,MAAM,KAAK,GAAG,OAAO,CAAC,GAAG,EAAE,KAAK,EAAE,MAAM,CAAC,CAAC;QAC1C,MAAM,IAAI,GACR,KAAK,KAAK,CAAC,CAAC;YACV,CAAC,CAAC,UAAU,CAAC,GAAG,EAAE,KAAK,EAAE,MAAM,CAAC;YAChC,CAAC,CAAC,UAAU,CAAC,GAAG,EAAE,KAAK,EAAE,KAAK,CAAC,CAAC;QACpC,MAAM,GAAG,GAAG,KAAK,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,UAAU,CAAC,GAAG,EAAE,KAAK,GAAG,CAAC,EAAE,MAAM,CAAC,CAAC;QAE1E,QAAQ,IAAI,CAAC,WAAW,EAAE,EAAE,CAAC;YAC3B,KAAK,UAAU;gBACb,SAAS,CAAC,QAAQ,GAAG,IAAI,CAAC;gBAC1B,MAAM;YACR,KAAK,QAAQ;gBACX,SAAS,CAAC,MAAM,GAAG,IAAI,CAAC;gBACxB,MAAM;YACR,KAAK,aAAa;gBAChB,SAAS,CAAC,WAAW,GAAG,IAAI,CAAC;gBAC7B,MAAM;YACR,KAAK,QAAQ;gBACX,SAAS,CAAC,MAAM,GAAG,GAAG,CAAC;gBACvB,MAAM;YACR,KAAK,MAAM;gBACT,SAAS,CAAC,IAAI,GAAG,GAAG,CAAC;gBACrB,MAAM;YACR,KAAK,SAAS;gBACZ,IAAI,GAAG,IAAI,YAAY,CAAC,IAAI,CAAC,GAAG,CAAC;oBAAE,SAAS,CAAC,MAAM,GAAG,MAAM,CAAC,GAAG,CAAC,CAAC;gBAClE,MAAM;YACR,KAAK,SAAS;gBACZ,IAAI,CAAC,GAAG;oBAAE,MAAM;gBAChB,MAAM,IAAI,GAAG,IAAI,IAAI,CAAC,GAAG,CAAC,CAAC;gBAC3B,IAAI,MAAM,CAAC,QAAQ,CAAC,IAAI,CAAC,OAAO,EAAE,CAAC;oBAAE,SAAS,CAAC,OAAO,GAAG,IAAI,CAAC;gBAC9D,MAAM;YACR,KAAK,UAAU;gBACb,IAAI,CAAC,GAAG;oBAAE,MAAM;gBAChB,MAAM,QAAQ,GAAG,GAAG,CAAC,WAAW,EAAE,CAAC;gBACnC,IACE,QAAQ,KAAK,KAAK;oBAClB,QAAQ,KAAK,QAAQ;oBACrB,QAAQ,KAAK,MAAM,EACnB,CAAC;oBACD,SAAS,CAAC,QAAQ,GAAG,QAAQ,CAAC;gBAChC,CAAC;gBACD,MAAM;YACR,KAAK,UAAU;gBACb,IAAI,CAAC,GAAG;oBAAE,MAAM;gBAChB,MAAM,QAAQ,GAAG,GAAG,CAAC,WAAW,EAAE,CAAC;gBACnC,IACE,QAAQ,KAAK,KAAK;oBAClB,QAAQ,KAAK,QAAQ;oBACrB,QAAQ,KAAK,MAAM,EACnB,CAAC;oBACD,SAAS,CAAC,QAAQ,GAAG,QAAQ,CAAC;gBAChC,CAAC;gBACD,MAAM;QACV,CAAC;QAED,KAAK,GAAG,MAAM,GAAG,CAAC,CAAC;IACrB,CAAC;IAED,OAAO,SAAS,CAAC;AACnB,CAAC;AAED;;GAEG;AACH,SAAS,QAAQ,CAAC,GAAW,EAAE,GAAW,EAAE,GAAW;IACrD,MAAM,KAAK,GAAG,GAAG,CAAC,OAAO,CAAC,GAAG,EAAE,GAAG,CAAC,CAAC;IACpC,OAAO,KAAK,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,KAAK,CAAC;AACpC,CAAC;AAED;;GAEG;AACH,SAAS,OAAO,CAAC,GAAW,EAAE,GAAW,EAAE,GAAW;IACpD,MAAM,KAAK,GAAG,GAAG,CAAC,OAAO,CAAC,GAAG,EAAE,GAAG,CAAC,CAAC;IACpC,OAAO,KAAK,GAAG,GAAG,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAClC,CAAC;AAED;;GAEG;AACH,SAAS,UAAU,CAAC,GAAW,EAAE,GAAW,EAAE,GAAW;IACvD,IAAI,KAAK,GAAG,GAAG,CAAC;IAChB,IAAI,GAAG,GAAG,GAAG,CAAC;IAEd,GAAG,CAAC;QACF,MAAM,IAAI,GAAG,GAAG,CAAC,UAAU,CAAC,KAAK,CAAC,CAAC;QACnC,IAAI,IAAI,KAAK,IAAI,CAAC,OAAO,IAAI,IAAI,KAAK,IAAI,CAAC,QAAQ;YAAE,MAAM;IAC7D,CAAC,QAAQ,EAAE,KAAK,GAAG,GAAG,EAAE;IAExB,OAAO,GAAG,GAAG,KAAK,EAAE,CAAC;QACnB,MAAM,IAAI,GAAG,GAAG,CAAC,UAAU,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC;QACrC,IAAI,IAAI,KAAK,IAAI,CAAC,OAAO,IAAI,IAAI,KAAK,IAAI,CAAC,QAAQ;YAAE,MAAM;QAC3D,GAAG,EAAE,CAAC;IACR,CAAC;IAED,OAAO,GAAG,CAAC,KAAK,CAAC,KAAK,EAAE,GAAG,CAAC,CAAC;AAC/B,CAAC;AAED;;GAEG;AACH,SAAS,MAAM,CAAC,GAAW;IACzB,IAAI,GAAG,CAAC,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC;QAAE,OAAO,GAAG,CAAC;IAExC,IAAI,CAAC;QACH,OAAO,kBAAkB,CAAC,GAAG,CAAC,CAAC;IACjC,CAAC;IAAC,OAAO,CAAC,EAAE,CAAC;QACX,OAAO,GAAG,CAAC;IACb,CAAC;AACH,CAAC;AAED;;GAEG;AACH,SAAS,MAAM,CAAC,GAAQ;IACtB,OAAO,UAAU,CAAC,IAAI,CAAC,GAAG,CAAC,KAAK,eAAe,CAAC;AAClD,CAAC", + "sourcesContent": [ + "/**\n * RegExp to match cookie-name in RFC 6265 sec 4.1.1\n * This refers out to the obsoleted definition of token in RFC 2616 sec 2.2\n * which has been replaced by the token definition in RFC 7230 appendix B.\n *\n * cookie-name = token\n * token = 1*tchar\n * tchar = \"!\" / \"#\" / \"$\" / \"%\" / \"&\" / \"'\" /\n * \"*\" / \"+\" / \"-\" / \".\" / \"^\" / \"_\" /\n * \"`\" / \"|\" / \"~\" / DIGIT / ALPHA\n *\n * Note: Allowing more characters - https://github.com/jshttp/cookie/issues/191\n * Allow same range as cookie value, except `=`, which delimits end of name.\n */\nconst cookieNameRegExp = /^[\\u0021-\\u003A\\u003C\\u003E-\\u007E]+$/;\n\n/**\n * RegExp to match cookie-value in RFC 6265 sec 4.1.1\n *\n * cookie-value = *cookie-octet / ( DQUOTE *cookie-octet DQUOTE )\n * cookie-octet = %x21 / %x23-2B / %x2D-3A / %x3C-5B / %x5D-7E\n * ; US-ASCII characters excluding CTLs,\n * ; whitespace DQUOTE, comma, semicolon,\n * ; and backslash\n *\n * Allowing more characters: https://github.com/jshttp/cookie/issues/191\n * Comma, backslash, and DQUOTE are not part of the parsing algorithm.\n */\nconst cookieValueRegExp = /^[\\u0021-\\u003A\\u003C-\\u007E]*$/;\n\n/**\n * RegExp to match domain-value in RFC 6265 sec 4.1.1\n *\n * domain-value = \n * ; defined in [RFC1034], Section 3.5, as\n * ; enhanced by [RFC1123], Section 2.1\n * =

+ + + + diff --git a/packages/functions/tests/tests/support/hooks.ts b/packages/functions/tests/tests/support/hooks.ts new file mode 100644 index 0000000..1743778 --- /dev/null +++ b/packages/functions/tests/tests/support/hooks.ts @@ -0,0 +1,16 @@ +import '../../../.pikku/pikku-bootstrap.gen.js' +import { + Before, + After, + BeforeAll, + AfterAll, + setDefaultTimeout, + Given, + When, + Then, +} from '@cucumber/cucumber' +import { registerHooks, registerCommonSteps } from '@pikku/cucumber' +import { db } from './services.js' + +registerHooks({ Before, After, BeforeAll, AfterAll, setDefaultTimeout }, db) +registerCommonSteps({ Given, When, Then }) diff --git a/packages/functions/tests/tests/support/services.ts b/packages/functions/tests/tests/support/services.ts new file mode 100644 index 0000000..b137e53 --- /dev/null +++ b/packages/functions/tests/tests/support/services.ts @@ -0,0 +1,51 @@ +import { createNodeSqliteKysely } from '@pikku/kysely-node-sqlite' +import { createDbUtils, type StubTracker } from '@pikku/cucumber' +import { createConfig } from '../../../src/config.js' +import { createSingletonServices } from '../../../src/services.js' +import type { DB } from '../../../db/schema.js' +import { dirname, resolve } from 'node:path' +import { fileURLToPath } from 'node:url' + +const __dirname = dirname(fileURLToPath(import.meta.url)) +const repoRoot = (p: string) => resolve(__dirname, '../../../../..', p) + +export const db = createDbUtils({ + migrationsDir: repoRoot('db/migrations'), + seedFile: repoRoot('db/seed.sql'), +}) + +type StubKysely = ReturnType> + +const REAL_SERVICES = (kysely: StubKysely) => ({ kysely }) + +export async function createStubServices(dbFile: string, tracker: StubTracker) { + const kysely = createNodeSqliteKysely({ + filename: dbFile, + camelCase: true, + }) + + const real = REAL_SERVICES(kysely) + const injected = new Proxy(real as Record, { + get(target, prop: string) { + if (prop in target) return target[prop] + return tracker.stub(prop) + }, + }) + + const config = await createConfig() + const base = await createSingletonServices( + { ...config, sqliteDb: dbFile } as never, + injected as never, + ) + + // Spreading a Proxy loses non-enumerable stubs; wrap the result so any + // service not explicitly provided falls through to the tracker stub. + const services = new Proxy(base as Record, { + get(target, prop: string) { + if (prop in target && target[prop] !== undefined) return target[prop] + return tracker.stub(prop) + }, + }) + + return { services: services as typeof base, kysely } +} diff --git a/packages/functions/tests/tests/support/world.ts b/packages/functions/tests/tests/support/world.ts new file mode 100644 index 0000000..644b8f7 --- /dev/null +++ b/packages/functions/tests/tests/support/world.ts @@ -0,0 +1,5 @@ +import { World, setWorldConstructor } from '@cucumber/cucumber' +import { createFunctionWorld } from '@pikku/cucumber' +import { createStubServices } from './services.js' + +createFunctionWorld(World, setWorldConstructor, createStubServices) diff --git a/packages/functions/tests/tsconfig.json b/packages/functions/tests/tsconfig.json new file mode 100644 index 0000000..3a6d289 --- /dev/null +++ b/packages/functions/tests/tsconfig.json @@ -0,0 +1,14 @@ +{ + "compilerOptions": { + "target": "ES2022", + "module": "NodeNext", + "moduleResolution": "NodeNext", + "types": ["node"], + "noEmit": true, + "skipLibCheck": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "strict": true + }, + "include": ["tests/**/*.ts"] +} diff --git a/packages/mantine-theme/active.json b/packages/mantine-theme/active.json new file mode 100644 index 0000000..b801f69 --- /dev/null +++ b/packages/mantine-theme/active.json @@ -0,0 +1,3 @@ +{ + "id": "default" +} diff --git a/packages/mantine-theme/base.json b/packages/mantine-theme/base.json new file mode 100644 index 0000000..80a4f6d --- /dev/null +++ b/packages/mantine-theme/base.json @@ -0,0 +1,6 @@ +{ + "fontFamily": "IBM Plex Sans, sans-serif", + "headings": { + "fontFamily": "IBM Plex Sans, sans-serif" + } +} diff --git a/packages/mantine-theme/index.ts b/packages/mantine-theme/index.ts new file mode 100644 index 0000000..05abcfc --- /dev/null +++ b/packages/mantine-theme/index.ts @@ -0,0 +1,37 @@ +import { createTheme, type MantineThemeOverride } from '@mantine/core' +import { generateColors } from '@mantine/colors-generator' +import base from './base.json' +import active from './active.json' +import { palettes } from './palettes' + +export type Palette = { + name: string + description?: string + primaryColor?: string + bases?: Record +} + +// Each palette extends the shared base (fonts, radius, component defaults) and +// auto-expands its `bases` hexes into full 10-shade Mantine scales, so a palette +// only declares one colour per semantic role. +export const buildTheme = (palette: Palette): MantineThemeOverride => { + const colors = Object.fromEntries( + Object.entries(palette.bases ?? {}).map(([role, hex]) => [role, generateColors(hex)]), + ) + return createTheme({ + ...(base as MantineThemeOverride), + ...(palette.primaryColor ? { primaryColor: palette.primaryColor } : {}), + ...(Object.keys(colors).length ? { colors } : {}), + }) +} + +export const themes: Record = Object.fromEntries( + Object.entries(palettes).map(([id, palette]) => [id, buildTheme(palette as Palette)]), +) + +export { palettes } +export const activeId = active.id +export const activeTheme: MantineThemeOverride = themes[active.id] ?? themes.default + +// Back-compat: existing imports of `theme` resolve to the active palette. +export const theme = activeTheme diff --git a/packages/mantine-theme/package.json b/packages/mantine-theme/package.json new file mode 100644 index 0000000..d1ced87 --- /dev/null +++ b/packages/mantine-theme/package.json @@ -0,0 +1,25 @@ +{ + "name": "@project/mantine-themes", + "version": "0.0.1", + "private": true, + "type": "module", + "exports": { + ".": "./index.ts", + "./base.json": "./base.json", + "./active.json": "./active.json" + }, + "scripts": { + "tsc": "tsc --noEmit" + }, + "dependencies": { + "@mantine/colors-generator": "^8.3.8", + "chroma-js": "^3.1.2" + }, + "devDependencies": { + "@mantine/core": "^8.3.8", + "typescript": "^5.9" + }, + "peerDependencies": { + "@mantine/core": "^8.3.8" + } +} diff --git a/packages/mantine-theme/palettes/default.json b/packages/mantine-theme/palettes/default.json new file mode 100644 index 0000000..0c5095a --- /dev/null +++ b/packages/mantine-theme/palettes/default.json @@ -0,0 +1,4 @@ +{ + "name": "Default", + "primaryColor": "blue" +} diff --git a/packages/mantine-theme/palettes/index.ts b/packages/mantine-theme/palettes/index.ts new file mode 100644 index 0000000..cc05633 --- /dev/null +++ b/packages/mantine-theme/palettes/index.ts @@ -0,0 +1,7 @@ +// Generated by the fabric-theme tool — do not edit by hand. +// Lists every palette JSON in this directory. Add palettes via the theme tool. +import p_default from './default.json' + +export const palettes: Record = { + default: p_default, +} diff --git a/packages/mantine-theme/tsconfig.json b/packages/mantine-theme/tsconfig.json new file mode 100644 index 0000000..6c16ccc --- /dev/null +++ b/packages/mantine-theme/tsconfig.json @@ -0,0 +1,15 @@ +{ + "compilerOptions": { + "target": "ES2022", + "lib": ["ES2022", "DOM", "DOM.Iterable"], + "module": "ESNext", + "moduleResolution": "Bundler", + "strict": true, + "esModuleInterop": true, + "skipLibCheck": true, + "resolveJsonModule": true, + "noEmit": true, + "types": [] + }, + "include": ["index.ts", "base.json", "active.json", "palettes/**/*.ts", "palettes/**/*.json"] +} diff --git a/pikku.config.json b/pikku.config.json new file mode 100644 index 0000000..6c41462 --- /dev/null +++ b/pikku.config.json @@ -0,0 +1,27 @@ +{ + "$schema": "https://raw.githubusercontent.com/pikkujs/pikku/refs/heads/main/packages/cli/cli.schema.json", + "rootDir": ".", + "tsconfig": "tsconfig.json", + "srcDirectories": ["packages/functions/src"], + "outDir": "packages/functions/.pikku", + "clientFiles": { + "rpcMapDeclarationFile": "packages/functions-sdk/src/pikku/rpc-map.gen.d.ts", + "httpMapDeclarationFile": "packages/functions-sdk/src/pikku/http-map.gen.d.ts", + "fetchFile": "packages/functions-sdk/src/pikku/pikku-fetch.gen.ts", + "rpcWiringsFile": "packages/functions-sdk/src/pikku/pikku-rpc.gen.ts", + "reactQueryFile": "packages/functions-sdk/src/pikku/api.gen.ts" + }, + "packageMappings": { + "packages/functions": "@project/functions" + }, + "schema": { + "supportsImportAttributes": true + }, + "scaffold": { + "pikkuDir": "packages/functions/src/scaffold", + "console": true, + "rpc": true, + "agent": "no-auth", + "workflow": "no-auth" + } +} diff --git a/pikkufabric.config.json b/pikkufabric.config.json new file mode 100644 index 0000000..b57f4fd --- /dev/null +++ b/pikkufabric.config.json @@ -0,0 +1,16 @@ +{ + "projectId": "__PROJECT_ID__", + "frontends": { + "kanban": { + "cwd": "apps/kanban", + "primary": true, + "deploy": true, + "kind": "ssr", + "dev": { + "command": ["yarn", "dev"], + "port": 7104, + "healthPath": "/" + } + } + } +} diff --git a/sql/0001-init.sql b/sql/0001-init.sql new file mode 100644 index 0000000..1f3bbdd --- /dev/null +++ b/sql/0001-init.sql @@ -0,0 +1,13 @@ +CREATE TABLE IF NOT EXISTS kanban_card ( + card_id TEXT PRIMARY KEY, + title TEXT NOT NULL, + description TEXT, + status TEXT NOT NULL DEFAULT 'todo', + priority TEXT NOT NULL DEFAULT 'medium', + position INTEGER NOT NULL DEFAULT 0, + due_at TEXT, + created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(), + updated_at TIMESTAMPTZ NOT NULL DEFAULT NOW() +); + +CREATE INDEX IF NOT EXISTS kanban_card_status_idx ON kanban_card(status); diff --git a/sql/0002-auth.sql b/sql/0002-auth.sql new file mode 100644 index 0000000..98eccf8 --- /dev/null +++ b/sql/0002-auth.sql @@ -0,0 +1,44 @@ +CREATE TABLE IF NOT EXISTS authjs_users ( + id TEXT PRIMARY KEY, + name TEXT, + email TEXT UNIQUE, + "emailVerified" TIMESTAMPTZ, + image TEXT +); + +CREATE TABLE IF NOT EXISTS authjs_accounts ( + "userId" TEXT NOT NULL REFERENCES authjs_users(id) ON DELETE CASCADE, + type TEXT NOT NULL, + provider TEXT NOT NULL, + "providerAccountId" TEXT NOT NULL, + refresh_token TEXT, + access_token TEXT, + expires_at INTEGER, + token_type TEXT, + scope TEXT, + id_token TEXT, + session_state TEXT, + PRIMARY KEY (provider, "providerAccountId") +); + +CREATE TABLE IF NOT EXISTS authjs_sessions ( + "sessionToken" TEXT PRIMARY KEY, + "userId" TEXT NOT NULL REFERENCES authjs_users(id) ON DELETE CASCADE, + expires TIMESTAMPTZ NOT NULL +); + +CREATE TABLE IF NOT EXISTS authjs_verification_token ( + identifier TEXT NOT NULL, + token TEXT NOT NULL, + expires TIMESTAMPTZ NOT NULL, + PRIMARY KEY (identifier, token) +); + +CREATE INDEX IF NOT EXISTS authjs_accounts_user_idx ON authjs_accounts("userId"); +CREATE INDEX IF NOT EXISTS authjs_sessions_user_idx ON authjs_sessions("userId"); + +INSERT INTO kanban_card (card_id, title, description, status, priority, position) +VALUES + ('card-seed-1', 'Wire up local sandbox', 'Boot the project and verify the preview stack.', 'doing', 'high', 1), + ('card-seed-2', 'Polish board interactions', 'Tighten drag/drop and empty-state behavior.', 'todo', 'medium', 1) +ON CONFLICT DO NOTHING; diff --git a/src/scaffold/agent.gen.ts b/src/scaffold/agent.gen.ts new file mode 100644 index 0000000..e5d1d20 --- /dev/null +++ b/src/scaffold/agent.gen.ts @@ -0,0 +1,161 @@ +/** + * This file was generated by @pikku/cli@0.12.23 + */ +import { MissingServiceError } from '@pikku/core/errors' +import { pikkuSessionlessFunc, defineHTTPRoutes, wireHTTPRoutes } from '@project/functions/.pikku/pikku-types.gen.js' + +export const agentCaller = pikkuSessionlessFunc< + { agentName: string; message: string; threadId: string; resourceId: string }, + unknown +>({ + tags: ['pikku'], + auth: false, + func: async (_services, data, { rpc }) => { + return await rpc.agent.run(data.agentName as any, { + message: data.message, + threadId: data.threadId, + resourceId: data.resourceId, + }) + }, +}) + +export const agentStreamCaller = pikkuSessionlessFunc< + { agentName: string; message: string; threadId: string; resourceId: string }, + void +>({ + tags: ['pikku'], + auth: false, + func: async (_services, data, { rpc }) => { + await rpc.agent.stream(data.agentName as any, { + message: data.message, + threadId: data.threadId, + resourceId: data.resourceId, + }) + }, +}) + +export const agentApproveCaller = pikkuSessionlessFunc< + { agentName: string; runId: string; approvals: { toolCallId: string; approved: boolean }[] }, + unknown +>({ + tags: ['pikku'], + auth: false, + func: async (_services, { runId, approvals, agentName }, { rpc }) => { + return await rpc.agent.approve(runId, approvals, agentName) + }, +}) + +export const agentResumeCaller = pikkuSessionlessFunc< + { agentName: string; runId: string; toolCallId: string; approved: boolean }, + void +>({ + tags: ['pikku'], + auth: false, + func: async (_services, data, { rpc }) => { + await rpc.agent.resume(data.runId, { + toolCallId: data.toolCallId, + approved: data.approved, + }) + }, +}) + +export const getAgentThreads = pikkuSessionlessFunc< + { agentName?: string; resourceId?: string; limit?: number; offset?: number }, + any[] +>({ + tags: ['pikku', 'pikku:agent'], + title: 'Get Agent Threads', + description: + 'Returns a list of AI agent threads from storage. Accepts optional filters: agentName, resourceId, limit, and offset for pagination.', + expose: true, + auth: false, + func: async ({ agentRunService }, input) => { + if (!agentRunService) throw new MissingServiceError('agentRunService is not available') + return await agentRunService.listThreads({ + agentName: input?.agentName, + resourceId: input?.resourceId, + limit: input?.limit, + offset: input?.offset, + }) + }, +}) + +export const getAgentThreadMessages = pikkuSessionlessFunc< + { threadId: string; resourceId?: string }, + any[] +>({ + tags: ['pikku', 'pikku:agent'], + title: 'Get Agent Thread Messages', + description: + 'Returns all messages for a given AI agent thread, ordered by creation time.', + expose: true, + auth: false, + func: async ({ agentRunService }, input) => { + if (!agentRunService) throw new MissingServiceError('agentRunService is not available') + return await agentRunService.getThreadMessages(input.threadId) + }, +}) + +export const getAgentThreadRuns = pikkuSessionlessFunc< + { threadId: string; resourceId?: string }, + any[] +>({ + tags: ['pikku', 'pikku:agent'], + title: 'Get Agent Thread Runs', + description: + 'Returns the run history for a given AI agent thread, ordered by creation time.', + expose: true, + auth: false, + func: async ({ agentRunService }, input) => { + if (!agentRunService) throw new MissingServiceError('agentRunService is not available') + return await agentRunService.getThreadRuns(input.threadId) + }, +}) + +export const deleteAgentThread = pikkuSessionlessFunc< + { threadId: string; resourceId?: string }, + { deleted: boolean } +>({ + tags: ['pikku', 'pikku:agent'], + title: 'Delete Agent Thread', + description: + 'Deletes an AI agent thread and all of its persisted state.', + expose: true, + auth: false, + func: async ({ agentRunService }, input) => { + if (!agentRunService) throw new MissingServiceError('agentRunService is not available') + const deleted = await agentRunService.deleteThread(input.threadId) + return { deleted } + }, +}) + +export const agentRoutes = defineHTTPRoutes({ + auth: false, + tags: ['pikku:public'], + routes: { + agentRun: { + route: '/rpc/agent/:agentName', + method: 'post', + func: agentCaller, + }, + agentStream: { + route: '/rpc/agent/:agentName/stream', + method: 'post', + sse: true, + func: agentStreamCaller, + }, + agentApprove: { + route: '/rpc/agent/:agentName/approve', + method: 'post', + func: agentApproveCaller, + }, + agentResume: { + route: '/rpc/agent/:agentName/resume', + method: 'post', + sse: true, + func: agentResumeCaller, + }, + }, +}) + +wireHTTPRoutes({ routes: { agent: agentRoutes } }) diff --git a/src/scaffold/console.gen.ts b/src/scaffold/console.gen.ts new file mode 100644 index 0000000..9c37615 --- /dev/null +++ b/src/scaffold/console.gen.ts @@ -0,0 +1,108 @@ +/** + * This file was generated by @pikku/cli@0.12.23 + */ +import { pikkuSessionlessFunc, defineHTTPRoutes, wireHTTPRoutes, ref, wireAddon } from '@project/functions/.pikku/pikku-types.gen.js' + +export const pikkuConsoleSetSecret = pikkuSessionlessFunc<{ + secretId: string + value: unknown +}, { + success: boolean +}>({ + tags: ['pikku'], + description: 'Set the value of a secret', + expose: true, + auth: false, + func: async ({ secrets }, { secretId, value }) => { + await secrets.setSecretJSON(secretId, value) + return { success: true } + }, +}) + +export const pikkuConsoleGetVariable = pikkuSessionlessFunc< + { variableId: string }, + { exists: boolean; value: unknown | null } +>({ + tags: ['pikku'], + description: 'Get the current value of a variable', + expose: true, + auth: false, + func: async ({ variables }, { variableId }) => { + const exists = await variables.has(variableId) + if (!exists) { + return { exists: false, value: null } + } + try { + const value = await variables.getJSON(variableId) + return { exists: true, value } + } catch { + const value = await variables.get(variableId) + return { exists: true, value } + } + }, +}) + +export const pikkuConsoleSetVariable = pikkuSessionlessFunc< + { variableId: string; value: unknown }, + { success: boolean } +>({ + tags: ['pikku'], + description: 'Set the value of a variable', + expose: true, + auth: false, + func: async ({ variables }, { variableId, value }) => { + if (typeof value === 'string') { + await variables.set(variableId, value) + } else { + await variables.setJSON(variableId, value) + } + return { success: true } + }, +}) + +export const pikkuConsoleHasSecret = pikkuSessionlessFunc< + { secretId: string }, + { exists: boolean } +>({ + tags: ['pikku'], + description: 'Check if a secret exists without reading its value', + expose: true, + auth: false, + func: async ({ secrets }, { secretId }) => { + const exists = await secrets.hasSecret(secretId) + return { exists } + }, +}) + +export const pikkuConsoleGetSecret = pikkuSessionlessFunc< + { secretId: string }, + { exists: boolean; value: unknown | null } +>({ + tags: ['pikku'], + description: 'Get the current value of a secret', + expose: true, + auth: false, + func: async ({ secrets }, { secretId }) => { + const exists = await secrets.hasSecret(secretId) + if (!exists) { + return { exists: false, value: null } + } + const value = await secrets.getSecretJSON(secretId) + return { exists: true, value } + }, +}) + +export const consoleRoutes = defineHTTPRoutes({ + auth: false, + routes: { + workflowRunStream: { + route: '/workflow-run/:runId/stream', + method: 'get', + sse: true, + func: ref('console:streamWorkflowRun'), + }, + }, +}) + +wireAddon({ name: 'console', package: '@pikku/addon-console' }) +wireHTTPRoutes({ basePath: '', routes: { console: consoleRoutes } }) diff --git a/src/scaffold/rpc-public.gen.ts b/src/scaffold/rpc-public.gen.ts new file mode 100644 index 0000000..f71644b --- /dev/null +++ b/src/scaffold/rpc-public.gen.ts @@ -0,0 +1,26 @@ +/** + * This file was generated by @pikku/cli@0.12.23 + */ +/** + * Auto-generated public RPC HTTP endpoint + * Do not edit manually - regenerate with 'npx pikku' + */ +import { pikkuSessionlessFunc, wireHTTP } from '@project/functions/.pikku/pikku-types.gen.js' + +export const rpcCaller = pikkuSessionlessFunc< + { rpcName: string; data?: unknown }, + unknown +>({ + tags: ['pikku'], + auth: false, + func: async (_services, { rpcName, data }, { rpc }) => { + return await rpc.exposed(rpcName, data) + }, +}) + +wireHTTP({ + route: '/rpc/:rpcName', + method: 'post', + auth: false, + func: rpcCaller, +}) diff --git a/src/scaffold/rpc-remote.gen.ts b/src/scaffold/rpc-remote.gen.ts new file mode 100644 index 0000000..ce9fde7 --- /dev/null +++ b/src/scaffold/rpc-remote.gen.ts @@ -0,0 +1,33 @@ +/** + * This file was generated by @pikku/cli@0.12.23 + */ +/** + * Auto-generated remote internal RPC queue worker and HTTP endpoint + * Do not edit manually - regenerate with 'npx pikku' + */ +import { pikkuSessionlessFunc, wireHTTP, wireQueueWorker } from '@project/functions/.pikku/pikku-types.gen.js' +import { pikkuRemoteAuthMiddleware } from '@pikku/core/middleware' + +export const remoteRPCHandler = pikkuSessionlessFunc< + { rpcName: string, data?: unknown }, + unknown +>({ + tags: ['pikku'], + func: async (_services, { rpcName, data }, { rpc }) => { + return await (rpc.invoke as any)(rpcName, data) + }, + remote: true, +}) + +wireQueueWorker({ + name: 'pikku-remote-internal-rpc', + func: remoteRPCHandler, +}) + +wireHTTP({ + route: '/remote/rpc/:rpcName', + method: 'post', + auth: false, + middleware: [pikkuRemoteAuthMiddleware], + func: remoteRPCHandler, +}) diff --git a/src/scaffold/workflow-routes.gen.ts b/src/scaffold/workflow-routes.gen.ts new file mode 100644 index 0000000..a3ad5b4 --- /dev/null +++ b/src/scaffold/workflow-routes.gen.ts @@ -0,0 +1,288 @@ +/** + * This file was generated by @pikku/cli@0.12.23 + */ +/** + * Workflow HTTP catch-all routes + * Do not edit manually - regenerate with 'npx pikku' + */ +import { pikkuSessionlessFunc, wireHTTPRoutes } from '@project/functions/.pikku/pikku-types.gen.js' +import { MissingServiceError } from '@pikku/core/errors' +import type { WorkflowRunStatus } from '@pikku/core/workflow' + +function assertWorkflowService(workflowService: unknown): asserts workflowService { + if (!workflowService) throw new MissingServiceError('workflowService is required') +} + +function assertWorkflowRunService(workflowRunService: unknown): asserts workflowRunService { + if (!workflowRunService) throw new MissingServiceError('workflowRunService is required') +} + +export const workflowStarter = pikkuSessionlessFunc< + { workflowName: string; data?: unknown }, + { runId: string } +>({ + tags: ['pikku'], + auth: false, + // workflowService is destructured (even though we delegate via rpc) so the + // analyzer assigns workflow-state capability to this unit — without it, + // rpc.startWorkflow() runs against a container missing workflowService. + func: async ({ workflowService }, { workflowName, data }, { rpc }) => { + assertWorkflowService(workflowService) + return await rpc.startWorkflow(workflowName as any, (data ?? {}) as any) + }, +}) + +export const workflowRunner = pikkuSessionlessFunc< + { workflowName: string; data?: unknown }, + unknown +>({ + tags: ['pikku'], + auth: false, + func: async ({ workflowService }, { workflowName, data }, { rpc }) => { + assertWorkflowService(workflowService) + return await workflowService.runToCompletion(workflowName, data ?? {}, rpc) + }, +}) + +export const workflowStatusChecker = pikkuSessionlessFunc< + { workflowName: string; runId: string }, + WorkflowRunStatus +>({ + tags: ['pikku'], + auth: false, + func: async ({ workflowService }, { runId }) => { + assertWorkflowService(workflowService) + const status = await workflowService.getRunStatus(runId) + if (!status) throw new Error(`Run not found: ${runId}`) + return status + }, +}) + +/** + * Minimal workflow status stream — sends step names and statuses only. + * Use this for user-facing frontends where internal details should not be exposed. + */ +export const workflowStatusStream = pikkuSessionlessFunc< + { workflowName: string; runId: string }, + unknown +>({ + tags: ['pikku'], + auth: false, + func: async ({ workflowRunService }, { runId }, { channel }) => { + assertWorkflowRunService(workflowRunService) + if (!channel) return + + const terminalStatuses = new Set(['completed', 'failed', 'cancelled']) + let lastHash = '' + let initSent = false + + const poll = async () => { + const run = await workflowRunService.getRun(runId) + if (!run) { + channel.close() + return false + } + + const steps = await workflowRunService.getRunSteps(runId) + + if (!initSent && run.deterministic) { + const statusByStep = new Map( + steps.map((s: { stepName: string; status: string }) => [ + s.stepName, + s.status, + ]) + ) + channel.send({ + type: 'init', + deterministic: true, + steps: (run.plannedSteps ?? []).map( + (s: { stepName: string }) => ({ + stepName: s.stepName, + status: statusByStep.get(s.stepName) ?? 'pending', + }) + ), + }) + initSent = true + } + + const hash = JSON.stringify({ + s: run.status, + steps: steps.map((s: { stepName: string; status: string }) => [s.stepName, s.status]), + }) + + if (hash !== lastHash) { + lastHash = hash + channel.send({ + type: 'update', + status: run.status, + steps: steps.map((s: { stepName: string; status: string }) => ({ + stepName: s.stepName, + status: s.status, + })), + }) + } + + if (terminalStatuses.has(run.status)) { + channel.send({ type: 'done' }) + channel.close() + return false + } + return true + } + + const shouldContinue = await poll() + if (!shouldContinue) return + + await new Promise((resolve) => { + const interval = setInterval(async () => { + const cont = await poll() + if (!cont) { + clearInterval(interval) + resolve() + } + }, 500) + }) + }, +}) + +/** + * Full workflow status stream — includes output, error, and child run IDs. + * Use this for admin consoles and internal tooling. + */ +export const workflowStatusStreamFull = pikkuSessionlessFunc< + { workflowName: string; runId: string }, + unknown +>({ + tags: ['pikku'], + auth: false, + func: async ({ workflowRunService }, { runId }, { channel }) => { + assertWorkflowRunService(workflowRunService) + if (!channel) return + + const terminalStatuses = new Set(['completed', 'failed', 'cancelled']) + let lastHash = '' + let initSent = false + + const poll = async () => { + const run = await workflowRunService.getRun(runId) + if (!run) { + channel.close() + return false + } + + const steps = await workflowRunService.getRunSteps(runId) + + if (!initSent && run.deterministic) { + const statusByStep = new Map( + steps.map((s: { stepName: string; status: string }) => [ + s.stepName, + s.status, + ]) + ) + channel.send({ + type: 'init', + deterministic: true, + steps: (run.plannedSteps ?? []).map( + (s: { stepName: string }) => ({ + stepName: s.stepName, + status: statusByStep.get(s.stepName) ?? 'pending', + }) + ), + }) + initSent = true + } + + const hash = JSON.stringify({ + s: run.status, + o: run.output, + steps: steps.map((s: { stepName: string; status: string }) => [s.stepName, s.status]), + }) + + if (hash !== lastHash) { + lastHash = hash + channel.send({ + type: 'update', + status: run.status, + output: run.output, + error: run.error, + steps: steps.map((s: { stepName: string; status: string; childRunId?: string }) => ({ + stepName: s.stepName, + status: s.status, + ...(s.childRunId ? { childRunId: s.childRunId } : {}), + })), + }) + } + + if (terminalStatuses.has(run.status)) { + channel.send({ type: 'done' }) + channel.close() + return false + } + return true + } + + const shouldContinue = await poll() + if (!shouldContinue) return + + await new Promise((resolve) => { + const interval = setInterval(async () => { + const cont = await poll() + if (!cont) { + clearInterval(interval) + resolve() + } + }, 500) + }) + }, +}) + +export const graphStarter = pikkuSessionlessFunc< + { workflowName: string; nodeId: string; data?: unknown }, + { runId: string } +>({ + auth: false, + // See workflowStarter — destructure workflowService so the analyzer + // assigns workflow-state capability to this unit. + func: async ({ workflowService }, { workflowName, nodeId, data }, { rpc }) => { + assertWorkflowService(workflowService) + return await rpc.startWorkflow(workflowName as any, (data ?? {}) as any, { startNode: nodeId }) + }, +}) + +wireHTTPRoutes({ + auth: false, + routes: { + workflowStart: { + route: '/workflow/:workflowName/start', + method: 'post', + func: workflowStarter, + }, + workflowRun: { + route: '/workflow/:workflowName/run', + method: 'post', + func: workflowRunner, + }, + workflowStatus: { + route: '/workflow/:workflowName/status/:runId', + method: 'get', + func: workflowStatusChecker, + }, + workflowStatusStream: { + route: '/workflow/:workflowName/status/:runId/stream', + method: 'get', + sse: true, + func: workflowStatusStream, + }, + workflowStatusStreamFull: { + route: '/workflow/:workflowName/status/:runId/stream/full', + method: 'get', + sse: true, + func: workflowStatusStreamFull, + }, + graphStart: { + route: '/workflow/:workflowName/graph/:nodeId', + method: 'post', + func: graphStarter, + }, + }, +}) diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..04e94ef --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,15 @@ +{ + "compilerOptions": { + "target": "ES2022", + "module": "Node16", + "moduleResolution": "Node16", + "strict": true, + "esModuleInterop": true, + "skipLibCheck": true, + "allowImportingTsExtensions": true, + "noEmit": true, + "outDir": "dist", + "rootDir": "." + }, + "include": ["packages/functions/src"] +} diff --git a/workflow-wip.md b/workflow-wip.md new file mode 100644 index 0000000..fdc2a89 --- /dev/null +++ b/workflow-wip.md @@ -0,0 +1,339 @@ +# Workflow examples (WIP — blocked on pikku OSS bundler bug) + +Three workflow patterns demonstrating graph DSL, sequential code-style with `workflow.sleep`, and complex (dynamic branching). All ready to drop back into the template once **pikkujs/pikku#553** lands (`pikku deploy plan` only emits bundle.js for ~half the units when workflows are present). + +To resume: +1. Wait for #553 to be fixed in `@pikku/cli`. +2. Recreate the files below at the listed paths. +3. Sync template to Gitea, redeploy. + +--- + +## Step functions + +### `src/functions/enrich-card.function.ts` + +```ts +import { z } from 'zod' +import { pikkuSessionlessFunc } from '#pikku' + +export const EnrichCardInput = z.object({ + title: z.string().min(1), + status: z.enum(['todo', 'doing', 'done']).default('todo'), +}) + +export const EnrichCardOutput = z.object({ + title: z.string(), + status: z.string(), + priority: z.enum(['low', 'medium', 'high']), + labels: z.array(z.string()), +}) + +/** + * Heuristic enrichment — picks priority from title keywords and tags + * common categories. Stand-in for what would normally be an LLM call / + * lookup against project rules. + */ +export const enrichCard = pikkuSessionlessFunc({ + input: EnrichCardInput, + output: EnrichCardOutput, + func: async ({ logger }, { title, status }) => { + const lower = title.toLowerCase() + let priority: 'low' | 'medium' | 'high' = 'medium' + if (/\b(urgent|asap|critical|p0|outage)\b/.test(lower)) priority = 'high' + else if (/\b(later|someday|maybe|nice to have)\b/.test(lower)) priority = 'low' + + const labels: string[] = [] + if (/\b(bug|fix|broken|error)\b/.test(lower)) labels.push('bug') + if (/\b(feat|feature|add)\b/.test(lower)) labels.push('feature') + if (/\b(doc|docs|readme)\b/.test(lower)) labels.push('docs') + + logger.info(`enrichCard: '${title}' → priority=${priority} labels=[${labels.join(',')}]`) + return { title, status, priority, labels } + }, +}) +``` + +### `src/functions/notify-card-created.function.ts` + +```ts +import { z } from 'zod' +import { pikkuSessionlessFunc } from '#pikku' + +export const NotifyCardCreatedInput = z.object({ + cardId: z.string(), + title: z.string(), + priority: z.enum(['low', 'medium', 'high']), + labels: z.array(z.string()), +}) + +/** + * Stand-in for Slack/email/webhook fan-out. High-priority cards would get + * an immediate ping, others batched. Logs only for now. + */ +export const notifyCardCreated = pikkuSessionlessFunc({ + input: NotifyCardCreatedInput, + func: async ({ logger }, { cardId, title, priority, labels }) => { + const channel = priority === 'high' ? '#urgent' : '#kanban' + logger.info( + `notifyCardCreated: ${channel} card=${cardId} '${title}' priority=${priority} labels=[${labels.join(',')}]`, + ) + }, +}) +``` + +### `src/functions/count-cards-by-status.function.ts` + +```ts +import { z } from 'zod' +import { pikkuSessionlessFunc } from '#pikku' + +export const CountCardsByStatusOutput = z.object({ + todo: z.number(), + doing: z.number(), + done: z.number(), +}) + +export const countCardsByStatus = pikkuSessionlessFunc({ + output: CountCardsByStatusOutput, + func: async ({ kysely }) => { + const rows = await kysely + .selectFrom('kanbanCard') + .select(({ fn }) => ['status', fn.countAll().as('count')]) + .groupBy('status') + .execute() + const out = { todo: 0, doing: 0, done: 0 } as Record + for (const r of rows) out[r.status] = Number(r.count) + return out as { todo: number; doing: number; done: number } + }, +}) +``` + +### `src/functions/emit-digest.function.ts` + +```ts +import { z } from 'zod' +import { pikkuSessionlessFunc } from '#pikku' + +export const EmitDigestInput = z.object({ + before: z.object({ todo: z.number(), doing: z.number(), done: z.number() }), + after: z.object({ todo: z.number(), doing: z.number(), done: z.number() }), +}) + +export const emitDigest = pikkuSessionlessFunc({ + input: EmitDigestInput, + func: async ({ logger }, { before, after }) => { + const delta = { + todo: after.todo - before.todo, + doing: after.doing - before.doing, + done: after.done - before.done, + } + logger.info( + `emitDigest: before=${JSON.stringify(before)} after=${JSON.stringify(after)} delta=${JSON.stringify(delta)}`, + ) + }, +}) +``` + +### `src/functions/get-card.function.ts` + +```ts +import { z } from 'zod' +import { pikkuSessionlessFunc } from '#pikku' +import { NotFoundError } from '@pikku/core/errors' + +export const GetCardInput = z.object({ cardId: z.string() }) + +export const GetCardOutput = z.object({ + cardId: z.string(), + title: z.string(), + status: z.string(), + position: z.number(), + createdAt: z.string(), +}) + +export const getCard = pikkuSessionlessFunc({ + input: GetCardInput, + output: GetCardOutput, + func: async ({ kysely }, { cardId }) => { + return await kysely + .selectFrom('kanbanCard') + .selectAll() + .where('cardId', '=', cardId) + .executeTakeFirstOrThrow(() => new NotFoundError(`Card ${cardId} not found`)) + }, +}) +``` + +### `src/functions/move-card.function.ts` + +```ts +import { z } from 'zod' +import { pikkuSessionlessFunc } from '#pikku' +import { NotFoundError } from '@pikku/core/errors' + +export const MoveCardInput = z.object({ + cardId: z.string(), + status: z.enum(['todo', 'doing', 'done', 'archived']), +}) + +export const MoveCardOutput = z.object({ + cardId: z.string(), + fromStatus: z.string(), + toStatus: z.string(), +}) + +export const moveCard = pikkuSessionlessFunc({ + input: MoveCardInput, + output: MoveCardOutput, + func: async ({ kysely, logger }, { cardId, status: toStatus }) => { + const current = await kysely + .selectFrom('kanbanCard') + .select('status') + .where('cardId', '=', cardId) + .executeTakeFirstOrThrow(() => new NotFoundError(`Card ${cardId} not found`)) + + await kysely + .updateTable('kanbanCard') + .set({ status: toStatus }) + .where('cardId', '=', cardId) + .execute() + + logger.info(`moveCard ${cardId}: ${current.status} → ${toStatus}`) + return { cardId, fromStatus: current.status, toStatus } + }, +}) +``` + +--- + +## Workflow wirings + +### `src/wirings/card-onboarding.workflow.ts` — graph (DSL declarative) + +```ts +import { pikkuWorkflowGraph } from '#pikku/workflow/pikku-workflow-types.gen.js' + +/** + * GRAPH (DSL) workflow — card creation pipeline: + * enrich → createCard → notify + * + * Best fit for static DAGs where every step is known up-front and the + * runtime can introspect it (replay, fan-out UI, etc.). + */ +export const cardOnboardingWorkflow = pikkuWorkflowGraph({ + description: 'Enrich a new card, persist it, then notify', + tags: ['kanban', 'onboarding'], + nodes: { + enrich: 'enrichCard', + create: 'createCard', + notify: 'notifyCardCreated', + }, + config: { + enrich: { + next: 'create', + }, + create: { + next: 'notify', + input: (ref) => ({ + title: ref('enrich', 'title'), + status: ref('enrich', 'status'), + }), + }, + notify: { + input: (ref) => ({ + cardId: ref('create', 'cardId'), + title: ref('create', 'title'), + priority: ref('enrich', 'priority'), + labels: ref('enrich', 'labels'), + }), + }, + }, +}) +``` + +### `src/wirings/board-digest.workflow.ts` — sequential code + `workflow.sleep` + +```ts +import { pikkuWorkflowFunc } from '#pikku/workflow/pikku-workflow-types.gen.js' + +/** + * DSL (sequential code) workflow — board snapshot before/after a 30s + * cool-off, then emit a digest with the delta. + * + * Best fit when steps include loops, conditionals, or `workflow.sleep` + * that don't map cleanly to a static graph. Each `workflow.do` step is + * still a real pikkuFunc — no inline business logic in the orchestrator. + */ +export const boardDigestWorkflow = pikkuWorkflowFunc( + async (_services, _data, { workflow }) => { + const before = await workflow.do('snapshot before', 'countCardsByStatus', {}) + + // Pause to capture activity over a window. In real life this would be + // longer (e.g. 1h); 30s here keeps the example testable end-to-end. + await workflow.sleep('cool-off', 30_000) + + const after = await workflow.do('snapshot after', 'countCardsByStatus', {}) + + await workflow.do('emit', 'emitDigest', { before, after }) + }, +) +``` + +### `src/wirings/card-auto-progress.workflow.ts` — complex (dynamic branching) + +```ts +import { z } from 'zod' +import { pikkuWorkflowComplexFunc } from '#pikku/workflow/pikku-workflow-types.gen.js' + +const Input = z.object({ cardId: z.string() }) + +/** + * COMPLEX workflow — promote a card automatically based on its current + * state and the title pattern. Branches dynamically inside the + * orchestrator: urgent + todo → fast-track to doing + ping; stale doing → + * nag; done → no-op. Each branch path can't be cleanly expressed as a + * static graph because the next-step set depends on data fetched at + * runtime. + * + * Note: prefer pikkuWorkflowGraph for everything that fits a static DAG. + * Use complex only when branching genuinely depends on inline data. + */ +export const cardAutoProgressWorkflow = pikkuWorkflowComplexFunc< + z.infer, + void +>(async (_services, { cardId }, { workflow }) => { + const card = await workflow.do('fetch', 'getCard', { cardId }) + + const lower = card.title.toLowerCase() + const isUrgent = /\b(urgent|asap|critical|p0|outage)\b/.test(lower) + + if (card.status === 'todo' && isUrgent) { + const moved = await workflow.do('promote', 'moveCard', { cardId, status: 'doing' }) + await workflow.do('alert', 'notifyCardCreated', { + cardId, + title: card.title, + priority: 'high', + labels: ['auto-promoted'], + }) + return + } + + if (card.status === 'doing') { + // Cool-off — give it 60s in case it was just nudged. Then re-fetch + // and decide; if it moved during the wait, do nothing. + await workflow.sleep('cool-off', 60_000) + const fresh = await workflow.do('refetch', 'getCard', { cardId }) + if (fresh.status === 'doing') { + await workflow.do('nag', 'notifyCardCreated', { + cardId, + title: card.title, + priority: 'medium', + labels: ['stale-in-progress'], + }) + } + return + } + // todo (non-urgent) and done: no-op. +}) +```