From e6c8b459e68257eebf905b904bb287f4595dfe94 Mon Sep 17 00:00:00 2001 From: Eric Allam Date: Tue, 6 Aug 2024 11:52:02 +0100 Subject: [PATCH] convert @trigger.dev/sdk to tshy --- .vscode/settings.json | 3 +- packages/core/package.json | 2 +- packages/trigger-sdk/package.json | 81 +++++---- packages/trigger-sdk/src/apiClient.ts | 4 +- packages/trigger-sdk/src/httpEndpoint.ts | 12 +- packages/trigger-sdk/src/index.ts | 34 ++-- packages/trigger-sdk/src/integrations.ts | 4 +- packages/trigger-sdk/src/io.ts | 23 +-- .../trigger-sdk/src/ioWithIntegrations.ts | 5 +- packages/trigger-sdk/src/job.ts | 16 +- packages/trigger-sdk/src/runLocalStorage.ts | 6 +- packages/trigger-sdk/src/security.ts | 2 +- packages/trigger-sdk/src/status.ts | 4 +- .../trigger-sdk/src/store/keyValueStore.ts | 6 +- .../src/store/keyValueStoreClient.ts | 2 +- packages/trigger-sdk/src/triggerClient.ts | 46 ++--- packages/trigger-sdk/src/triggers/dynamic.ts | 12 +- .../trigger-sdk/src/triggers/eventTrigger.ts | 12 +- .../src/triggers/externalSource.ts | 12 +- .../trigger-sdk/src/triggers/invokeTrigger.ts | 16 +- .../trigger-sdk/src/triggers/notifications.ts | 8 +- .../trigger-sdk/src/triggers/scheduled.ts | 18 +- packages/trigger-sdk/src/triggers/webhook.ts | 12 +- packages/trigger-sdk/src/typed-emitter.ts | 43 +++++ packages/trigger-sdk/src/types.ts | 8 +- .../src/utils/formatSchemaErrors.ts | 2 +- packages/trigger-sdk/src/v3/cache.ts | 2 +- packages/trigger-sdk/src/v3/envvars.ts | 4 +- .../trigger-sdk/src/v3/idempotencyKeys.ts | 2 + packages/trigger-sdk/src/v3/index.ts | 28 +-- packages/trigger-sdk/src/v3/retry.ts | 23 ++- packages/trigger-sdk/src/v3/runs.ts | 4 +- .../trigger-sdk/src/v3/schedules/index.ts | 6 +- packages/trigger-sdk/src/v3/shared.ts | 10 +- packages/trigger-sdk/src/v3/tags.ts | 4 +- packages/trigger-sdk/src/v3/tasks.ts | 4 +- packages/trigger-sdk/src/v3/tracer.ts | 4 +- packages/trigger-sdk/src/v3/wait.ts | 2 +- packages/trigger-sdk/tsconfig.build.json | 9 + packages/trigger-sdk/tsconfig.json | 7 +- packages/trigger-sdk/tsconfig.tsbuildinfo | 1 - packages/trigger-sdk/tsup.config.ts | 9 - pnpm-lock.yaml | 167 +++++------------- 43 files changed, 333 insertions(+), 346 deletions(-) create mode 100644 packages/trigger-sdk/src/typed-emitter.ts create mode 100644 packages/trigger-sdk/tsconfig.build.json delete mode 100644 packages/trigger-sdk/tsconfig.tsbuildinfo delete mode 100644 packages/trigger-sdk/tsup.config.ts diff --git a/.vscode/settings.json b/.vscode/settings.json index 000318d27..9086fe044 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,4 +1,5 @@ { "deno.enablePaths": ["references/deno-reference", "runtime_tests/tests/deno"], - "debug.toolBarLocation": "commandCenter" + "debug.toolBarLocation": "commandCenter", + "typescript.tsdk": "node_modules/typescript/lib" } diff --git a/packages/core/package.json b/packages/core/package.json index d577f32f7..4a5cd8afd 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -94,7 +94,7 @@ "typescript": "^5.5.4" }, "engines": { - "node": ">=18.0.0" + "node": ">=18.20.0" }, "exports": { "./package.json": "./package.json", diff --git a/packages/trigger-sdk/package.json b/packages/trigger-sdk/package.json index 9d886bcc5..63846950c 100644 --- a/packages/trigger-sdk/package.json +++ b/packages/trigger-sdk/package.json @@ -3,45 +3,32 @@ "version": "3.0.0-beta.52", "description": "trigger.dev Node.JS SDK", "license": "MIT", - "main": "./dist/index.js", - "types": "./dist/index.d.ts", - "module": "./dist/index.mjs", "publishConfig": { "access": "public" }, + "type": "module", "files": [ "dist" ], - "exports": { - ".": { - "import": { - "types": "./dist/index.d.mts", - "default": "./dist/index.mjs" - }, - "require": "./dist/index.js", - "types": "./dist/index.d.ts" + "tshy": { + "selfLink": false, + "main": false, + "module": false, + "project": "./tsconfig.build.json", + "exports": { + "./package.json": "./package.json", + ".": "./src/index.ts", + "./v3": "./src/v3/index.ts" }, - "./v3": { - "import": { - "types": "./dist/v3/index.d.mts", - "default": "./dist/v3/index.mjs" - }, - "require": "./dist/v3/index.js", - "types": "./dist/v3/index.d.ts" - }, - "./package.json": "./package.json" - }, - "typesVersions": { - "*": { - "v3": [ - "./dist/v3/index.d.ts" - ] - } + "sourceDialects": [ + "triggerdotdev-source" + ] }, "scripts": { "clean": "rimraf dist", - "build": "npm run clean && npm run build:tsup", - "build:tsup": "tsup --dts-resolve", + "prepare": "tshy", + "build": "tshy", + "dev": "tshy --watch", "typecheck": "tsc --noEmit" }, "dependencies": { @@ -65,20 +52,44 @@ "msw": "^2.2.1" }, "devDependencies": { - "@trigger.dev/tsup": "workspace:*", "@types/debug": "^4.1.7", - "@types/node": "18", + "@types/node": "20.14.14", "@types/slug": "^5.0.3", "@types/uuid": "^9.0.0", "@types/ws": "^8.5.3", "encoding": "^0.1.13", "msw": "^2.2.1", "rimraf": "^3.0.2", - "tsup": "^8.0.1", "typed-emitter": "^2.1.0", - "typescript": "^5.3.0" + "typescript": "^5.5.4", + "tshy": "^3.0.2" }, "engines": { - "node": ">=18.0.0" + "node": ">=18.20.0" + }, + "exports": { + "./package.json": "./package.json", + ".": { + "import": { + "triggerdotdev-source": "./src/index.ts", + "types": "./dist/esm/index.d.ts", + "default": "./dist/esm/index.js" + }, + "require": { + "types": "./dist/commonjs/index.d.ts", + "default": "./dist/commonjs/index.js" + } + }, + "./v3": { + "import": { + "triggerdotdev-source": "./src/v3/index.ts", + "types": "./dist/esm/v3/index.d.ts", + "default": "./dist/esm/v3/index.js" + }, + "require": { + "types": "./dist/commonjs/v3/index.d.ts", + "default": "./dist/commonjs/v3/index.js" + } + } } -} \ No newline at end of file +} diff --git a/packages/trigger-sdk/src/apiClient.ts b/packages/trigger-sdk/src/apiClient.ts index b63cbf36c..dfdb2c49a 100644 --- a/packages/trigger-sdk/src/apiClient.ts +++ b/packages/trigger-sdk/src/apiClient.ts @@ -43,8 +43,8 @@ import { LogLevel, Logger } from "@trigger.dev/core/logger"; import { env } from "node:process"; import { z } from "zod"; -import { KeyValueStoreClient } from "./store/keyValueStoreClient"; -import { AutoYieldRateLimitError } from "./errors"; +import { KeyValueStoreClient } from "./store/keyValueStoreClient.js"; +import { AutoYieldRateLimitError } from "./errors.js"; export type ApiClientOptions = { apiKey?: string; diff --git a/packages/trigger-sdk/src/httpEndpoint.ts b/packages/trigger-sdk/src/httpEndpoint.ts index 4f5698e2f..4240365f5 100644 --- a/packages/trigger-sdk/src/httpEndpoint.ts +++ b/packages/trigger-sdk/src/httpEndpoint.ts @@ -6,12 +6,12 @@ import { RequestWithRawBodySchema, TriggerMetadata, } from "@trigger.dev/core"; -import { ParsedPayloadSchemaError } from "./errors"; -import { Job } from "./job"; -import { TriggerClient } from "./triggerClient"; -import { EventSpecification, EventSpecificationExample, Trigger, VerifyResult } from "./types"; -import { formatSchemaErrors } from "./utils/formatSchemaErrors"; -import { slugifyId } from "./utils"; +import { ParsedPayloadSchemaError } from "./errors.js"; +import { Job } from "./job.js"; +import { TriggerClient } from "./triggerClient.js"; +import { EventSpecification, EventSpecificationExample, Trigger, VerifyResult } from "./types.js"; +import { formatSchemaErrors } from "./utils/formatSchemaErrors.js"; +import { slugifyId } from "./utils.js"; type HttpEndpointOptions> = { id: string; diff --git a/packages/trigger-sdk/src/index.ts b/packages/trigger-sdk/src/index.ts index 4e5cfcb54..8f711b4ef 100644 --- a/packages/trigger-sdk/src/index.ts +++ b/packages/trigger-sdk/src/index.ts @@ -1,22 +1,22 @@ -export * from "./job"; -export * from "./triggerClient"; -export * from "./integrations"; -export * from "./triggers/eventTrigger"; -export * from "./triggers/externalSource"; -export * from "./triggers/dynamic"; -export * from "./triggers/scheduled"; -export * from "./triggers/notifications"; -export * from "./triggers/invokeTrigger"; -export * from "./triggers/webhook"; -export * from "./io"; -export * from "./types"; -export * from "./utils"; -export * from "./security"; +export * from "./job.js"; +export * from "./triggerClient.js"; +export * from "./integrations.js"; +export * from "./triggers/eventTrigger.js"; +export * from "./triggers/externalSource.js"; +export * from "./triggers/dynamic.js"; +export * from "./triggers/scheduled.js"; +export * from "./triggers/notifications.js"; +export * from "./triggers/invokeTrigger.js"; +export * from "./triggers/webhook.js"; +export * from "./io.js"; +export * from "./types.js"; +export * from "./utils.js"; +export * from "./security.js"; import { ServerTask } from "@trigger.dev/core"; -import { RedactString } from "./types"; -export { isTriggerError } from "./errors"; -export { retry } from "./retry"; +import { RedactString } from "./types.js"; +export { isTriggerError } from "./errors.js"; +export { retry } from "./retry.js"; export type { NormalizedRequest, EventFilter } from "@trigger.dev/core"; diff --git a/packages/trigger-sdk/src/integrations.ts b/packages/trigger-sdk/src/integrations.ts index 34568aa1a..f247e7cc4 100644 --- a/packages/trigger-sdk/src/integrations.ts +++ b/packages/trigger-sdk/src/integrations.ts @@ -1,6 +1,6 @@ import { ConnectionAuth, IntegrationMetadata } from "@trigger.dev/core"; -import { IO } from "./io"; -import { Prettify } from "@trigger.dev/core"; +import { IO } from "./io.js"; + export type { ConnectionAuth } from "@trigger.dev/core"; export interface TriggerIntegration { diff --git a/packages/trigger-sdk/src/io.ts b/packages/trigger-sdk/src/io.ts index 105af33f3..764dd4db6 100644 --- a/packages/trigger-sdk/src/io.ts +++ b/packages/trigger-sdk/src/io.ts @@ -25,7 +25,7 @@ import { LogLevel, Logger } from "@trigger.dev/core/logger"; import { BloomFilter } from "@trigger.dev/core/bloom"; import { AsyncLocalStorage } from "node:async_hooks"; import { webcrypto } from "node:crypto"; -import { ApiClient } from "./apiClient"; +import { ApiClient } from "./apiClient.js"; import { AutoYieldExecutionError, AutoYieldRateLimitError, @@ -38,23 +38,23 @@ import { TriggerInternalError, YieldExecutionError, isTriggerError, -} from "./errors"; -import { IntegrationTaskKey } from "./integrations"; -import { calculateRetryAt } from "./retry"; -import { TriggerStatus } from "./status"; -import { TriggerClient } from "./triggerClient"; -import { DynamicTrigger } from "./triggers/dynamic"; -import { ExternalSource, ExternalSourceParams } from "./triggers/externalSource"; -import { DynamicSchedule } from "./triggers/scheduled"; +} from "./errors.js"; +import { IntegrationTaskKey } from "./integrations.js"; +import { calculateRetryAt } from "./retry.js"; +import { TriggerStatus } from "./status.js"; +import { TriggerClient } from "./triggerClient.js"; +import { DynamicTrigger } from "./triggers/dynamic.js"; +import { ExternalSource, ExternalSourceParams } from "./triggers/externalSource.js"; +import { DynamicSchedule } from "./triggers/scheduled.js"; import { EventSpecification, TaskLogger, TriggerContext, WaitForEventResult, waitForEventSchema, -} from "./types"; +} from "./types.js"; import { z } from "zod"; -import { KeyValueStore } from "./store/keyValueStore"; +import { KeyValueStore } from "./store/keyValueStore.js"; import { Buffer } from "node:buffer"; export type IOTask = ServerTask; @@ -1065,6 +1065,7 @@ export class IO { .map((outcome) => outcome as PromiseRejectedResult); if (nonInternalErrors.length > 0) { + // @ts-expect-error throw nonInternalErrors[0].reason; } diff --git a/packages/trigger-sdk/src/ioWithIntegrations.ts b/packages/trigger-sdk/src/ioWithIntegrations.ts index b4ea70ae7..214618a77 100644 --- a/packages/trigger-sdk/src/ioWithIntegrations.ts +++ b/packages/trigger-sdk/src/ioWithIntegrations.ts @@ -1,6 +1,6 @@ import { ConnectionAuth } from "@trigger.dev/core"; -import { IOWithIntegrations, TriggerIntegration } from "./integrations"; -import { IO } from "./io"; +import { IOWithIntegrations, TriggerIntegration } from "./integrations.js"; +import { IO } from "./io.js"; export function createIOWithIntegrations>( io: IO, @@ -39,6 +39,7 @@ export function createIOWithIntegrations>, @@ -154,6 +154,10 @@ export class Job< (acc: Record, key) => { const integration = this.options.integrations![key]; + if (!integration) { + return acc; + } + acc[key] = { id: integration.id, metadata: integration.metadata, diff --git a/packages/trigger-sdk/src/runLocalStorage.ts b/packages/trigger-sdk/src/runLocalStorage.ts index e16274f2e..4024eac34 100644 --- a/packages/trigger-sdk/src/runLocalStorage.ts +++ b/packages/trigger-sdk/src/runLocalStorage.ts @@ -1,6 +1,6 @@ -import { IO } from "./io"; -import { TriggerContext } from "./types"; -import { TypedAsyncLocalStorage } from "./utils/typedAsyncLocalStorage"; +import { IO } from "./io.js"; +import { TriggerContext } from "./types.js"; +import { TypedAsyncLocalStorage } from "./utils/typedAsyncLocalStorage.js"; export type RunStore = { io: IO; diff --git a/packages/trigger-sdk/src/security.ts b/packages/trigger-sdk/src/security.ts index 3bfc78898..632ee20a2 100644 --- a/packages/trigger-sdk/src/security.ts +++ b/packages/trigger-sdk/src/security.ts @@ -1,6 +1,6 @@ import crypto from "node:crypto"; import type { BinaryToTextEncoding, BinaryLike, KeyObject } from "crypto"; -import { VerifyResult } from "./types"; +import { VerifyResult } from "./types.js"; /** Easily verify webhook payloads when they're using common signing methods. */ export async function verifyRequestSignature({ diff --git a/packages/trigger-sdk/src/status.ts b/packages/trigger-sdk/src/status.ts index 9e30c6c1d..63b89d2c1 100644 --- a/packages/trigger-sdk/src/status.ts +++ b/packages/trigger-sdk/src/status.ts @@ -1,6 +1,6 @@ import { DisplayProperty, StatusUpdate } from "@trigger.dev/core"; -import { IntegrationTaskKey } from "./integrations"; -import { IO } from "./io"; +import { IntegrationTaskKey } from "./integrations.js"; +import { IO } from "./io.js"; export class TriggerStatus { constructor( diff --git a/packages/trigger-sdk/src/store/keyValueStore.ts b/packages/trigger-sdk/src/store/keyValueStore.ts index c7b636d7e..25edd33af 100644 --- a/packages/trigger-sdk/src/store/keyValueStore.ts +++ b/packages/trigger-sdk/src/store/keyValueStore.ts @@ -1,6 +1,6 @@ -import { ApiClient } from "../apiClient"; -import { Json } from "../io"; -import { runLocalStorage } from "../runLocalStorage"; +import { ApiClient } from "../apiClient.js"; +import { Json } from "../io.js"; +import { runLocalStorage } from "../runLocalStorage.js"; export class KeyValueStore { constructor( diff --git a/packages/trigger-sdk/src/store/keyValueStoreClient.ts b/packages/trigger-sdk/src/store/keyValueStoreClient.ts index 3c81db53f..f65cd563e 100644 --- a/packages/trigger-sdk/src/store/keyValueStoreClient.ts +++ b/packages/trigger-sdk/src/store/keyValueStoreClient.ts @@ -1,6 +1,6 @@ import { AsyncMap } from "@trigger.dev/core"; import { KeyValueStoreResponseBody } from "@trigger.dev/core"; -import { JSONOutputSerializer, Json } from "../io"; +import { JSONOutputSerializer, Json } from "../io.js"; type QueryKeyValueStoreFunction = ( action: "DELETE" | "GET" | "HAS" | "SET", diff --git a/packages/trigger-sdk/src/triggerClient.ts b/packages/trigger-sdk/src/triggerClient.ts index 71c5e4848..7b35e180c 100644 --- a/packages/trigger-sdk/src/triggerClient.ts +++ b/packages/trigger-sdk/src/triggerClient.ts @@ -47,9 +47,9 @@ import { import { LogLevel, Logger } from "@trigger.dev/core/logger"; import EventEmitter from "node:events"; import { env } from "node:process"; -import * as packageJson from "../package.json"; -import { ApiClient } from "./apiClient"; -import { ConcurrencyLimit, ConcurrencyLimitOptions } from "./concurrencyLimit"; +import { version } from "../package.json"; +import { ApiClient } from "./apiClient.js"; +import { ConcurrencyLimit, ConcurrencyLimitOptions } from "./concurrencyLimit.js"; import { AutoYieldExecutionError, AutoYieldRateLimitError, @@ -61,19 +61,19 @@ import { ResumeWithTaskError, RetryWithTaskError, YieldExecutionError, -} from "./errors"; -import { EndpointOptions, HttpEndpoint, httpEndpoint } from "./httpEndpoint"; -import { TriggerIntegration } from "./integrations"; -import { IO, IOStats } from "./io"; -import { createIOWithIntegrations } from "./ioWithIntegrations"; -import { Job, JobOptions } from "./job"; -import { runLocalStorage } from "./runLocalStorage"; -import { KeyValueStore } from "./store/keyValueStore"; -import { DynamicTrigger, DynamicTriggerOptions } from "./triggers/dynamic"; -import { EventTrigger } from "./triggers/eventTrigger"; -import { ExternalSource } from "./triggers/externalSource"; -import { DynamicIntervalOptions, DynamicSchedule } from "./triggers/scheduled"; -import { WebhookDeliveryContext, WebhookSource } from "./triggers/webhook"; +} from "./errors.js"; +import { EndpointOptions, HttpEndpoint, httpEndpoint } from "./httpEndpoint.js"; +import { TriggerIntegration } from "./integrations.js"; +import { IO, IOStats } from "./io.js"; +import { createIOWithIntegrations } from "./ioWithIntegrations.js"; +import { Job, JobOptions } from "./job.js"; +import { runLocalStorage } from "./runLocalStorage.js"; +import { KeyValueStore } from "./store/keyValueStore.js"; +import { DynamicTrigger, DynamicTriggerOptions } from "./triggers/dynamic.js"; +import { EventTrigger } from "./triggers/eventTrigger.js"; +import { ExternalSource } from "./triggers/externalSource.js"; +import { DynamicIntervalOptions, DynamicSchedule } from "./triggers/scheduled.js"; +import { WebhookDeliveryContext, WebhookSource } from "./triggers/webhook.js"; import { type EventSpecification, type NotificationsEventEmitter, @@ -81,8 +81,8 @@ import { type TriggerContext, type TriggerPreprocessContext, type VerifyResult, -} from "./types"; -import { formatSchemaErrors } from "./utils/formatSchemaErrors"; +} from "./types.js"; +import { formatSchemaErrors } from "./utils/formatSchemaErrors.js"; const parseRequestPayload = (rawPayload: any) => { const result = RequestWithRawBodySchema.safeParse(rawPayload); @@ -1610,7 +1610,7 @@ export class TriggerClient { const integration = integrations[key]; const auth = (connections ?? {})[key]; - const result = await this.#resolveConnection(ctx, integration, auth); + const result = await this.#resolveConnection(ctx, integration!, auth); if (result.ok) { return { @@ -1650,7 +1650,7 @@ export class TriggerClient { const integration = integrations[result.key]; - acc[result.key] = { id: integration.id, error: result.error }; + acc[result.key] = { id: integration!.id, error: result.error }; return acc; }, @@ -1766,7 +1766,7 @@ export class TriggerClient { (acc: Record, key) => { const integration = job.options.integrations![key]; - acc[key] = this.#buildJobIntegration(integration); + acc[key] = this.#buildJobIntegration(integration!); return acc; }, @@ -1795,7 +1795,7 @@ export class TriggerClient { #standardResponseHeaders(start: number): Record { return { "Trigger-Version": API_VERSIONS.LAZY_LOADED_CACHED_TASKS, - "Trigger-SDK-Version": packageJson.version, + "Trigger-SDK-Version": version, "X-Trigger-Request-Timing": `dur=${performance.now() - start / 1000.0}`, }; } @@ -1869,8 +1869,10 @@ function deepMergeOptions(obj1: Options, obj2: Options): Options { for (const key in obj2) { if (obj2.hasOwnProperty(key)) { if (key in mergedOptions) { + // @ts-expect-error mergedOptions[key] = [...mergedOptions[key], ...obj2[key]]; } else { + // @ts-expect-error mergedOptions[key] = obj2[key]; } } diff --git a/packages/trigger-sdk/src/triggers/dynamic.ts b/packages/trigger-sdk/src/triggers/dynamic.ts index 0f9e19589..739d63915 100644 --- a/packages/trigger-sdk/src/triggers/dynamic.ts +++ b/packages/trigger-sdk/src/triggers/dynamic.ts @@ -4,12 +4,12 @@ import { TriggerMetadata, deepMergeFilters, } from "@trigger.dev/core"; -import { Job } from "../job"; -import { TriggerClient } from "../triggerClient"; -import { EventSpecification, Trigger } from "../types"; -import { slugifyId } from "../utils"; -import { ExternalSource, ExternalSourceParams } from "./externalSource"; -import { runLocalStorage } from "../runLocalStorage"; +import { Job } from "../job.js"; +import { TriggerClient } from "../triggerClient.js"; +import { EventSpecification, Trigger } from "../types.js"; +import { slugifyId } from "../utils.js"; +import { ExternalSource, ExternalSourceParams } from "./externalSource.js"; +import { runLocalStorage } from "../runLocalStorage.js"; import { EventFilter } from "@trigger.dev/core"; /** Options for a DynamicTrigger */ diff --git a/packages/trigger-sdk/src/triggers/eventTrigger.ts b/packages/trigger-sdk/src/triggers/eventTrigger.ts index ed8a526c3..c12eb78a7 100644 --- a/packages/trigger-sdk/src/triggers/eventTrigger.ts +++ b/packages/trigger-sdk/src/triggers/eventTrigger.ts @@ -1,16 +1,16 @@ import { EventFilter, TriggerMetadata, deepMergeFilters } from "@trigger.dev/core"; -import { Job } from "../job"; -import { TriggerClient } from "../triggerClient"; +import { Job } from "../job.js"; +import { TriggerClient } from "../triggerClient.js"; import { EventSpecification, EventSpecificationExample, EventTypeFromSpecification, SchemaParser, Trigger, -} from "../types"; -import { formatSchemaErrors } from "../utils/formatSchemaErrors"; -import { ParsedPayloadSchemaError } from "../errors"; -import { VerifyCallback } from "../httpEndpoint"; +} from "../types.js"; +import { formatSchemaErrors } from "../utils/formatSchemaErrors.js"; +import { ParsedPayloadSchemaError } from "../errors.js"; +import { VerifyCallback } from "../httpEndpoint.js"; type EventTriggerOptions> = { event: TEventSpecification; diff --git a/packages/trigger-sdk/src/triggers/externalSource.ts b/packages/trigger-sdk/src/triggers/externalSource.ts index 0285b6e00..e4eb0f015 100644 --- a/packages/trigger-sdk/src/triggers/externalSource.ts +++ b/packages/trigger-sdk/src/triggers/externalSource.ts @@ -14,12 +14,12 @@ import { } from "@trigger.dev/core"; import { Logger } from "@trigger.dev/core/logger"; import type { Buffer } from "buffer"; -import { IOWithIntegrations, TriggerIntegration } from "../integrations"; -import { IO } from "../io"; -import { Job } from "../job"; -import { TriggerClient } from "../triggerClient"; -import type { EventSpecification, SchemaParser, Trigger, TriggerContext } from "../types"; -import { slugifyId } from "../utils"; +import { IOWithIntegrations, TriggerIntegration } from "../integrations.js"; +import { IO } from "../io.js"; +import { Job } from "../job.js"; +import { TriggerClient } from "../triggerClient.js"; +import type { EventSpecification, SchemaParser, Trigger, TriggerContext } from "../types.js"; +import { slugifyId } from "../utils.js"; export type HttpSourceEvent = { url: string; diff --git a/packages/trigger-sdk/src/triggers/invokeTrigger.ts b/packages/trigger-sdk/src/triggers/invokeTrigger.ts index ee1648454..4fd47453d 100644 --- a/packages/trigger-sdk/src/triggers/invokeTrigger.ts +++ b/packages/trigger-sdk/src/triggers/invokeTrigger.ts @@ -1,16 +1,10 @@ import { TriggerMetadata } from "@trigger.dev/core"; -import { ParsedPayloadSchemaError } from "../errors"; -import { Job } from "../job"; -import { TriggerClient } from "../triggerClient"; -import { - EventSpecification, - EventSpecificationExample, - SchemaParser, - Trigger, - VerifyResult, -} from "../types"; -import { formatSchemaErrors } from "../utils/formatSchemaErrors"; import { TypeOf, ZodType, z } from "zod"; +import { ParsedPayloadSchemaError } from "../errors.js"; +import { Job } from "../job.js"; +import { TriggerClient } from "../triggerClient.js"; +import { EventSpecification, EventSpecificationExample, Trigger } from "../types.js"; +import { formatSchemaErrors } from "../utils/formatSchemaErrors.js"; /** Configuration options for an InvokeTrigger */ type InvokeTriggerOptions = { diff --git a/packages/trigger-sdk/src/triggers/notifications.ts b/packages/trigger-sdk/src/triggers/notifications.ts index 99183bda4..7afe047ad 100644 --- a/packages/trigger-sdk/src/triggers/notifications.ts +++ b/packages/trigger-sdk/src/triggers/notifications.ts @@ -7,10 +7,10 @@ import { MissingConnectionResolvedNotificationPayloadSchema, TriggerMetadata, } from "@trigger.dev/core"; -import { TriggerIntegration } from "../integrations"; -import { Job } from "../job"; -import { TriggerClient } from "../triggerClient"; -import { EventSpecification, Trigger } from "../types"; +import { TriggerIntegration } from "../integrations.js"; +import { Job } from "../job.js"; +import { TriggerClient } from "../triggerClient.js"; +import { EventSpecification, Trigger } from "../types.js"; export function missingConnectionNotification(integrations: Array) { return new MissingConnectionNotification({ integrations }); diff --git a/packages/trigger-sdk/src/triggers/scheduled.ts b/packages/trigger-sdk/src/triggers/scheduled.ts index fcfd84087..a672bf054 100644 --- a/packages/trigger-sdk/src/triggers/scheduled.ts +++ b/packages/trigger-sdk/src/triggers/scheduled.ts @@ -7,11 +7,11 @@ import { TriggerMetadata, currentDate, } from "@trigger.dev/core"; -import { Job } from "../job"; -import { TriggerClient } from "../triggerClient"; -import { EventSpecification, Trigger } from "../types"; +import { Job } from "../job.js"; +import { TriggerClient } from "../triggerClient.js"; +import { EventSpecification, Trigger } from "../types.js"; import cronstrue from "cronstrue"; -import { runLocalStorage } from "../runLocalStorage"; +import { runLocalStorage } from "../runLocalStorage.js"; type ScheduledEventSpecification = EventSpecification; @@ -85,12 +85,14 @@ export class CronTrigger implements Trigger { get event() { /** - * We need to concat `(UTC)` string at the end of the human readable string to avoid confusion + * We need to concat `(UTC)` string at the end of the human readable string to avoid confusion * with execution time/last run of a job in the UI dashboard which is displayed in local time. */ - const humanReadable = cronstrue.toString(this.options.cron, { - throwExceptionOnParseError: false, - }).concat(" (UTC)"); + const humanReadable = cronstrue + .toString(this.options.cron, { + throwExceptionOnParseError: false, + }) + .concat(" (UTC)"); return { name: "trigger.scheduled", diff --git a/packages/trigger-sdk/src/triggers/webhook.ts b/packages/trigger-sdk/src/triggers/webhook.ts index 85a360127..bf3ea76d9 100644 --- a/packages/trigger-sdk/src/triggers/webhook.ts +++ b/packages/trigger-sdk/src/triggers/webhook.ts @@ -6,18 +6,18 @@ import { TriggerMetadata, deepMergeFilters, } from "@trigger.dev/core"; -import { IOWithIntegrations, TriggerIntegration } from "../integrations"; -import { IO } from "../io"; -import { Job } from "../job"; -import { TriggerClient } from "../triggerClient"; +import { IOWithIntegrations, TriggerIntegration } from "../integrations.js"; +import { IO } from "../io.js"; +import { Job } from "../job.js"; +import { TriggerClient } from "../triggerClient.js"; import type { EventSpecification, SchemaParser, Trigger, TriggerContext, VerifyResult, -} from "../types"; -import { slugifyId } from "../utils"; +} from "../types.js"; +import { slugifyId } from "../utils.js"; import { SerializableJson } from "@trigger.dev/core"; import { Prettify } from "@trigger.dev/core"; import { createHash } from "node:crypto"; diff --git a/packages/trigger-sdk/src/typed-emitter.ts b/packages/trigger-sdk/src/typed-emitter.ts new file mode 100644 index 000000000..4404c1325 --- /dev/null +++ b/packages/trigger-sdk/src/typed-emitter.ts @@ -0,0 +1,43 @@ +export type EventMap = { + [key: string]: (...args: any[]) => void; +}; + +/** + * Type-safe event emitter. + * + * Use it like this: + * + * ```typescript + * type MyEvents = { + * error: (error: Error) => void; + * message: (from: string, content: string) => void; + * } + * + * const myEmitter = new EventEmitter() as TypedEmitter; + * + * myEmitter.emit("error", "x") // <- Will catch this type error; + * ``` + */ +interface TypedEventEmitter { + addListener(event: E, listener: Events[E]): this; + on(event: E, listener: Events[E]): this; + once(event: E, listener: Events[E]): this; + prependListener(event: E, listener: Events[E]): this; + prependOnceListener(event: E, listener: Events[E]): this; + + off(event: E, listener: Events[E]): this; + removeAllListeners(event?: E): this; + removeListener(event: E, listener: Events[E]): this; + + emit(event: E, ...args: Parameters): boolean; + // The sloppy `eventNames()` return type is to mitigate type incompatibilities - see #5 + eventNames(): (keyof Events | string | symbol)[]; + rawListeners(event: E): Events[E][]; + listeners(event: E): Events[E][]; + listenerCount(event: E): number; + + getMaxListeners(): number; + setMaxListeners(maxListeners: number): this; +} + +export type { TypedEventEmitter }; diff --git a/packages/trigger-sdk/src/types.ts b/packages/trigger-sdk/src/types.ts index a699d924f..78a4487a6 100644 --- a/packages/trigger-sdk/src/types.ts +++ b/packages/trigger-sdk/src/types.ts @@ -13,10 +13,10 @@ import type { TriggerMetadata, } from "@trigger.dev/core"; import { Logger } from "@trigger.dev/core/logger"; -import type TypedEmitter from "typed-emitter"; +import type { TypedEventEmitter } from "./typed-emitter.js"; import { z } from "zod"; -import { Job } from "./job"; -import { TriggerClient } from "./triggerClient"; +import { Job } from "./job.js"; +import { TriggerClient } from "./triggerClient.js"; export type { DisplayProperty, @@ -179,4 +179,4 @@ export type NotificationEvents = { runFailed: (notification: FailedRunNotification) => void; }; -export type NotificationsEventEmitter = TypedEmitter; +export type NotificationsEventEmitter = TypedEventEmitter; diff --git a/packages/trigger-sdk/src/utils/formatSchemaErrors.ts b/packages/trigger-sdk/src/utils/formatSchemaErrors.ts index 344a8ea6b..d0f3d3331 100644 --- a/packages/trigger-sdk/src/utils/formatSchemaErrors.ts +++ b/packages/trigger-sdk/src/utils/formatSchemaErrors.ts @@ -1,5 +1,5 @@ import type { SchemaError } from "@trigger.dev/core"; -import { SchemaParserIssue } from "../types"; +import { SchemaParserIssue } from "../types.js"; export function formatSchemaErrors(errors: SchemaParserIssue[]): SchemaError[] { return errors.map((error) => { diff --git a/packages/trigger-sdk/src/v3/cache.ts b/packages/trigger-sdk/src/v3/cache.ts index 0ea1869f6..0ebe9ccd3 100644 --- a/packages/trigger-sdk/src/v3/cache.ts +++ b/packages/trigger-sdk/src/v3/cache.ts @@ -1,5 +1,5 @@ import { SemanticInternalAttributes } from "@trigger.dev/core/v3"; -import { tracer } from "./tracer"; +import { tracer } from "./tracer.js"; export type CacheMetadata = { createdTime: number; diff --git a/packages/trigger-sdk/src/v3/envvars.ts b/packages/trigger-sdk/src/v3/envvars.ts index 588d1591e..c9bbd0c10 100644 --- a/packages/trigger-sdk/src/v3/envvars.ts +++ b/packages/trigger-sdk/src/v3/envvars.ts @@ -14,8 +14,8 @@ import { mergeRequestOptions, taskContext, } from "@trigger.dev/core/v3"; -import { apiClientMissingError } from "./shared"; -import { tracer } from "./tracer"; +import { apiClientMissingError } from "./shared.js"; +import { tracer } from "./tracer.js"; export type { CreateEnvironmentVariableParams, ImportEnvironmentVariablesParams }; diff --git a/packages/trigger-sdk/src/v3/idempotencyKeys.ts b/packages/trigger-sdk/src/v3/idempotencyKeys.ts index db8133dd9..8416aa5ec 100644 --- a/packages/trigger-sdk/src/v3/idempotencyKeys.ts +++ b/packages/trigger-sdk/src/v3/idempotencyKeys.ts @@ -69,11 +69,13 @@ function injectScope(scope: "run" | "attempt" | "global"): string[] { if (taskContext?.ctx) { return [taskContext.ctx.run.id]; } + break; } case "attempt": { if (taskContext?.ctx) { return [taskContext.ctx.attempt.id]; } + break; } } diff --git a/packages/trigger-sdk/src/v3/index.ts b/packages/trigger-sdk/src/v3/index.ts index 84b1365de..597961e31 100644 --- a/packages/trigger-sdk/src/v3/index.ts +++ b/packages/trigger-sdk/src/v3/index.ts @@ -1,15 +1,15 @@ -export * from "./cache"; -export * from "./config"; -export { retry, type RetryOptions } from "./retry"; -export { queue } from "./shared"; -export * from "./tasks"; -export * from "./wait"; -export * from "./usage"; -export * from "./idempotencyKeys"; -export * from "./tags"; +export * from "./cache.js"; +export * from "./config.js"; +export { retry, type RetryOptions } from "./retry.js"; +export { queue } from "./shared.js"; +export * from "./tasks.js"; +export * from "./wait.js"; +export * from "./usage.js"; +export * from "./idempotencyKeys.js"; +export * from "./tags.js"; export type { Context }; -import type { Context } from "./shared"; +import type { Context } from "./shared.js"; import type { ApiClientConfiguration } from "@trigger.dev/core/v3"; import { apiClientManager } from "@trigger.dev/core/v3"; @@ -31,10 +31,10 @@ export { type LogLevel, } from "@trigger.dev/core/v3"; -export { runs } from "./runs"; -export * as schedules from "./schedules"; -export * as envvars from "./envvars"; -export type { ImportEnvironmentVariablesParams } from "./envvars"; +export { runs } from "./runs.js"; +export * as schedules from "./schedules/index.js"; +export * as envvars from "./envvars.js"; +export type { ImportEnvironmentVariablesParams } from "./envvars.js"; /** * Register the global API client configuration. Alternatively, you can set the `TRIGGER_SECRET_KEY` and `TRIGGER_API_URL` environment variables. diff --git a/packages/trigger-sdk/src/v3/retry.ts b/packages/trigger-sdk/src/v3/retry.ts index a1253d35d..15fafefed 100644 --- a/packages/trigger-sdk/src/v3/retry.ts +++ b/packages/trigger-sdk/src/v3/retry.ts @@ -24,7 +24,7 @@ import { import { defaultFetchRetryOptions } from "@trigger.dev/core/v3"; import type { HttpHandler } from "msw"; import { AsyncLocalStorage } from "node:async_hooks"; -import { tracer } from "./tracer"; +import { tracer } from "./tracer.js"; export type { RetryOptions }; @@ -457,6 +457,8 @@ const calculateRetryDelayForResponse = async ( break; } } + + return; }; const getRetryStrategyForResponse = async ( @@ -468,8 +470,17 @@ const getRetryStrategyForResponse = async ( for (let i = 0; i < statusCodes.length; i++) { const statusRange = statusCodes[i]; + + if (!statusRange) { + continue; + } + const strategy = retry[statusRange]; + if (!strategy) { + continue; + } + if (isStatusCodeInRange(response.status, statusRange)) { if (strategy.bodyFilter) { const body = safeJsonParse(await clonedResponse.text()); @@ -488,6 +499,8 @@ const getRetryStrategyForResponse = async ( return strategy; } } + + return; }; /** @@ -512,15 +525,19 @@ const isStatusCodeInRange = (statusCode: number, statusRange: string): boolean = const [start, end] = statusRange.split("-"); if (end) { - return statusCode >= parseInt(start, 10) && statusCode <= parseInt(end, 10); + return statusCode >= parseInt(start ?? "0", 10) && statusCode <= parseInt(end, 10); } - if (start.endsWith("xx")) { + if (start?.endsWith("xx")) { const prefix = start.slice(0, -2); const statusCodePrefix = Math.floor(statusCode / 100).toString(); return statusCodePrefix === prefix; } + if (!start) { + return false; + } + const statusCodeString = statusCode.toString(); const rangePrefix = start.slice(0, -1); diff --git a/packages/trigger-sdk/src/v3/runs.ts b/packages/trigger-sdk/src/v3/runs.ts index a1542e3f7..571d4e432 100644 --- a/packages/trigger-sdk/src/v3/runs.ts +++ b/packages/trigger-sdk/src/v3/runs.ts @@ -17,8 +17,8 @@ import { isRequestOptions, mergeRequestOptions, } from "@trigger.dev/core/v3"; -import { AnyTask, Prettify, RunHandle, Task, apiClientMissingError } from "./shared"; -import { tracer } from "./tracer"; +import { AnyTask, Prettify, RunHandle, Task, apiClientMissingError } from "./shared.js"; +import { tracer } from "./tracer.js"; export type RetrieveRunResult = Prettify< TRunId extends RunHandle diff --git a/packages/trigger-sdk/src/v3/schedules/index.ts b/packages/trigger-sdk/src/v3/schedules/index.ts index d8b21933a..6fd8785d3 100644 --- a/packages/trigger-sdk/src/v3/schedules/index.ts +++ b/packages/trigger-sdk/src/v3/schedules/index.ts @@ -12,9 +12,9 @@ import { taskCatalog, } from "@trigger.dev/core/v3"; import { zodfetch } from "@trigger.dev/core/v3/zodfetch"; -import { Task, TaskOptions, apiClientMissingError, createTask } from "../shared"; -import * as SchedulesAPI from "./api"; -import { tracer } from "../tracer"; +import { Task, TaskOptions, apiClientMissingError, createTask } from "../shared.js"; +import * as SchedulesAPI from "./api.js"; +import { tracer } from "../tracer.js"; export type ScheduleOptions< TIdentifier extends string, diff --git a/packages/trigger-sdk/src/v3/shared.ts b/packages/trigger-sdk/src/v3/shared.ts index 25074c7c5..4ddc2235b 100644 --- a/packages/trigger-sdk/src/v3/shared.ts +++ b/packages/trigger-sdk/src/v3/shared.ts @@ -36,10 +36,10 @@ import { taskCatalog, taskContext, } from "@trigger.dev/core/v3"; -import * as packageJson from "../../package.json"; -import { tracer } from "./tracer"; -import { PollOptions, RetrieveRunResult, runs } from "./runs"; -import { IdempotencyKey, idempotencyKeys, isIdempotencyKey } from "./idempotencyKeys"; +import { version } from "../../package.json"; +import { tracer } from "./tracer.js"; +import { PollOptions, RetrieveRunResult, runs } from "./runs.js"; +import { IdempotencyKey, idempotencyKeys, isIdempotencyKey } from "./idempotencyKeys.js"; export type Context = TaskRunContext; @@ -545,7 +545,7 @@ export function createTask< taskCatalog.registerTaskMetadata({ id: params.id, - packageVersion: packageJson.version, + packageVersion: version, queue: params.queue, retry: params.retry ? { ...defaultRetryOptions, ...params.retry } : undefined, machine: params.machine, diff --git a/packages/trigger-sdk/src/v3/tags.ts b/packages/trigger-sdk/src/v3/tags.ts index 991eaab38..9b7dfb8e2 100644 --- a/packages/trigger-sdk/src/v3/tags.ts +++ b/packages/trigger-sdk/src/v3/tags.ts @@ -7,8 +7,8 @@ import { mergeRequestOptions, taskContext, } from "@trigger.dev/core/v3"; -import { apiClientMissingError } from "./shared"; -import { tracer } from "./tracer"; +import { apiClientMissingError } from "./shared.js"; +import { tracer } from "./tracer.js"; export const tags = { add: addTags, diff --git a/packages/trigger-sdk/src/v3/tasks.ts b/packages/trigger-sdk/src/v3/tasks.ts index 1d0464a3c..0e84d586c 100644 --- a/packages/trigger-sdk/src/v3/tasks.ts +++ b/packages/trigger-sdk/src/v3/tasks.ts @@ -6,7 +6,7 @@ import { trigger, triggerAndPoll, triggerAndWait, -} from "./shared"; +} from "./shared.js"; import type { TaskOptions, @@ -22,7 +22,7 @@ import type { TaskIdentifier, TaskRunOptions, AnyTask, -} from "./shared"; +} from "./shared.js"; export type { TaskOptions, diff --git a/packages/trigger-sdk/src/v3/tracer.ts b/packages/trigger-sdk/src/v3/tracer.ts index 916127322..d33502336 100644 --- a/packages/trigger-sdk/src/v3/tracer.ts +++ b/packages/trigger-sdk/src/v3/tracer.ts @@ -1,4 +1,4 @@ import { TriggerTracer } from "@trigger.dev/core/v3"; -import * as packageJson from "../../package.json"; +import { version } from "../../package.json"; -export const tracer = new TriggerTracer({ name: "@trigger.dev/sdk", version: packageJson.version }); +export const tracer = new TriggerTracer({ name: "@trigger.dev/sdk", version: version }); diff --git a/packages/trigger-sdk/src/v3/wait.ts b/packages/trigger-sdk/src/v3/wait.ts index 56b48a93e..6c56453f0 100644 --- a/packages/trigger-sdk/src/v3/wait.ts +++ b/packages/trigger-sdk/src/v3/wait.ts @@ -1,5 +1,5 @@ import { SemanticInternalAttributes, accessoryAttributes, runtime } from "@trigger.dev/core/v3"; -import { tracer } from "./tracer"; +import { tracer } from "./tracer.js"; export type WaitOptions = | { diff --git a/packages/trigger-sdk/tsconfig.build.json b/packages/trigger-sdk/tsconfig.build.json new file mode 100644 index 000000000..66caf10a5 --- /dev/null +++ b/packages/trigger-sdk/tsconfig.build.json @@ -0,0 +1,9 @@ +{ + "extends": "../../.configs/tsconfig.base.json", + "compilerOptions": { + "composite": true, + "sourceMap": true, + "stripInternal": true, + "isolatedDeclarations": false + } +} diff --git a/packages/trigger-sdk/tsconfig.json b/packages/trigger-sdk/tsconfig.json index c32bd0fe5..ec09e52a4 100644 --- a/packages/trigger-sdk/tsconfig.json +++ b/packages/trigger-sdk/tsconfig.json @@ -4,12 +4,7 @@ "isolatedDeclarations": false, "composite": true, "sourceMap": true, - "paths": { - "@trigger.dev/core/*": ["../core/src/*"], - "@trigger.dev/core": ["../core/src/index"] - }, "stripInternal": true }, - "include": ["./src/**/*.ts"], - "exclude": ["node_modules"] + "include": ["./src/**/*.ts"] } diff --git a/packages/trigger-sdk/tsconfig.tsbuildinfo b/packages/trigger-sdk/tsconfig.tsbuildinfo deleted file mode 100644 index 3ea5c26cc..000000000 --- a/packages/trigger-sdk/tsconfig.tsbuildinfo +++ /dev/null @@ -1 +0,0 @@ -{"program":{"fileNames":["../../node_modules/.pnpm/typescript@5.3.2/node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/.pnpm/typescript@5.3.2/node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/.pnpm/typescript@5.3.2/node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/.pnpm/typescript@5.3.2/node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/.pnpm/typescript@5.3.2/node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/.pnpm/typescript@5.3.2/node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/.pnpm/typescript@5.3.2/node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/.pnpm/typescript@5.3.2/node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/.pnpm/typescript@5.3.2/node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/.pnpm/typescript@5.3.2/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/.pnpm/typescript@5.3.2/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/.pnpm/typescript@5.3.2/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/.pnpm/typescript@5.3.2/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/.pnpm/typescript@5.3.2/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/.pnpm/typescript@5.3.2/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/.pnpm/typescript@5.3.2/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/.pnpm/typescript@5.3.2/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/.pnpm/typescript@5.3.2/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/.pnpm/typescript@5.3.2/node_modules/typescript/lib/lib.es2017.date.d.ts","../../node_modules/.pnpm/typescript@5.3.2/node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/.pnpm/typescript@5.3.2/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/.pnpm/typescript@5.3.2/node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/.pnpm/typescript@5.3.2/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/.pnpm/typescript@5.3.2/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/.pnpm/typescript@5.3.2/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/.pnpm/typescript@5.3.2/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/.pnpm/typescript@5.3.2/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/.pnpm/typescript@5.3.2/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/.pnpm/typescript@5.3.2/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/.pnpm/typescript@5.3.2/node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/.pnpm/typescript@5.3.2/node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/.pnpm/typescript@5.3.2/node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/.pnpm/typescript@5.3.2/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/.pnpm/typescript@5.3.2/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/.pnpm/typescript@5.3.2/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/.pnpm/typescript@5.3.2/node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/.pnpm/typescript@5.3.2/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/.pnpm/typescript@5.3.2/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/.pnpm/typescript@5.3.2/node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/.pnpm/typescript@5.3.2/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/.pnpm/typescript@5.3.2/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/.pnpm/typescript@5.3.2/node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/.pnpm/typescript@5.3.2/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/.pnpm/typescript@5.3.2/node_modules/typescript/lib/lib.decorators.d.ts","../../node_modules/.pnpm/typescript@5.3.2/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../node_modules/.pnpm/ulidx@2.2.1/node_modules/ulidx/dist/types.d.ts","../../node_modules/.pnpm/ulidx@2.2.1/node_modules/ulidx/dist/ulid.d.ts","../../node_modules/.pnpm/ulidx@2.2.1/node_modules/ulidx/dist/constants.d.ts","../../node_modules/.pnpm/ulidx@2.2.1/node_modules/ulidx/dist/index.d.ts","../../node_modules/.pnpm/zod@3.22.3/node_modules/zod/lib/helpers/typealiases.d.ts","../../node_modules/.pnpm/zod@3.22.3/node_modules/zod/lib/helpers/util.d.ts","../../node_modules/.pnpm/zod@3.22.3/node_modules/zod/lib/zoderror.d.ts","../../node_modules/.pnpm/zod@3.22.3/node_modules/zod/lib/locales/en.d.ts","../../node_modules/.pnpm/zod@3.22.3/node_modules/zod/lib/errors.d.ts","../../node_modules/.pnpm/zod@3.22.3/node_modules/zod/lib/helpers/parseutil.d.ts","../../node_modules/.pnpm/zod@3.22.3/node_modules/zod/lib/helpers/enumutil.d.ts","../../node_modules/.pnpm/zod@3.22.3/node_modules/zod/lib/helpers/errorutil.d.ts","../../node_modules/.pnpm/zod@3.22.3/node_modules/zod/lib/helpers/partialutil.d.ts","../../node_modules/.pnpm/zod@3.22.3/node_modules/zod/lib/types.d.ts","../../node_modules/.pnpm/zod@3.22.3/node_modules/zod/lib/external.d.ts","../../node_modules/.pnpm/zod@3.22.3/node_modules/zod/lib/index.d.ts","../../node_modules/.pnpm/zod@3.22.3/node_modules/zod/index.d.ts","../core/src/types.ts","../core/src/schemas/addmissingversionfield.ts","../core/src/schemas/errors.ts","../core/src/schemas/eventfilter.ts","../core/src/schemas/integrations.ts","../core/src/schemas/json.ts","../core/src/schemas/properties.ts","../core/src/schemas/schedules.ts","../core/src/schemas/tasks.ts","../core/src/schemas/triggers.ts","../core/src/schemas/statuses.ts","../core/src/schemas/runs.ts","../core/src/schemas/requestfilter.ts","../core/src/schemas/api.ts","../core/src/schemas/notifications.ts","../core/src/schemas/fetch.ts","../core/src/schemas/events.ts","../core/src/schemas/request.ts","../core/src/schemas/jobs.ts","../core/src/schemas/index.ts","../core/src/utils.ts","../core/src/retry.ts","../core/src/replacements.ts","../core/src/searchparams.ts","../core/src/eventfiltermatches.ts","../core/src/requestfiltermatches.ts","../core/src/versions.ts","../core/src/index.ts","../core-backend/src/bloom.ts","../../node_modules/.pnpm/@opentelemetry+api@1.8.0/node_modules/@opentelemetry/api/build/src/baggage/internal/symbol.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.8.0/node_modules/@opentelemetry/api/build/src/baggage/types.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.8.0/node_modules/@opentelemetry/api/build/src/baggage/utils.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.8.0/node_modules/@opentelemetry/api/build/src/common/exception.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.8.0/node_modules/@opentelemetry/api/build/src/common/time.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.8.0/node_modules/@opentelemetry/api/build/src/common/attributes.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.8.0/node_modules/@opentelemetry/api/build/src/context/types.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.8.0/node_modules/@opentelemetry/api/build/src/context/context.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.8.0/node_modules/@opentelemetry/api/build/src/api/context.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.8.0/node_modules/@opentelemetry/api/build/src/diag/types.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.8.0/node_modules/@opentelemetry/api/build/src/diag/consolelogger.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.8.0/node_modules/@opentelemetry/api/build/src/api/diag.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.8.0/node_modules/@opentelemetry/api/build/src/metrics/observableresult.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.8.0/node_modules/@opentelemetry/api/build/src/metrics/metric.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.8.0/node_modules/@opentelemetry/api/build/src/metrics/meter.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.8.0/node_modules/@opentelemetry/api/build/src/metrics/noopmeter.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.8.0/node_modules/@opentelemetry/api/build/src/metrics/meterprovider.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.8.0/node_modules/@opentelemetry/api/build/src/api/metrics.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.8.0/node_modules/@opentelemetry/api/build/src/propagation/textmappropagator.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.8.0/node_modules/@opentelemetry/api/build/src/baggage/context-helpers.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.8.0/node_modules/@opentelemetry/api/build/src/api/propagation.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.8.0/node_modules/@opentelemetry/api/build/src/trace/attributes.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.8.0/node_modules/@opentelemetry/api/build/src/trace/trace_state.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.8.0/node_modules/@opentelemetry/api/build/src/trace/span_context.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.8.0/node_modules/@opentelemetry/api/build/src/trace/link.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.8.0/node_modules/@opentelemetry/api/build/src/trace/status.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.8.0/node_modules/@opentelemetry/api/build/src/trace/span.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.8.0/node_modules/@opentelemetry/api/build/src/trace/span_kind.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.8.0/node_modules/@opentelemetry/api/build/src/trace/spanoptions.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.8.0/node_modules/@opentelemetry/api/build/src/trace/tracer.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.8.0/node_modules/@opentelemetry/api/build/src/trace/tracer_options.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.8.0/node_modules/@opentelemetry/api/build/src/trace/proxytracer.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.8.0/node_modules/@opentelemetry/api/build/src/trace/tracer_provider.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.8.0/node_modules/@opentelemetry/api/build/src/trace/proxytracerprovider.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.8.0/node_modules/@opentelemetry/api/build/src/trace/samplingresult.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.8.0/node_modules/@opentelemetry/api/build/src/trace/sampler.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.8.0/node_modules/@opentelemetry/api/build/src/trace/trace_flags.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.8.0/node_modules/@opentelemetry/api/build/src/trace/internal/utils.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.8.0/node_modules/@opentelemetry/api/build/src/trace/spancontext-utils.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.8.0/node_modules/@opentelemetry/api/build/src/trace/invalid-span-constants.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.8.0/node_modules/@opentelemetry/api/build/src/trace/context-utils.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.8.0/node_modules/@opentelemetry/api/build/src/api/trace.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.8.0/node_modules/@opentelemetry/api/build/src/context-api.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.8.0/node_modules/@opentelemetry/api/build/src/diag-api.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.8.0/node_modules/@opentelemetry/api/build/src/metrics-api.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.8.0/node_modules/@opentelemetry/api/build/src/propagation-api.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.8.0/node_modules/@opentelemetry/api/build/src/trace-api.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.8.0/node_modules/@opentelemetry/api/build/src/index.d.ts","../core-backend/src/logger.ts","../core-backend/src/index.ts","./src/errors.ts","./src/integrations.ts","./src/retry.ts","./src/status.ts","./package.json","./src/concurrencylimit.ts","../../node_modules/.pnpm/typed-emitter@2.1.0/node_modules/typed-emitter/index.d.ts","./src/types.ts","./src/utils/typedasynclocalstorage.ts","./src/runlocalstorage.ts","./src/utils.ts","./src/job.ts","./src/utils/formatschemaerrors.ts","./src/httpendpoint.ts","./src/iowithintegrations.ts","./src/store/keyvaluestore.ts","./src/triggers/externalsource.ts","./src/triggers/dynamic.ts","./src/triggers/eventtrigger.ts","../../node_modules/.pnpm/cronstrue@2.21.0/node_modules/cronstrue/dist/options.d.ts","../../node_modules/.pnpm/cronstrue@2.21.0/node_modules/cronstrue/dist/i18n/locale.d.ts","../../node_modules/.pnpm/cronstrue@2.21.0/node_modules/cronstrue/dist/i18n/localeloader.d.ts","../../node_modules/.pnpm/cronstrue@2.21.0/node_modules/cronstrue/dist/expressiondescriptor.d.ts","../../node_modules/.pnpm/cronstrue@2.21.0/node_modules/cronstrue/dist/cronstrue.d.ts","./src/triggers/scheduled.ts","./src/triggers/webhook.ts","./src/triggerclient.ts","./src/io.ts","./src/store/keyvaluestoreclient.ts","./src/apiclient.ts","./src/triggers/notifications.ts","./src/triggers/invoketrigger.ts","./src/security.ts","./src/index.ts","../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/baggage/internal/symbol.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/baggage/types.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/baggage/utils.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/common/exception.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/common/time.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/common/attributes.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/context/types.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/context/context.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/api/context.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/diag/types.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/diag/consolelogger.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/api/diag.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/metrics/observableresult.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/metrics/metric.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/metrics/meter.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/metrics/noopmeter.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/metrics/meterprovider.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/api/metrics.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/propagation/textmappropagator.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/baggage/context-helpers.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/api/propagation.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/trace/attributes.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/trace/trace_state.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/trace/span_context.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/trace/link.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/trace/status.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/trace/span.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/trace/span_kind.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/trace/spanoptions.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/trace/tracer.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/trace/tracer_options.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/trace/proxytracer.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/trace/tracer_provider.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/trace/proxytracerprovider.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/trace/samplingresult.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/trace/sampler.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/trace/trace_flags.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/trace/internal/utils.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/trace/spancontext-utils.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/trace/invalid-span-constants.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/trace/context-utils.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/api/trace.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/context-api.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/diag-api.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/metrics-api.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/propagation-api.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/trace-api.d.ts","../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/index.d.ts","../core/package.json","../core/src/v3/schemas/tokens.ts","../core/src/v3/types/utils.ts","../../node_modules/.pnpm/@opentelemetry+api-logs@0.52.1/node_modules/@opentelemetry/api-logs/build/src/types/anyvalue.d.ts","../../node_modules/.pnpm/@opentelemetry+api-logs@0.52.1/node_modules/@opentelemetry/api-logs/build/src/types/logrecord.d.ts","../../node_modules/.pnpm/@opentelemetry+api-logs@0.52.1/node_modules/@opentelemetry/api-logs/build/src/types/logger.d.ts","../../node_modules/.pnpm/@opentelemetry+api-logs@0.52.1/node_modules/@opentelemetry/api-logs/build/src/types/loggeroptions.d.ts","../../node_modules/.pnpm/@opentelemetry+api-logs@0.52.1/node_modules/@opentelemetry/api-logs/build/src/types/loggerprovider.d.ts","../../node_modules/.pnpm/@opentelemetry+api-logs@0.52.1/node_modules/@opentelemetry/api-logs/build/src/nooplogger.d.ts","../../node_modules/.pnpm/@opentelemetry+api-logs@0.52.1/node_modules/@opentelemetry/api-logs/build/src/nooploggerprovider.d.ts","../../node_modules/.pnpm/@opentelemetry+api-logs@0.52.1/node_modules/@opentelemetry/api-logs/build/src/api/logs.d.ts","../../node_modules/.pnpm/@opentelemetry+api-logs@0.52.1/node_modules/@opentelemetry/api-logs/build/src/index.d.ts","../core/src/v3/icons.ts","../core/src/v3/semanticinternalattributes.ts","../core/src/v3/apiclientmanager/types.ts","../core/src/v3/clock/clock.ts","../core/src/v3/runtime/manager.ts","../core/src/v3/task-catalog/catalog.ts","../core/src/v3/taskcontext/types.ts","../core/src/v3/usage/types.ts","../core/src/v3/utils/platform.ts","../core/src/v3/utils/globals.ts","../../node_modules/.pnpm/@google-cloud+precise-date@4.0.0/node_modules/@google-cloud/precise-date/build/src/index.d.ts","../core/src/v3/clock/simpleclock.ts","../core/src/v3/clock/index.ts","../core/src/v3/clock-api.ts","../core/src/v3/usage/noopusagemanager.ts","../core/src/v3/usage/api.ts","../core/src/v3/usage-api.ts","../core/src/v3/taskcontext/index.ts","../core/src/v3/task-context-api.ts","../core/src/v3/tracer.ts","../core/src/v3/utils/flattenattributes.ts","../core/src/v3/logger/tasklogger.ts","../../node_modules/.pnpm/@opentelemetry+instrumentation@0.52.1_@opentelemetry+api@1.9.0/node_modules/@opentelemetry/instrumentation/build/src/types.d.ts","../../node_modules/.pnpm/@opentelemetry+instrumentation@0.52.1_@opentelemetry+api@1.9.0/node_modules/@opentelemetry/instrumentation/build/src/types_internal.d.ts","../../node_modules/.pnpm/@opentelemetry+instrumentation@0.52.1_@opentelemetry+api@1.9.0/node_modules/@opentelemetry/instrumentation/build/src/autoloader.d.ts","../../node_modules/.pnpm/@types+shimmer@1.0.2/node_modules/@types/shimmer/index.d.ts","../../node_modules/.pnpm/@opentelemetry+instrumentation@0.52.1_@opentelemetry+api@1.9.0/node_modules/@opentelemetry/instrumentation/build/src/instrumentation.d.ts","../../node_modules/.pnpm/@opentelemetry+instrumentation@0.52.1_@opentelemetry+api@1.9.0/node_modules/@opentelemetry/instrumentation/build/src/platform/node/instrumentation.d.ts","../../node_modules/.pnpm/@opentelemetry+instrumentation@0.52.1_@opentelemetry+api@1.9.0/node_modules/@opentelemetry/instrumentation/build/src/platform/node/normalize.d.ts","../../node_modules/.pnpm/@opentelemetry+instrumentation@0.52.1_@opentelemetry+api@1.9.0/node_modules/@opentelemetry/instrumentation/build/src/platform/node/index.d.ts","../../node_modules/.pnpm/@opentelemetry+instrumentation@0.52.1_@opentelemetry+api@1.9.0/node_modules/@opentelemetry/instrumentation/build/src/platform/index.d.ts","../../node_modules/.pnpm/@opentelemetry+instrumentation@0.52.1_@opentelemetry+api@1.9.0/node_modules/@opentelemetry/instrumentation/build/src/instrumentationnodemoduledefinition.d.ts","../../node_modules/.pnpm/@opentelemetry+instrumentation@0.52.1_@opentelemetry+api@1.9.0/node_modules/@opentelemetry/instrumentation/build/src/instrumentationnodemodulefile.d.ts","../../node_modules/.pnpm/@opentelemetry+instrumentation@0.52.1_@opentelemetry+api@1.9.0/node_modules/@opentelemetry/instrumentation/build/src/utils.d.ts","../../node_modules/.pnpm/@opentelemetry+instrumentation@0.52.1_@opentelemetry+api@1.9.0/node_modules/@opentelemetry/instrumentation/build/src/index.d.ts","../core/src/v3/types/config.ts","../core/src/v3/types/index.ts","../core/src/v3/schemas/common.ts","../core/src/v3/schemas/schemas.ts","../core/src/v3/schemas/resources.ts","../core/src/v3/errors.ts","../core/src/v3/schemas/api.ts","../core/src/v3/schemas/messages.ts","../core/src/v3/schemas/style.ts","../core/src/v3/schemas/eventfilter.ts","../core/src/v3/schemas/fetch.ts","../core/src/v3/schemas/opentelemetry.ts","../core/src/v3/schemas/index.ts","../../node_modules/.pnpm/zod-validation-error@1.5.0_zod@3.22.3/node_modules/zod-validation-error/dist/types/validationerror.d.ts","../../node_modules/.pnpm/zod-validation-error@1.5.0_zod@3.22.3/node_modules/zod-validation-error/dist/types/index.d.ts","../core/src/v3/utils/retries.ts","../core/src/v3/apiclient/errors.ts","../core/src/v3/utils/styleattributes.ts","../core/src/v3/apiclient/pagination.ts","../core/src/v3/apiclient/core.ts","../core/src/v3/apiclient/types.ts","../core/src/v3/apiclient/index.ts","../core/src/v3/limits.ts","../core/src/v3/logger/index.ts","../core/src/v3/logger-api.ts","../core/src/v3/runtime/noopruntimemanager.ts","../core/src/v3/runtime/index.ts","../core/src/v3/runtime-api.ts","../core/src/v3/utils/getenv.ts","../core/src/v3/apiclientmanager/index.ts","../core/src/v3/apiclientmanager-api.ts","../core/src/v3/task-catalog/nooptaskcatalog.ts","../core/src/v3/task-catalog/index.ts","../core/src/v3/task-catalog-api.ts","../../node_modules/.pnpm/@types+humanize-duration@3.27.1/node_modules/@types/humanize-duration/index.d.ts","../core/src/v3/utils/durations.ts","../core/src/v3/utils/omit.ts","../core/src/v3/utils/detectdependencyversion.ts","../../node_modules/.pnpm/superjson@2.2.1/node_modules/superjson/dist/transformer.d.ts","../../node_modules/.pnpm/superjson@2.2.1/node_modules/superjson/dist/plainer.d.ts","../../node_modules/.pnpm/superjson@2.2.1/node_modules/superjson/dist/types.d.ts","../../node_modules/.pnpm/superjson@2.2.1/node_modules/superjson/dist/registry.d.ts","../../node_modules/.pnpm/superjson@2.2.1/node_modules/superjson/dist/class-registry.d.ts","../../node_modules/.pnpm/superjson@2.2.1/node_modules/superjson/dist/custom-transformer-registry.d.ts","../../node_modules/.pnpm/superjson@2.2.1/node_modules/superjson/dist/index.d.ts","../core/src/v3/utils/ioserialization.ts","../core/src/v3/index.ts","./src/v3/tracer.ts","./src/v3/cache.ts","./src/v3/config.ts","../../node_modules/.pnpm/@opentelemetry+semantic-conventions@1.25.1/node_modules/@opentelemetry/semantic-conventions/build/src/trace/semanticattributes.d.ts","../../node_modules/.pnpm/@opentelemetry+semantic-conventions@1.25.1/node_modules/@opentelemetry/semantic-conventions/build/src/trace/index.d.ts","../../node_modules/.pnpm/@opentelemetry+semantic-conventions@1.25.1/node_modules/@opentelemetry/semantic-conventions/build/src/resource/semanticresourceattributes.d.ts","../../node_modules/.pnpm/@opentelemetry+semantic-conventions@1.25.1/node_modules/@opentelemetry/semantic-conventions/build/src/resource/index.d.ts","../../node_modules/.pnpm/@opentelemetry+semantic-conventions@1.25.1/node_modules/@opentelemetry/semantic-conventions/build/src/index.d.ts","./src/v3/runs.ts","./src/v3/idempotencykeys.ts","./src/v3/shared.ts","./src/v3/envvars.ts","../../node_modules/.pnpm/strict-event-emitter@0.5.1/node_modules/strict-event-emitter/lib/index.d.ts","../../node_modules/.pnpm/msw@2.2.1_typescript@5.3.2/node_modules/msw/lib/core/typeutils.d.ts","../../node_modules/.pnpm/msw@2.2.1_typescript@5.3.2/node_modules/msw/lib/core/httpresponse-_514vq9z.d.ts","../../node_modules/.pnpm/msw@2.2.1_typescript@5.3.2/node_modules/msw/lib/core/utils/request/onunhandledrequest.d.ts","../../node_modules/.pnpm/msw@2.2.1_typescript@5.3.2/node_modules/msw/lib/core/sharedoptions.d.ts","../../node_modules/.pnpm/msw@2.2.1_typescript@5.3.2/node_modules/msw/lib/core/utils/internal/disposable.d.ts","../../node_modules/.pnpm/msw@2.2.1_typescript@5.3.2/node_modules/msw/lib/core/setupapi.d.ts","../../node_modules/.pnpm/msw@2.2.1_typescript@5.3.2/node_modules/msw/lib/core/utils/matching/matchrequesturl.d.ts","../../node_modules/.pnpm/msw@2.2.1_typescript@5.3.2/node_modules/msw/lib/core/handlers/httphandler.d.ts","../../node_modules/.pnpm/msw@2.2.1_typescript@5.3.2/node_modules/msw/lib/core/http.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/version.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/jsutils/maybe.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/language/source.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/jsutils/objmap.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/jsutils/path.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/jsutils/promiseorvalue.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/language/kinds.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/language/tokenkind.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/language/ast.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/language/location.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/error/graphqlerror.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/language/directivelocation.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/type/directives.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/type/schema.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/type/definition.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/execution/execute.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/graphql.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/type/scalars.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/type/introspection.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/type/validate.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/type/assertname.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/type/index.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/language/printlocation.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/language/lexer.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/language/parser.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/language/printer.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/language/visitor.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/language/predicates.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/language/index.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/execution/subscribe.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/execution/values.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/execution/index.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/subscription/index.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/utilities/typeinfo.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/validation/validationcontext.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/validation/validate.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/validation/specifiedrules.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/validation/rules/executabledefinitionsrule.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/validation/rules/fieldsoncorrecttyperule.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/validation/rules/fragmentsoncompositetypesrule.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/validation/rules/knownargumentnamesrule.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/validation/rules/knowndirectivesrule.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/validation/rules/knownfragmentnamesrule.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/validation/rules/knowntypenamesrule.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/validation/rules/loneanonymousoperationrule.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/validation/rules/nofragmentcyclesrule.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/validation/rules/noundefinedvariablesrule.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/validation/rules/nounusedfragmentsrule.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/validation/rules/nounusedvariablesrule.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/validation/rules/overlappingfieldscanbemergedrule.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/validation/rules/possiblefragmentspreadsrule.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/validation/rules/providedrequiredargumentsrule.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/validation/rules/scalarleafsrule.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/validation/rules/singlefieldsubscriptionsrule.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/validation/rules/uniqueargumentnamesrule.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/validation/rules/uniquedirectivesperlocationrule.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/validation/rules/uniquefragmentnamesrule.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/validation/rules/uniqueinputfieldnamesrule.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/validation/rules/uniqueoperationnamesrule.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/validation/rules/uniquevariablenamesrule.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/validation/rules/valuesofcorrecttyperule.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/validation/rules/variablesareinputtypesrule.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/validation/rules/variablesinallowedpositionrule.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/validation/rules/loneschemadefinitionrule.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/validation/rules/uniqueoperationtypesrule.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/validation/rules/uniquetypenamesrule.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/validation/rules/uniqueenumvaluenamesrule.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/validation/rules/uniquefielddefinitionnamesrule.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/validation/rules/uniqueargumentdefinitionnamesrule.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/validation/rules/uniquedirectivenamesrule.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/validation/rules/possibletypeextensionsrule.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/validation/rules/custom/nodeprecatedcustomrule.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/validation/rules/custom/noschemaintrospectioncustomrule.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/validation/index.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/error/syntaxerror.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/error/locatederror.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/error/index.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/utilities/getintrospectionquery.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/utilities/getoperationast.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/utilities/getoperationroottype.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/utilities/introspectionfromschema.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/utilities/buildclientschema.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/utilities/buildastschema.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/utilities/extendschema.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/utilities/lexicographicsortschema.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/utilities/printschema.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/utilities/typefromast.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/utilities/valuefromast.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/utilities/valuefromastuntyped.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/utilities/astfromvalue.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/utilities/coerceinputvalue.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/utilities/concatast.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/utilities/separateoperations.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/utilities/stripignoredcharacters.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/utilities/typecomparators.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/utilities/assertvalidname.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/utilities/findbreakingchanges.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/utilities/typedquerydocumentnode.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/utilities/index.d.ts","../../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts","../../node_modules/.pnpm/msw@2.2.1_typescript@5.3.2/node_modules/msw/lib/core/graphqlhandler-jozqbxsk.d.ts","../../node_modules/.pnpm/msw@2.2.1_typescript@5.3.2/node_modules/msw/lib/core/graphql.d.ts","../../node_modules/.pnpm/msw@2.2.1_typescript@5.3.2/node_modules/msw/lib/core/utils/handlerequest.d.ts","../../node_modules/.pnpm/msw@2.2.1_typescript@5.3.2/node_modules/msw/lib/core/getresponse.d.ts","../../node_modules/.pnpm/msw@2.2.1_typescript@5.3.2/node_modules/msw/lib/core/utils/url/cleanurl.d.ts","../../node_modules/.pnpm/msw@2.2.1_typescript@5.3.2/node_modules/msw/lib/core/delay.d.ts","../../node_modules/.pnpm/msw@2.2.1_typescript@5.3.2/node_modules/msw/lib/core/bypass.d.ts","../../node_modules/.pnpm/msw@2.2.1_typescript@5.3.2/node_modules/msw/lib/core/passthrough.d.ts","../../node_modules/.pnpm/msw@2.2.1_typescript@5.3.2/node_modules/msw/lib/core/index.d.ts","./src/v3/retry.ts","./src/v3/tasks.ts","./src/v3/wait.ts","./src/v3/usage.ts","./src/v3/tags.ts","../core/src/v3/zodfetch.ts","./src/v3/schedules/api.ts","./src/v3/schedules/index.ts","./src/v3/index.ts","../../node_modules/.pnpm/@types+ms@0.7.31/node_modules/@types/ms/index.d.ts","../../node_modules/.pnpm/@types+debug@4.1.7/node_modules/@types/debug/index.d.ts","../../node_modules/.pnpm/@types+node@18.14.0/node_modules/@types/node/assert.d.ts","../../node_modules/.pnpm/@types+node@18.14.0/node_modules/@types/node/assert/strict.d.ts","../../node_modules/.pnpm/@types+node@18.14.0/node_modules/@types/node/globals.d.ts","../../node_modules/.pnpm/@types+node@18.14.0/node_modules/@types/node/async_hooks.d.ts","../../node_modules/.pnpm/@types+node@18.14.0/node_modules/@types/node/buffer.d.ts","../../node_modules/.pnpm/@types+node@18.14.0/node_modules/@types/node/child_process.d.ts","../../node_modules/.pnpm/@types+node@18.14.0/node_modules/@types/node/cluster.d.ts","../../node_modules/.pnpm/@types+node@18.14.0/node_modules/@types/node/console.d.ts","../../node_modules/.pnpm/@types+node@18.14.0/node_modules/@types/node/constants.d.ts","../../node_modules/.pnpm/@types+node@18.14.0/node_modules/@types/node/crypto.d.ts","../../node_modules/.pnpm/@types+node@18.14.0/node_modules/@types/node/dgram.d.ts","../../node_modules/.pnpm/@types+node@18.14.0/node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/.pnpm/@types+node@18.14.0/node_modules/@types/node/dns.d.ts","../../node_modules/.pnpm/@types+node@18.14.0/node_modules/@types/node/dns/promises.d.ts","../../node_modules/.pnpm/@types+node@18.14.0/node_modules/@types/node/domain.d.ts","../../node_modules/.pnpm/@types+node@18.14.0/node_modules/@types/node/dom-events.d.ts","../../node_modules/.pnpm/@types+node@18.14.0/node_modules/@types/node/events.d.ts","../../node_modules/.pnpm/@types+node@18.14.0/node_modules/@types/node/fs.d.ts","../../node_modules/.pnpm/@types+node@18.14.0/node_modules/@types/node/fs/promises.d.ts","../../node_modules/.pnpm/@types+node@18.14.0/node_modules/@types/node/http.d.ts","../../node_modules/.pnpm/@types+node@18.14.0/node_modules/@types/node/http2.d.ts","../../node_modules/.pnpm/@types+node@18.14.0/node_modules/@types/node/https.d.ts","../../node_modules/.pnpm/@types+node@18.14.0/node_modules/@types/node/inspector.d.ts","../../node_modules/.pnpm/@types+node@18.14.0/node_modules/@types/node/module.d.ts","../../node_modules/.pnpm/@types+node@18.14.0/node_modules/@types/node/net.d.ts","../../node_modules/.pnpm/@types+node@18.14.0/node_modules/@types/node/os.d.ts","../../node_modules/.pnpm/@types+node@18.14.0/node_modules/@types/node/path.d.ts","../../node_modules/.pnpm/@types+node@18.14.0/node_modules/@types/node/perf_hooks.d.ts","../../node_modules/.pnpm/@types+node@18.14.0/node_modules/@types/node/process.d.ts","../../node_modules/.pnpm/@types+node@18.14.0/node_modules/@types/node/punycode.d.ts","../../node_modules/.pnpm/@types+node@18.14.0/node_modules/@types/node/querystring.d.ts","../../node_modules/.pnpm/@types+node@18.14.0/node_modules/@types/node/readline.d.ts","../../node_modules/.pnpm/@types+node@18.14.0/node_modules/@types/node/readline/promises.d.ts","../../node_modules/.pnpm/@types+node@18.14.0/node_modules/@types/node/repl.d.ts","../../node_modules/.pnpm/@types+node@18.14.0/node_modules/@types/node/stream.d.ts","../../node_modules/.pnpm/@types+node@18.14.0/node_modules/@types/node/stream/promises.d.ts","../../node_modules/.pnpm/@types+node@18.14.0/node_modules/@types/node/stream/consumers.d.ts","../../node_modules/.pnpm/@types+node@18.14.0/node_modules/@types/node/stream/web.d.ts","../../node_modules/.pnpm/@types+node@18.14.0/node_modules/@types/node/string_decoder.d.ts","../../node_modules/.pnpm/@types+node@18.14.0/node_modules/@types/node/test.d.ts","../../node_modules/.pnpm/@types+node@18.14.0/node_modules/@types/node/timers.d.ts","../../node_modules/.pnpm/@types+node@18.14.0/node_modules/@types/node/timers/promises.d.ts","../../node_modules/.pnpm/@types+node@18.14.0/node_modules/@types/node/tls.d.ts","../../node_modules/.pnpm/@types+node@18.14.0/node_modules/@types/node/trace_events.d.ts","../../node_modules/.pnpm/@types+node@18.14.0/node_modules/@types/node/tty.d.ts","../../node_modules/.pnpm/@types+node@18.14.0/node_modules/@types/node/url.d.ts","../../node_modules/.pnpm/@types+node@18.14.0/node_modules/@types/node/util.d.ts","../../node_modules/.pnpm/@types+node@18.14.0/node_modules/@types/node/v8.d.ts","../../node_modules/.pnpm/@types+node@18.14.0/node_modules/@types/node/vm.d.ts","../../node_modules/.pnpm/@types+node@18.14.0/node_modules/@types/node/wasi.d.ts","../../node_modules/.pnpm/@types+node@18.14.0/node_modules/@types/node/worker_threads.d.ts","../../node_modules/.pnpm/@types+node@18.14.0/node_modules/@types/node/zlib.d.ts","../../node_modules/.pnpm/@types+node@18.14.0/node_modules/@types/node/globals.global.d.ts","../../node_modules/.pnpm/@types+node@18.14.0/node_modules/@types/node/index.d.ts","../../node_modules/.pnpm/@types+slug@5.0.3/node_modules/@types/slug/index.d.ts","../../node_modules/.pnpm/@types+uuid@9.0.0/node_modules/@types/uuid/index.d.ts","../../node_modules/.pnpm/@types+ws@8.5.4/node_modules/@types/ws/index.d.ts"],"fileInfos":[{"version":"f33e5332b24c3773e930e212cbb8b6867c8ba3ec4492064ea78e55a524d57450","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"26f2f787e82c4222710f3b676b4d83eb5ad0a72fa7b746f03449e7a026ce5073","impliedFormat":1},{"version":"9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"21e41a76098aa7a191028256e52a726baafd45a925ea5cf0222eb430c96c1d83","affectsGlobalScope":true,"impliedFormat":1},{"version":"138fb588d26538783b78d1e3b2c2cc12d55840b97bf5e08bca7f7a174fbe2f17","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true,"impliedFormat":1},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true,"impliedFormat":1},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true,"impliedFormat":1},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true,"impliedFormat":1},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true,"impliedFormat":1},{"version":"e0275cd0e42990dc3a16f0b7c8bca3efe87f1c8ad404f80c6db1c7c0b828c59f","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"49ed889be54031e1044af0ad2c603d627b8bda8b50c1a68435fe85583901d072","affectsGlobalScope":true,"impliedFormat":1},{"version":"e93d098658ce4f0c8a0779e6cab91d0259efb88a318137f686ad76f8410ca270","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true,"impliedFormat":1},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true,"impliedFormat":1},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true,"impliedFormat":1},{"version":"acae90d417bee324b1372813b5a00829d31c7eb670d299cd7f8f9a648ac05688","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"13f6e6380c78e15e140243dc4be2fa546c287c6d61f4729bc2dd7cf449605471","affectsGlobalScope":true,"impliedFormat":1},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"bf84284508221dfdba94b95a33696d3b29922c3ff1adc088e4ed8ebc9f0e6b5d","impliedFormat":99},{"version":"5ee8dabb0139f4e57fe5f88afe59380867e0fa2944c1ffa80c0333220390a261","impliedFormat":99},{"version":"6221a9d965bc3ce122d74411bbeb8ea2c255e5a3444874be9af70a5fee5e3ce8","impliedFormat":99},{"version":"262e6c39696ee9907965464e91237c125fe773a6a9f947d9e7e98ba53f6db5da","impliedFormat":99},{"version":"5487b97cfa28b26b4a9ef0770f872bdbebd4c46124858de00f242c3eed7519f4","impliedFormat":1},{"version":"7a01f546ace66019156e4232a1bee2fabc2f8eabeb052473d926ee1693956265","impliedFormat":1},{"version":"fb53b1c6a6c799b7e3cc2de3fb5c9a1c04a1c60d4380a37792d84c5f8b33933b","impliedFormat":1},{"version":"8485b6da53ec35637d072e516631d25dae53984500de70a6989058f24354666f","impliedFormat":1},{"version":"ebe80346928736532e4a822154eb77f57ef3389dbe2b3ba4e571366a15448ef2","impliedFormat":1},{"version":"c2cb3c8ff388781258ea9ddbcd8a947f751bddd6886e1d3b3ea09ddaa895df80","impliedFormat":1},{"version":"f672c876c1a04a223cf2023b3d91e8a52bb1544c576b81bf64a8fec82be9969c","impliedFormat":1},{"version":"98a9cc18f661d28e6bd31c436e1984f3980f35e0f0aa9cf795c54f8ccb667ffe","impliedFormat":1},{"version":"c76b0c5727302341d0bdfa2cc2cee4b19ff185b554edb6e8543f0661d8487116","impliedFormat":1},{"version":"d6a6e6fcd382a05f787a81a157e66f54f360f81a405015bf07f77a622139ed90","impliedFormat":1},{"version":"f5ef066942e4f0bd98200aa6a6694b831e73200c9b3ade77ad0aa2409e8fe1b1","impliedFormat":1},{"version":"b9e99cd94f4166a245f5158f7286c05406e2a4c694619bceb7a4f3519d1d768e","impliedFormat":1},{"version":"5568d7c32e5cf5f35e092649f4e5e168c3114c800b1d7545b7ae5e0415704802","impliedFormat":1},{"version":"d7a574f5557f3a399c1556410ad2504bfd569a45167476c8be4839887797edd0","impliedFormat":1},{"version":"1bce7c5ce91267ed5114c93fa0725157bd9a20f03911235ee9105e87674ecc82","impliedFormat":1},{"version":"d3a77124d6c2c29c0de8857534c5dc3abc57ade3d6ffbf3707ae1d87c10ed575","impliedFormat":1},{"version":"34b606235de411ef251b68786497592f386e5351818802d4f8e04a64141d3b12","impliedFormat":1},{"version":"91f8d7c73837bafc4914567efd6777307551558989491876034e6f98b62d99a6","impliedFormat":1},{"version":"5b51b59938bd0ca81b50e79de5b2205cfdc49e76dda117636a1d6d61205db8ba","impliedFormat":1},{"version":"166ab5d596e8e097bba5f9d85f574a19f1fe98fb5a36b655ea81db4d024bd0de","impliedFormat":1},{"version":"34addbb9746e63b4f757a396ef174d267c59c9673107192e56fc9fa44355f772","impliedFormat":1},{"version":"e4cdf876782493ada141ad1497216511b537cc06a9c24e8ca327c37b9e0332ec","impliedFormat":1},{"version":"df8da18a3d7a5a29b8881f85f010d9d95ffbb02582f517ac805b9e50e0b2e210","impliedFormat":1},{"version":"f785f2a029667b35d1cff9342d112a8a9bf84e56f9ab945af38bc7ba458343e5","impliedFormat":1},{"version":"214770e260ddd2abc58e4f8f89a885cabf2f2497234a69513150ba7b81be85bb","impliedFormat":1},{"version":"fd38902f1966f9b0a242e4bcd40c6556df4e2b8308c0f0ac4682898ace3197a0","impliedFormat":1},{"version":"2492a1c11630507f93e9854a04935f254d84f196b2c99846327d1a2a0e42de0e","impliedFormat":1},{"version":"7d263568916984bafa308be74e7400f4010e0e97ea248f66d630929844a4ce6d","impliedFormat":1},{"version":"963ed0f2a5a37082afcdf4dc25fc4792974bace939ff508e7de8d050c602d894","impliedFormat":1},{"version":"0835aafbe6f2eee7f47f3da35a8b608380174a71dfc6e808180e316d6b160848","impliedFormat":1},{"version":"78acc3ece111ed7f9dcc461aea6b942d71e10122a5fe0b0730edfb4746eb1567","impliedFormat":1},{"version":"7b356a77218948b0f659aa3a622f0178e9e8cc8c4968b6e509296013980ce5bf","impliedFormat":1},{"version":"deaf4cdfe31907cfaa4d089a28c7d7bdffc04fb7123dc4d4ea6a6306a23b157e","impliedFormat":1},{"version":"ecbcf97612ee60757768ddae720eab26c906870205c74a60acdb33c95bbe003e","impliedFormat":1},{"version":"afd760d32356d4c2468152b501c7f884a1701e146a144d378a6a1992eb84cb12","impliedFormat":1},{"version":"b264615391b602f4540a990c38ac0b892f1ff3a2a183970d7aeacff435bc80ed","impliedFormat":1},{"version":"7ffb5e0bda524a1725c10bd6d26eda23277644e42f50ae0bc2b3d4bcf3189949","impliedFormat":1},{"version":"d85e5001c16e23bffc9246d53d83b20a8b126d64995b6a9c62a49cf8d52149d3","impliedFormat":1},{"version":"623eee4f34a84cc1c8f0e472dfa78d4db65566184e294cb8e4db06f1d91c82ed","impliedFormat":1},{"version":"63bfd340b24e03d85716c766c4e53570bb60519ef4a22d941c750240a8183b57","impliedFormat":1},{"version":"a8f2493fff4ce8689fcc52b29acf81fc4fea190aa456fe4edf9350678998049d","impliedFormat":1},{"version":"ee29bb970b0929f625427204e551fae5218768752b205b472e585640e1ef8d3b","impliedFormat":1},{"version":"a4e9e0d92dcad2cb387a5f1bdffe621569052f2d80186e11973aa7080260d296","impliedFormat":1},{"version":"f6380cc36fc3efc70084d288d0a05d0a2e09da012ee3853f9d62431e7216f129","impliedFormat":1},{"version":"497c3e541b4acf6c5d5ba75b03569cfe5fe25c8a87e6c87f1af98da6a3e7b918","impliedFormat":1},{"version":"d9429b81edf2fb2abf1e81e9c2e92615f596ed3166673d9b69b84c369b15fdc0","impliedFormat":1},{"version":"7e22943ae4e474854ca0695ab750a8026f55bb94278331fda02a4fb42efce063","impliedFormat":1},{"version":"7da9ff3d9a7e62ddca6393a23e67296ab88f2fcb94ee5f7fb977fa8e478852ac","impliedFormat":1},{"version":"e1b45cc21ea200308cbc8abae2fb0cfd014cb5b0e1d1643bcc50afa5959b6d83","impliedFormat":1},{"version":"c9740b0ce7533ce6ba21a7d424e38d2736acdddeab2b1a814c00396e62cc2f10","impliedFormat":1},{"version":"b3c1f6a3fdbb04c6b244de6d5772ffdd9e962a2faea1440e410049c13e874b87","impliedFormat":1},{"version":"dcaa872d9b52b9409979170734bdfd38f846c32114d05b70640fd05140b171bb","impliedFormat":1},{"version":"6c434d20da381fcd2e8b924a3ec9b8653cf8bed8e0da648e91f4c984bd2a5a91","impliedFormat":1},{"version":"992419d044caf6b14946fa7b9463819ab2eeb7af7c04919cc2087ce354c92266","impliedFormat":1},{"version":"fa9815e9ce1330289a5c0192e2e91eb6178c0caa83c19fe0c6a9f67013fe795c","impliedFormat":1},{"version":"5ddfb68ce43fa0c38025992728b3da8bb21c83970b91b17358eaa5f5377f7270","impliedFormat":1},{"version":"81b171430a6ffd9b495df08a7b9883981483cec487cbc172d3ed307e061e6095","impliedFormat":1},{"version":"0d8e0ad7c41c8e3fdde54ea670d762736cd84098fce8065870b94ce8571fa715","impliedFormat":1},{"version":"7e046b9634add57e512412a7881efbc14d44d1c65eadd35432412aa564537975","impliedFormat":1},{"version":"aac9079b9e2b5180036f27ab37cb3cf4fd19955be48ccc82eab3f092ee3d4026","impliedFormat":1},{"version":"3d9c38933bc69e0a885da20f019de441a3b5433ce041ba5b9d3a541db4b568cb","impliedFormat":1},{"version":"606aa2b74372221b0f79ca8ae3568629f444cc454aa59b032e4cb602308dec94","impliedFormat":1},{"version":"50474eaea72bfda85cc37ae6cd29f0556965c0849495d96c8c04c940ef3d2f44","impliedFormat":1},{"version":"b4874382f863cf7dc82b3d15aed1e1372ac3fede462065d5bfc8510c0d8f7b19","impliedFormat":1},{"version":"df10b4f781871afb72b2d648d497671190b16b679bf7533b744cc10b3c6bf7ea","impliedFormat":1},{"version":"1fdc28754c77e852c92087c789a1461aa6eed19c335dc92ce6b16a188e7ba305","impliedFormat":1},{"version":"a656dab1d502d4ddc845b66d8735c484bfebbf0b1eda5fb29729222675759884","impliedFormat":1},{"version":"465a79505258d251068dc0047a67a3605dd26e6b15e9ad2cec297442cbb58820","impliedFormat":1},{"version":"c78b2d4c7298a61cd1209bb7a5ec611c3f12fd17ed25d85905a2e76aa20d379f","impliedFormat":1},{"version":"d0e25feadef054c6fc6a7f55ccc3b27b7216142106b9ff50f5e7b19d85c62ca7","impliedFormat":1},{"version":"111214009193320cacbae104e8281f6cb37788b52a6a84d259f9822c8c71f6ca","impliedFormat":1},{"version":"01c8e2c8984c96b9b48be20ee396bd3689a3a3e6add8d50fe8229a7d4e62ff45","impliedFormat":1},{"version":"a4a0800b592e533897b4967b00fb00f7cd48af9714d300767cc231271aa100af","impliedFormat":1},{"version":"20aa818c3e16e40586f2fa26327ea17242c8873fe3412a69ec68846017219314","impliedFormat":1},{"version":"f498532f53d54f831851990cb4bcd96063d73e302906fa07e2df24aa5935c7d1","impliedFormat":1},{"version":"5fd19dfde8de7a0b91df6a9bbdc44b648fd1f245cae9e8b8cf210d83ee06f106","impliedFormat":1},{"version":"3b8d6638c32e63ea0679eb26d1eb78534f4cc02c27b80f1c0a19f348774f5571","impliedFormat":1},{"version":"ce0da52e69bc3d82a7b5bc40da6baad08d3790de13ad35e89148a88055b46809","impliedFormat":1},{"version":"9e01233da81bfed887f8d9a70d1a26bf11b8ddff165806cc586c84980bf8fc24","impliedFormat":1},{"version":"214a6afbab8b285fc97eb3cece36cae65ea2fca3cbd0c017a96159b14050d202","impliedFormat":1},{"version":"14beeca2944b75b229c0549e0996dc4b7863e07257e0d359d63a7be49a6b86a4","impliedFormat":1},{"version":"f7bb9adb1daa749208b47d1313a46837e4d27687f85a3af7777fc1c9b3dc06b1","impliedFormat":1},{"version":"c549fe2f52101ffe47f58107c702af7cdcd42da8c80afd79f707d1c5d77d4b6e","impliedFormat":1},{"version":"3966ea9e1c1a5f6e636606785999734988e135541b79adc6b5d00abdc0f4bf05","impliedFormat":1},{"version":"0b60b69c957adb27f990fbc27ea4ac1064249400262d7c4c1b0a1687506b3406","impliedFormat":1},{"version":"12c26e5d1befc0ded725cee4c2316f276013e6f2eb545966562ae9a0c1931357","impliedFormat":1},{"version":"27b247363f1376c12310f73ebac6debcde009c0b95b65a8207e4fa90e132b30a","impliedFormat":1},{"version":"05bd302e2249da923048c09dc684d1d74cb205551a87f22fb8badc09ec532a08","impliedFormat":1},{"version":"fe930ec064571ab3b698b13bddf60a29abf9d2f36d51ab1ca0083b087b061f3a","impliedFormat":1},{"version":"95072d8907c6f2fcfb7d0c8457ad1af36a79ec11854ee84ecd03b7d1aea0b11f","impliedFormat":1},{"version":"2c4cffd8ab0947cddeb77ac223563ffb2a7827b194862ac8c1cdd27f61ba0fa0","impliedFormat":1},{"version":"0b6c187f9e18d728a36cae6726f8a4b06d7121aed8a5026ba56a09ebf5d2a090","impliedFormat":1},{"version":"2c8c8ef887640d6f46f90b24cf2fe1e81214073449cc289f7308e6d528203876","impliedFormat":1},{"version":"0fcdbd1167bc297d2934d4d5fd0008f054ed7828f384f1a3089dd4992f5a03db","impliedFormat":1},{"version":"d7cb511a86c4b59aaa096572ac0b478da63bb3b4bb8d1c6dbfe430bb804176cc","impliedFormat":1},{"version":"f4e5c19fc82f3edfb7cb0b1ab00b4039538c499b479817dac35331c48eb31802","impliedFormat":1},"45312c71cc639b4459611c7f93f5276d3840f054bf3cc2dbe2b81b518ea79db9",{"version":"b46acff2bc5066945140e5ed9574b9c803592a761bdbf257d4b2845a39b77e54","impliedFormat":1},{"version":"6c27d4b5ba01295ef334456d9af4366aca789f228eee70fcb874b903a59b0e5b","impliedFormat":1},{"version":"a1d15da50d583f6a54a01744e7772ccefa657445b9eff7e1c68409821e0a1359","impliedFormat":1},{"version":"2499d7dee34b209e70bae2ea819e4303ecd3063a6596ba09fb96aff3dfac9425","impliedFormat":1},{"version":"48e3e6899b616b751fd64990ff9884c40d652e59bf2af7fceae6f74a671177f9","impliedFormat":1},{"version":"c736ee31194c6e3590fbb93aac7aa976575b6da929d37324a265eb88cfe594aa","impliedFormat":1},{"version":"a013bc3ee33dff2effed15d41ffbd9c8e998d1bc5f4587ca1ed1406a2b1df8fc","impliedFormat":1},{"version":"82d5c861734f82dc5856a603c7c7fdeaa657d43fe7274be8116cfd17a8595853","impliedFormat":1},{"version":"b2fcd7c57d501b7be29d3e06257dee79b710ba7d7d5cfff177dd9573a39cd0fd","impliedFormat":1},{"version":"3caf608435e9a6b76cd0e42f0f362500151e0113fa3d570146299c715ea8383a","impliedFormat":1},{"version":"c9b9d874681dc849a5f78379d807bf3171ce9bb60e8d4fbbb33e3b20168b3050","impliedFormat":1},{"version":"0a36f43fe7ce22ab644572cbd189e067c60189c8bed01bbe9c018571e942a6fd","impliedFormat":1},{"version":"6e4acdf8c87394799be4daada5d6dfe99480b8c60915b8b686b38adb7551ab8c","impliedFormat":1},{"version":"2b7ff44f88e24d64bde60f0a060c2661e6780b334ca515306a2e3d07f633622e","impliedFormat":1},{"version":"b3a112f3605a9f9f2d280f78ebbc32ea24a7ef79f5301be230dffe8f11022392","impliedFormat":1},{"version":"d7ae912aadaf82c86797a1381801ec8814618896e02d5750c6e16f22f1ebe21f","impliedFormat":1},{"version":"6f9b63ed4638f2c42e73aba308934d9a9abb03ccebb23d6c02285b3a3a9f48c3","impliedFormat":1},{"version":"6d3e4a84f27d1153621be2f7be36818eed64a3687a037111bf768c9c9c7eed98","impliedFormat":1},{"version":"51d1ed7b6adb38ffa0ee3710b1b12d297986a7b0d0448118823a8b9be80d738b","impliedFormat":1},{"version":"cde70dcaf23eb20171396bf987c9aeb80d01a55687f2caa5c80758ff098cd71b","impliedFormat":1},{"version":"057ad8a81b47195d96c84e8ec36d6a0d59e4e3ff6a566b5c38b28640c453abf5","impliedFormat":1},{"version":"faed35c5df9b7be8ff87f872fa741cfc5ecb8e8998de1f89293f9f26ebf82247","impliedFormat":1},{"version":"ecf0cedf990da0c935977fba2fc7497dd10d493dac2301b54ff7520cc20268a6","impliedFormat":1},{"version":"72a7087681055556700d241dfc0f3ad9d4e4c635cc98d54e8ca405b233d2de11","impliedFormat":1},{"version":"7dea21ed5936db783cded998ec8de57352d49bbe1517a8e15b05a823dd65174d","impliedFormat":1},{"version":"6cab8ad21e3414d083ceedc05c84f5c81fb3dea9cca862e4405a30abea939a6b","impliedFormat":1},{"version":"a51cf3053acba001b5438ef33b4a326732628f359b8904b50e363a190acb61a2","impliedFormat":1},{"version":"c5562388332957abbd62d35bfcc438a73913798df052dd85e90ad59b156b66df","impliedFormat":1},{"version":"b48adbf147a6572e4e96685e3deebbd2125e3c4c9f1b9d1c1074d02cb42cdc72","impliedFormat":1},{"version":"a4e9e0d92dcad2cb387a5f1bdffe621569052f2d80186e11973aa7080260d296","impliedFormat":1},{"version":"f6380cc36fc3efc70084d288d0a05d0a2e09da012ee3853f9d62431e7216f129","impliedFormat":1},{"version":"497c3e541b4acf6c5d5ba75b03569cfe5fe25c8a87e6c87f1af98da6a3e7b918","impliedFormat":1},{"version":"d9429b81edf2fb2abf1e81e9c2e92615f596ed3166673d9b69b84c369b15fdc0","impliedFormat":1},{"version":"7e22943ae4e474854ca0695ab750a8026f55bb94278331fda02a4fb42efce063","impliedFormat":1},{"version":"7da9ff3d9a7e62ddca6393a23e67296ab88f2fcb94ee5f7fb977fa8e478852ac","impliedFormat":1},{"version":"e1b45cc21ea200308cbc8abae2fb0cfd014cb5b0e1d1643bcc50afa5959b6d83","impliedFormat":1},{"version":"c9740b0ce7533ce6ba21a7d424e38d2736acdddeab2b1a814c00396e62cc2f10","impliedFormat":1},{"version":"b3c1f6a3fdbb04c6b244de6d5772ffdd9e962a2faea1440e410049c13e874b87","impliedFormat":1},{"version":"dcaa872d9b52b9409979170734bdfd38f846c32114d05b70640fd05140b171bb","impliedFormat":1},{"version":"6c434d20da381fcd2e8b924a3ec9b8653cf8bed8e0da648e91f4c984bd2a5a91","impliedFormat":1},{"version":"992419d044caf6b14946fa7b9463819ab2eeb7af7c04919cc2087ce354c92266","impliedFormat":1},{"version":"fa9815e9ce1330289a5c0192e2e91eb6178c0caa83c19fe0c6a9f67013fe795c","impliedFormat":1},{"version":"06384a1a73fcf4524952ecd0d6b63171c5d41dd23573907a91ef0a687ddb4a8c","impliedFormat":1},{"version":"34b1594ecf1c84bcc7a04d9f583afa6345a6fea27a52cf2685f802629219de45","impliedFormat":1},{"version":"d82c9ca830d7b94b7530a2c5819064d8255b93dfeddc5b2ebb8a09316f002c89","impliedFormat":1},{"version":"7e046b9634add57e512412a7881efbc14d44d1c65eadd35432412aa564537975","impliedFormat":1},{"version":"aac9079b9e2b5180036f27ab37cb3cf4fd19955be48ccc82eab3f092ee3d4026","impliedFormat":1},{"version":"3d9c38933bc69e0a885da20f019de441a3b5433ce041ba5b9d3a541db4b568cb","impliedFormat":1},{"version":"606aa2b74372221b0f79ca8ae3568629f444cc454aa59b032e4cb602308dec94","impliedFormat":1},{"version":"50474eaea72bfda85cc37ae6cd29f0556965c0849495d96c8c04c940ef3d2f44","impliedFormat":1},{"version":"b4874382f863cf7dc82b3d15aed1e1372ac3fede462065d5bfc8510c0d8f7b19","impliedFormat":1},{"version":"df10b4f781871afb72b2d648d497671190b16b679bf7533b744cc10b3c6bf7ea","impliedFormat":1},{"version":"1fdc28754c77e852c92087c789a1461aa6eed19c335dc92ce6b16a188e7ba305","impliedFormat":1},{"version":"a656dab1d502d4ddc845b66d8735c484bfebbf0b1eda5fb29729222675759884","impliedFormat":1},{"version":"465a79505258d251068dc0047a67a3605dd26e6b15e9ad2cec297442cbb58820","impliedFormat":1},{"version":"ddae22d9329db28ce3d80a2a53f99eaed66959c1c9cd719c9b744e5470579d2f","impliedFormat":1},{"version":"d0e25feadef054c6fc6a7f55ccc3b27b7216142106b9ff50f5e7b19d85c62ca7","impliedFormat":1},{"version":"111214009193320cacbae104e8281f6cb37788b52a6a84d259f9822c8c71f6ca","impliedFormat":1},{"version":"01c8e2c8984c96b9b48be20ee396bd3689a3a3e6add8d50fe8229a7d4e62ff45","impliedFormat":1},{"version":"a4a0800b592e533897b4967b00fb00f7cd48af9714d300767cc231271aa100af","impliedFormat":1},{"version":"20aa818c3e16e40586f2fa26327ea17242c8873fe3412a69ec68846017219314","impliedFormat":1},{"version":"f498532f53d54f831851990cb4bcd96063d73e302906fa07e2df24aa5935c7d1","impliedFormat":1},{"version":"5fd19dfde8de7a0b91df6a9bbdc44b648fd1f245cae9e8b8cf210d83ee06f106","impliedFormat":1},{"version":"3b8d6638c32e63ea0679eb26d1eb78534f4cc02c27b80f1c0a19f348774f5571","impliedFormat":1},{"version":"ce0da52e69bc3d82a7b5bc40da6baad08d3790de13ad35e89148a88055b46809","impliedFormat":1},{"version":"9e01233da81bfed887f8d9a70d1a26bf11b8ddff165806cc586c84980bf8fc24","impliedFormat":1},{"version":"214a6afbab8b285fc97eb3cece36cae65ea2fca3cbd0c017a96159b14050d202","impliedFormat":1},{"version":"14beeca2944b75b229c0549e0996dc4b7863e07257e0d359d63a7be49a6b86a4","impliedFormat":1},{"version":"f7bb9adb1daa749208b47d1313a46837e4d27687f85a3af7777fc1c9b3dc06b1","impliedFormat":1},{"version":"c549fe2f52101ffe47f58107c702af7cdcd42da8c80afd79f707d1c5d77d4b6e","impliedFormat":1},{"version":"3966ea9e1c1a5f6e636606785999734988e135541b79adc6b5d00abdc0f4bf05","impliedFormat":1},{"version":"0b60b69c957adb27f990fbc27ea4ac1064249400262d7c4c1b0a1687506b3406","impliedFormat":1},{"version":"12c26e5d1befc0ded725cee4c2316f276013e6f2eb545966562ae9a0c1931357","impliedFormat":1},{"version":"27b247363f1376c12310f73ebac6debcde009c0b95b65a8207e4fa90e132b30a","impliedFormat":1},{"version":"05bd302e2249da923048c09dc684d1d74cb205551a87f22fb8badc09ec532a08","impliedFormat":1},{"version":"fe930ec064571ab3b698b13bddf60a29abf9d2f36d51ab1ca0083b087b061f3a","impliedFormat":1},{"version":"6b85c4198e4b62b0056d55135ad95909adf1b95c9a86cdbed2c0f4cc1a902d53","impliedFormat":1},"a8ba3ae6564744a96c3a8717904ddd3f252385f545436491a6fd93db413c194e",{"version":"a2cbd7619074b44363cf8df182d5e951db89cae34d5a5676426782d31098ef31","impliedFormat":1},{"version":"e47a8bcff0cb89ef43aa0d4290138a5cb260101d079f69d330410b366a013bb7","impliedFormat":1},{"version":"82edb64fbe335cd21f16bcf50248e107f201e3e09ebc73b28640c28c958067c9","impliedFormat":1},{"version":"9593de9c14310da95e677e83110b37f1407878352f9ebe1345f97fc69e4b627c","impliedFormat":1},{"version":"e009f9f511db1a215577f241b2dc6d3f9418f9bc1686b6950a1d3f1b433a37ff","impliedFormat":1},{"version":"caa48f3b98f9737d51fabce5ce2d126de47d8f9dffeb7ad17cd500f7fd5112e0","impliedFormat":1},{"version":"64d15723ce818bb7074679f5e8d4d19a6e753223f5965fd9f1a9a1f029f802f7","impliedFormat":1},{"version":"2900496cc3034767cd31dd8e628e046bc3e1e5f199afe7323ece090e8872cfa7","impliedFormat":1},{"version":"ba74ef369486b613146fa4a3bccb959f3e64cdc6a43f05cc7010338ba0eab9f7","impliedFormat":1},{"version":"a22bbe0aeceec1dc02236a03eee7736760ecd39de9c8789229ce9a70777629bb","impliedFormat":1},{"version":"a9afefcb7d0c9a89ec666cc7cccc7275f6a06b5114dd15aa2654e9e19c43b7c1","impliedFormat":1},{"version":"a04890f0d84d22fd5a654ee02c42fe94db43479d9abdfbd46dd88b347cf3b6d4","impliedFormat":1},{"version":"805a0e7d0f47e5332285ba8145b9e81b94993461fbb1cfae6b15ffd545ae9a48","impliedFormat":1},{"version":"d900e8eca6f9223e7f877ed6e26128ca159c81ab3c8986a9a96b5b7bd8dfe5a1","impliedFormat":1},{"version":"2ae9392a6221474bb135eddc8adb531946aa29c67598eb0f5c1ac7e21707a359","impliedFormat":1},{"version":"50b2b4367f88955a6bd982c438b8b5eda17d8d4ae9cf1e4a3a96a3cf68358ccb","impliedFormat":1},{"version":"b6f069636bee057ee3df72923d3c83d757f1683cc405700cbdf9b0df0d3c77d7","impliedFormat":1},{"version":"6368dfe01ed4e5895dc7adf21e2cd8926181109c3e8dd56065c4ee7d6a5eb55c","impliedFormat":1},{"version":"eb0d8e96b801b59d5b87c834300a251a5aa6074139b8ad79585e3c01fa1691ce","impliedFormat":1},{"version":"be56e82a3782f2118d7b0c56c770103b259979004a1b92340c6caf150fbee3a9","impliedFormat":1},{"version":"0a57a1d55e33a2fb91180d8d736010c9e70733ab9638990341509f2c3c02084a","impliedFormat":1},{"version":"09bc11b53ad8cdeafbc9e689036dca972a188e3ed91ce45385f74bd6d70a2d01","impliedFormat":1},{"version":"aecb9cef944012a104f28c693ab2b6a0061b47c894600be653379adb18d3070d","impliedFormat":1},{"version":"285b81dddb88493c50732641d81d3dc65c8a676445526e6790ee6e25d84732b0","impliedFormat":1},{"version":"e86fed494766618fa866e1e400f8dbb1abee08d8078a590be54110c33f377ab6","impliedFormat":1},{"version":"6e4ac67c32b3336554a6504cb886401bb2f84ee39658e9032ed68d9a6371fc2f","impliedFormat":1},{"version":"940b427f6f1f9f15e7772fa088726c793342dcaa287c495502eba970cbfb8117","impliedFormat":1},{"version":"c0a67df86cdcbf9a06cf9d4e82666ba4be3bcb9ba2ebb4190a7b8d9836418852","impliedFormat":1},{"version":"5beb8729ec0e3d4ff70eb45a39aa30d588567888fbbae33b98c7b463de500826","impliedFormat":1},{"version":"348463589b14ef4f74e0bb910a7b8092b12b734c55ddb230b1de6b15eac5d64d","impliedFormat":1},{"version":"b25ccc7612d1d4145c64b1a3dd6c2efeb3c9d5638a2f91aad31658e67574d830","impliedFormat":1},{"version":"0dbd3c93a405643efe6f836b295ade1c5a6642f070f1fdbbe397f081b7ecd764","impliedFormat":1},{"version":"f83cffffd8bbcf0cc90ef3ad7bb44df80c3ea8fffd1a42d10dcddbca9297b77c","impliedFormat":1},{"version":"8fa21591f8689152157c9e3449ac95391fe5f31a9770a58bf9c0e4f5ee0d4af3","impliedFormat":1},{"version":"ac8582e453158a1e4cccfb683af8850b9d2a0420e7f6f9a260ab268fc715ab0d","impliedFormat":1},{"version":"c80aa3ff0661e065d700a72d8924dcec32bf30eb8f184c962da43f01a5edeb6f","impliedFormat":1},{"version":"bcf1245c84b2237aa397c74273b6a5e7de8464a07f8403c549f9bac7ae4daacd","affectsGlobalScope":true,"impliedFormat":1},{"version":"617490cbb06af111a8aa439594dc4df493b20bbf72acc43a63ceade3d0d71e2a","impliedFormat":1},{"version":"eb34b5818c9f5a31e020a8a5a7ca3300249644466ef71adf74e9e96022b8b810","impliedFormat":1},{"version":"cdec09a633b816046d9496a59345ad81f5f97c642baf4fe1611554aa3fbf4a41","impliedFormat":1},{"version":"5b933c1b71bff2aa417038dabb527b8318d9ef6136f7bd612046e66a062f5dbf","impliedFormat":1},{"version":"b94a350c0e4d7d40b81c5873b42ae0e3629b0c45abf2a1eeb1a3c88f60a26e9a","impliedFormat":1},{"version":"231f407c0f697534facae9ca5d976f3432da43d5b68f0948b55063ca53831e7c","impliedFormat":1},{"version":"188857be1eebad5f4021f5f771f248cf04495e27ad467aa1cf9624e35346e647","impliedFormat":1},{"version":"d0a20f432f1f10dc5dbb04ae3bee7253f5c7cee5865a262f9aac007b84902276","impliedFormat":1},{"version":"40a2c0b501a4900e65a2e59f7f8ae782d74b6458c39a5dd512fafc4afea4b227","impliedFormat":1},{"version":"01fd25df80ff0b2e4c85bc1ba6ef66eddca1cc484ae5e8ec9ff435203b14861c","impliedFormat":1},{"version":"7e014bc50dfe5fe7c5e2be18a9e32fbb8f72de38efecbdf9fbd10f360a38e0f4","impliedFormat":1},{"version":"28a11a18f89b7693afbda9ddbfd38c80a1696619a1b4bd88404be662da1d5dfd","impliedFormat":1},{"version":"0c708d16675074b1f17d509923b4aeb54e3ef6cfaa4f21013f2109861180e919","impliedFormat":1},{"version":"0f838ef795b09edc7084ad398ceb0846f33870fb9f5e965820056c0a2904f3b9","impliedFormat":1},{"version":"47555dcc32be2967ab6c8d03aabca43646ccf3fd24d823afc5d16e5fde8b4f21","impliedFormat":1},{"version":"71d8af8b762ce74ba0822711595dec857256192a3737ad58e756a43d08acfcd6","impliedFormat":1},{"version":"5af72168eb8b4e2d06d6a6be6fdcf88df6c057687fde4f23a4f8e19b0cf6bdaa","impliedFormat":1},{"version":"f16d398c7bd6a438497bffb3beefebda5f83f0241ce2cc832787d94d40a2843d","impliedFormat":1},{"version":"a4be2828c686a8a5801c12d8aea0890204963437bec5730f8740099cd1fe8f47","impliedFormat":1},{"version":"0555f4237eb0246fe7ba2f455cf2bcae01ed571d8006658ec55b444fd538c152","impliedFormat":1},{"version":"e2f39969c89cff97eee3a27dbda04b702b01433c86f1cdc0104db6ccfbfc6355","impliedFormat":1},{"version":"96a3935e4dffad47672e21147b3430b42209efbd706be6da6d7693501aebf18f","impliedFormat":1},{"version":"5f1b7ae9dae3bc04a2b44fd10721d58a9a4aee0633d99f8b3ac351702f47efbb","impliedFormat":1},{"version":"d4c55922007526e6c361c46722351f51dccb6d767496aab702e14eb6ca2bfdab","impliedFormat":1},{"version":"be09de724616c036cbaf90cc3c669257b336de7d1b497f553724a9da4c17f857","impliedFormat":1},{"version":"193d2c8d4cf4dcdec1d46f46301eb22e23552d056fbb4b60a2419df959ff89a5","impliedFormat":1},{"version":"a87fa98dcc546f5ba028b55901824d586f28b8ef6372c5e665c721a01f17009d","impliedFormat":1},{"version":"4a353ae985a9d09dfbe3dc356aac32bacc84f4e8d39c271cf5e4fd6797f16baf","impliedFormat":1},{"version":"c89e1d89babf24a9f954b12bc17df47fa7875449bf648859ea48a36d78b6d0ce","impliedFormat":1},{"version":"44dc195c154a17bf427b37f237103a9f0615a901b0ce0aa0de0149f8b7fc876b","impliedFormat":1},{"version":"50c611def53ba6a0b99d7c44d4473dee9d7661cb26086e3aa45fe797b1daa068","impliedFormat":1},{"version":"aa6346beca6368ed81b40b9a402db2464b9dba5ec3f24e2ea264ca38cd96c090","impliedFormat":1},{"version":"4a4fc5b3e84ab4af0e627e3aa1d39091a2a0abe50ec419132b5a04e464bf5c25","impliedFormat":1},{"version":"2ff1ba9a37615aab38d8eb351d23f34aa295458bafd198ca75cd9568758cae44","impliedFormat":1},{"version":"aa44ca9f602cfab2f8c8282800ac5d87bb9721dd19fd96a2a3192f4283d82cb2","impliedFormat":1},{"version":"1d4b637bfe1580abf960d291dde84e0bafc574fd6a5c1567f5c1de4301873e38","impliedFormat":1},{"version":"268f38f1cc1dd0ecd8e3fe184477a66a3f8f06a51292b03f77fc285654f04401","impliedFormat":1},{"version":"91483e258d0bc2244e2762be0c9a41970c6b1b28ee6e50a3774449784562de1e","impliedFormat":1},{"version":"3d42dde4d7e1ac7995f5f1aea2706d5ade7e33579c6a654a656d6551852d4346","impliedFormat":1},{"version":"1df8c4cc4eff435cefe3550834f867c25d17b9a26ab19d6e5a2e45df36a94987","impliedFormat":1},{"version":"1b7bb0b8a7478d17cd5e80b480de9642e5e28c35d98b1210ce8809c79cda9198","impliedFormat":1},{"version":"a7b4f8a9a6eedeffe8ac30eb2eff4c24066dc05bddb2a28d653d286ad1ddf07c","impliedFormat":1},{"version":"499d1d3c81ddbea40685f816e404669e263cbc0fdfc838281b86b9fd8fe9ea6f","impliedFormat":1},{"version":"2fcabfb093d918876210e80f037ec2c768d0af5501b5be4858c283c28e8d6f93","impliedFormat":1},{"version":"c5d3fd81de19d95a1808ebb9bd7808dd10dd52418b1a1c529f6f4418b8d3352a","impliedFormat":1},{"version":"fac0bd8fb7a95cb36206f3dd4c272e343ecd759ab5f2fa30029e22635cb9de9d","impliedFormat":1},{"version":"5a0fbdcaab2547334e75cb537245b4cbd35f8679d57e6450569f31bb20c6e7b6","impliedFormat":1},{"version":"fcea37d4da54ce2003ef3d287593743d797de193b4069b595e982144ff22b12d","impliedFormat":99},{"version":"1974d9cd45125039b651dfa8bcb9689e8c1d4d8a7dc20db710a27fe0d497fe6f","impliedFormat":99},{"version":"3b29f7d21bd6a07aea9adc06ee9612d3d86fa03663e3364b4d2c067c7f547e5e","impliedFormat":99},{"version":"01545f0274a774e191f06380ddedaec2b2dfbd021ca2e8775f7819959beb2cb4","impliedFormat":99},{"version":"6c557db1095e0588b7d82d9bdd9e4328872d436a94f2025da271d5ef57845309","impliedFormat":99},{"version":"2827790fc4a5c48d032a79a8d547eca0620d7fc7c997b830417f6de5b04c7c3d","impliedFormat":99},{"version":"7bba3bab37aa81a0b9628c26b43c38bfae8316e3e54a9a0572c2eaa7b20518c7","impliedFormat":99},{"version":"b06104ffcc1cf136ce055fefaceb6766bcc5dfe9ed6cd1db4725aebd1ab92eb2","impliedFormat":1},{"version":"24b771a2236b934637c70659872fc0f700bc106008cd48c69fa09490fd60d3dc","impliedFormat":1},{"version":"91a08bdfa19e983e3d3098d37cd096b04cf640ab3cfb373b997357efc60a09ef","impliedFormat":1},{"version":"fd6f84862d02156a36c8229b7c1be089e330e9ca434791f112e42d1868e01b1f","impliedFormat":1},{"version":"2d1642032ad6e7d8f579d8d7b9099a2d399fd3a77f0db1b618c0079040cb8099","impliedFormat":1},{"version":"12ff538504c374dfa9f554c03d19b2a39ae1816a18b32c1a0549d17b2450d493","impliedFormat":1},{"version":"41ca214cf922678daa4dbfbe0f72cc9ac9c9858baced90041a64d4b29430fb25","impliedFormat":1},{"version":"f1541e57cf058caf3c95fab65b55c7dc2de1c960d866123d43c1deb5531dd25e","impliedFormat":1},{"version":"793b9f1b275af203f9751081adfe2dc11d17690fd5863d97bd90b539fa38c948","impliedFormat":1},{"version":"015b9253293cee33a84af9a93ac69e0df829fa7f4fa7e73e13bb247e68875d90","impliedFormat":1},{"version":"d69e39ab00669858415dd1f81560e51838aaed6a54015f664c87a2f23b3514ca","impliedFormat":1},{"version":"b1e07262f055ec603f5bc84c73f37dac8b27737a9217bd21975c4cce31337958","impliedFormat":1},{"version":"b9d254e420e94b1a38eb5f9cee5795c7ff2f6b50b9acc65d2784cbf291d4c76f","impliedFormat":1},{"version":"786240f85f76b36c5ce04a5b7e560173dfb0be848376c603881b5a0d12f78d42","impliedFormat":1},{"version":"3b9c88853864c2b7518cdde70631901f844275d7cd786df431ef17b222a8ce9f","impliedFormat":1},{"version":"063e9f20b103a2f2d1072cd72ff5346f83c021cab3362dbc414695c2b2fe26d3","impliedFormat":1},{"version":"41f70c97ea147284f6e5f7bbc7bde12e168e33de1465a2103b61516f3eef4475","impliedFormat":1},{"version":"aff83d38ef47a636d4962ee7b8727d83a684410e4597f5fe0e0c3359d752aa14","impliedFormat":1},{"version":"a015389227d502f0812b0c287d801cd477dac2b68b5d3a1c6a978f886f1b406b","impliedFormat":1},{"version":"66d8a3e0ec21e4a3da421917b4d5efe6abede2d568819cabc1e42f2aa979502c","impliedFormat":1},{"version":"fff4800f17d3226151557926d90faa47f62569011c45d03d7403786363258800","impliedFormat":1},{"version":"aa038abfd06cc847cb655c03feef57f6846aba7cc4cfb49d8d80251a207e18c6","impliedFormat":1},{"version":"b6810d72b515e9b90fb0243873fd69fc0d099907550f635349d738a356c38136","impliedFormat":1},{"version":"e65c2016a0b4d07ea7a769d9052fc7ab8989c5e02cceb9d1166fa7eec0bae557","impliedFormat":1},{"version":"78647004e18e4c16b8a2e8345fca9267573d1c5a29e11ddfee71858fd077ef6e","impliedFormat":1},{"version":"0804044cd0488cb7212ddbc1d0f8e1a5bd32970335dbfc613052304a1b0318f9","impliedFormat":1},{"version":"b725acb041d2a18fde8f46c48a1408418489c4aa222f559b1ef47bf267cb4be0","impliedFormat":1},{"version":"85084ae98c1d319e38ef99b1216d3372a9afd7a368022c01c3351b339d52cb58","impliedFormat":1},{"version":"898ec2410fae172e0a9416448b0838bed286322a5c0c8959e8e39400cd4c5697","impliedFormat":1},{"version":"692345a43bac37c507fa7065c554258435ab821bbe4fb44b513a70063e932b45","impliedFormat":1},{"version":"cddd50d7bd9d7fddda91a576db9f61655d1a55e2d870f154485812f6e39d4c15","impliedFormat":1},{"version":"0539583b089247b73a21eb4a5f7e43208a129df6300d6b829dc1039b79b6c8c4","impliedFormat":1},{"version":"7aba43bc7764fcd02232382c780c3e99ef8dbfdac3c58605a0b3781fab3d8044","impliedFormat":1},{"version":"522edc786ed48304671b935cf7d3ed63acc6636ab9888c6e130b97a6aea92b46","impliedFormat":1},{"version":"1e1ed5600d80406a10428e349af8b6f09949cd5054043ea8588903e8f9e8d705","impliedFormat":1},{"version":"de21641eb8edcbc08dd0db4ee70eea907cd07fe72267340b5571c92647f10a77","impliedFormat":1},{"version":"a53039ba614075aeb702271701981babbd0d4f4dcbf319ddee4c08fb8196cc7a","impliedFormat":1},{"version":"6758f7b72fa4d38f4f4b865516d3d031795c947a45cc24f2cfba43c91446d678","impliedFormat":1},{"version":"da679a5bb46df3c6d84f637f09e6689d6c2d07e907ea16adc161e4529a4954d6","impliedFormat":1},{"version":"dc1a664c33f6ddd2791569999db2b3a476e52c5eeb5474768ffa542b136d78c0","impliedFormat":1},{"version":"bdf7abbd7df4f29b3e0728684c790e80590b69d92ed8d3bf8e66d4bd713941fe","impliedFormat":1},{"version":"8decb32fc5d44b403b46c3bb4741188df4fbc3c66d6c65669000c5c9cd506523","impliedFormat":1},{"version":"4beaf337ee755b8c6115ff8a17e22ceab986b588722a52c776b8834af64e0f38","impliedFormat":1},{"version":"c26dd198f2793bbdcc55103823a2767d6223a7fdb92486c18b86deaf63208354","impliedFormat":1},{"version":"93551b302a808f226f0846ad8012354f2d53d6dedc33b540d6ca69836781a574","impliedFormat":1},{"version":"f0ff1c010d5046af3874d3b4df746c6f3921e4b3fbdec61dee0792fc0cb36ccd","impliedFormat":1},{"version":"778b684ebc6b006fcffeab77d25b34bf6e400100e0ec0c76056e165c6399ab05","impliedFormat":1},{"version":"463851fa993af55fb0296e0d6afa27407ef91bf6917098dd665aba1200d250c7","impliedFormat":1},{"version":"67c6de7a9c490bda48eb401bea93904b6bbfc60e47427e887e6a3da6195540be","impliedFormat":1},{"version":"be8f369f8d7e887eab87a3e4e41f1afcf61bf06056801383152aa83bda1f6a72","impliedFormat":1},{"version":"352bfb5f3a9d8a9c2464ad2dc0b2dc56a8212650a541fb550739c286dd341de1","impliedFormat":1},{"version":"a5aae636d9afdacb22d98e4242487436d8296e5a345348325ccc68481fe1b690","impliedFormat":1},{"version":"d007c769e33e72e51286b816d82cd7c3a280cba714e7f958691155068bd7150a","impliedFormat":1},{"version":"764150c107451d2fd5b6de305cff0a9dcecf799e08e6f14b5a6748724db46d8a","impliedFormat":1},{"version":"b04cf223c338c09285010f5308b980ee6d8bfa203824ed2537516f15e92e8c43","impliedFormat":1},{"version":"4b387f208d1e468193a45a51005b1ed5b666010fc22a15dc1baf4234078b636e","impliedFormat":1},{"version":"70441eda704feffd132be0c1541f2c7f6bbaafce25cb9b54b181e26af3068e79","impliedFormat":1},{"version":"d1addb12403afea87a1603121396261a45190886c486c88e1a5d456be17c2049","impliedFormat":1},{"version":"15d43873064dc8787ca1e4c39149be59183c404d48a8cd5a0ea019bb5fdf8d58","impliedFormat":1},{"version":"ea4b5d319625203a5a96897b057fddf6017d0f9a902c16060466fe69cc007243","impliedFormat":1},{"version":"3d06897c536b4aad2b2b015d529270439f2cadd89ca2ff7bd8898ee84898dd88","impliedFormat":1},{"version":"ab01d8fcb89fae8eda22075153053fefac69f7d9571a389632099e7a53f1922d","impliedFormat":1},{"version":"bac0ec1f4c61abc7c54ccebb0f739acb0cdbc22b1b19c91854dc142019492961","impliedFormat":1},{"version":"566b0806f9016fa067b7fecf3951fcc295c30127e5141223393bde16ad04aa4a","impliedFormat":1},{"version":"8e801abfeda45b1b93e599750a0a8d25074d30d4cc01e3563e56c0ff70edeb68","impliedFormat":1},{"version":"902997f91b09620835afd88e292eb217fbd55d01706b82b9a014ff408f357559","impliedFormat":1},{"version":"a3727a926e697919fb59407938bd8573964b3bf543413b685996a47df5645863","impliedFormat":1},{"version":"83f36c0792d352f641a213ee547d21ea02084a148355aa26b6ef82c4f61c1280","impliedFormat":1},{"version":"dce7d69c17a438554c11bbf930dec2bee5b62184c0494d74da336daee088ab69","impliedFormat":1},{"version":"1e8f2cda9735002728017933c54ccea7ebee94b9c68a59a4aac1c9a58aa7da7d","impliedFormat":1},{"version":"e327a2b222cf9e5c93d7c1ed6468ece2e7b9d738e5da04897f1a99f49d42cca1","impliedFormat":1},{"version":"65165246b59654ec4e1501dd87927a0ef95d57359709e00e95d1154ad8443bc7","impliedFormat":1},{"version":"f1bacba19e2fa2eb26c499e36b5ab93d6764f2dba44be3816f12d2bc9ac9a35b","impliedFormat":1},{"version":"bce38da5fd851520d0cb4d1e6c3c04968cec2faa674ed321c118e97e59872edc","impliedFormat":1},{"version":"3398f46037f21fb6c33560ceca257259bd6d2ea03737179b61ea9e17cbe07455","impliedFormat":1},{"version":"6e14fc6c27cb2cb203fe1727bb3a923588f0be8c2604673ad9f879182548daca","impliedFormat":1},{"version":"12b9bcf8395d33837f301a8e6d545a24dfff80db9e32f8e8e6cf4b11671bb442","impliedFormat":1},{"version":"04295cc38689e32a4ea194c954ea6604e6afb6f1c102104f74737cb8cf744422","impliedFormat":1},{"version":"7418f434c136734b23f634e711cf44613ca4c74e63a5ae7429acaee46c7024c8","impliedFormat":1},{"version":"27d40290b7caba1c04468f2b53cf7112f247f8acdd7c20589cd7decf9f762ad0","impliedFormat":1},{"version":"2608b8b83639baf3f07316df29202eead703102f1a7e32f74a1b18cf1eee54b5","impliedFormat":1},{"version":"c93657567a39bd589effe89e863aaadbc339675fca6805ae4d97eafbcce0a05d","impliedFormat":1},{"version":"909d5db5b3b19f03dfb4a8f1d00cf41d2f679857c28775faf1f10794cbbe9db9","impliedFormat":1},{"version":"e4504bffce13574bab83ab900b843590d85a0fd38faab7eff83d84ec55de4aff","impliedFormat":1},{"version":"8ab707f3c833fc1e8a51106b8746c8bc0ce125083ea6200ad881625ae35ce11e","impliedFormat":1},{"version":"730ddc2386276ac66312edbcc60853fedbb1608a99cb0b1ff82ebf26911dba1f","impliedFormat":1},{"version":"c1b3fa201aa037110c43c05ea97800eb66fea3f2ecc5f07c6fd47f2b6b5b21d2","impliedFormat":1},{"version":"636b44188dc6eb326fd566085e6c1c6035b71f839d62c343c299a35888c6f0a9","impliedFormat":1},{"version":"3b2105bf9823b53c269cabb38011c5a71360c8daabc618fec03102c9514d230c","impliedFormat":1},{"version":"f96e63eb56e736304c3aef6c745b9fe93db235ddd1fec10b45319c479de1a432","impliedFormat":1},{"version":"acb4f3cee79f38ceba975e7ee3114eb5cd96ccc02742b0a4c7478b4619f87cd6","impliedFormat":1},{"version":"cfc85d17c1493b6217bad9052a8edc332d1fde81a919228edab33c14aa762939","impliedFormat":1},{"version":"eebda441c4486c26de7a8a7343ebbc361d2b0109abff34c2471e45e34a93020a","impliedFormat":1},{"version":"727b4b8eb62dd98fa4e3a0937172c1a0041eb715b9071c3de96dad597deddcab","impliedFormat":1},{"version":"708e2a347a1b9868ccdb48f3e43647c6eccec47b8591b220afcafc9e7eeb3784","impliedFormat":1},{"version":"6bb598e2d45a170f302f113a5b68e518c8d7661ae3b59baf076be9120afa4813","impliedFormat":1},{"version":"c28e058db8fed2c81d324546f53d2a7aaefff380cbe70f924276dbad89acd7d1","impliedFormat":1},{"version":"ebe8f07bb402102c5a764b0f8e34bd92d6f50bd7ac61a2452e76b80e02f9bb4b","impliedFormat":1},{"version":"826a98cb79deab45ccc4e5a8b90fa64510b2169781a7cbb83c4a0a8867f4cc58","impliedFormat":1},{"version":"618189f94a473b7fdc5cb5ba8b94d146a0d58834cd77cd24d56995f41643ccd5","impliedFormat":1},{"version":"5baadaca408128671536b3cb77fea44330e169ada70ce50b902c8d992fe64cf1","impliedFormat":1},{"version":"a4cc469f3561ea3edc57e091f4c9dcaf7485a70d3836be23a6945db46f0acd0b","impliedFormat":1},{"version":"91b0965538a5eaafa8c09cf9f62b46d6125aa1b3c0e0629dce871f5f41413f90","impliedFormat":1},{"version":"2978e33a00b4b5fb98337c5e473ab7337030b2f69d1480eccef0290814af0d51","impliedFormat":1},{"version":"ba71e9777cb5460e3278f0934fd6354041cb25853feca542312807ce1f18e611","impliedFormat":1},{"version":"608dbaf8c8bb64f4024013e73d7107c16dba4664999a8c6e58f3e71545e48f66","impliedFormat":1},{"version":"61937cefd7f4d6fa76013d33d5a3c5f9b0fc382e90da34790764a0d17d6277fb","impliedFormat":1},{"version":"af7db74826f455bfef6a55a188eb6659fd85fdc16f720a89a515c48724ee4c42","impliedFormat":1},{"version":"d6ce98a960f1b99a72de771fb0ba773cb202c656b8483f22d47d01d68f59ea86","impliedFormat":1},{"version":"2a47dc4a362214f31689870f809c7d62024afb4297a37b22cb86f679c4d04088","impliedFormat":1},{"version":"42d907ac511459d7c4828ee4f3f81cc331a08dc98d7b3cb98e3ff5797c095d2e","impliedFormat":1},{"version":"63d010bff70619e0cdf7900e954a7e188d3175461182f887b869c312a77ecfbd","impliedFormat":1},{"version":"1452816d619e636de512ca98546aafb9a48382d570af1473f0432a9178c4b1ff","impliedFormat":1},{"version":"9e3e3932fe16b9288ec8c948048aef4edf1295b09a5412630d63f4a42265370e","impliedFormat":1},{"version":"8bdba132259883bac06056f7bacd29a4dcf07e3f14ce89edb022fe9b78dcf9b3","impliedFormat":1},{"version":"5a5406107d9949d83e1225273bcee1f559bb5588942907d923165d83251a0e37","impliedFormat":1},{"version":"ca0ca4ca5ad4772161ee2a99741d616fea780d777549ba9f05f4a24493ab44e1","impliedFormat":1},{"version":"e7ee7be996db0d7cce41a85e4cae3a5fc86cf26501ad94e0a20f8b6c1c55b2d4","impliedFormat":1},{"version":"72263ae386d6a49392a03bde2f88660625da1eca5df8d95120d8ccf507483d20","impliedFormat":1},{"version":"b498375d015f01585269588b6221008aae6f0c0dc53ead8796ace64bdfcf62ea","impliedFormat":1},{"version":"c37aa3657fa4d1e7d22565ae609b1370c6b92bafb8c92b914403d45f0e610ddc","impliedFormat":1},{"version":"34534c0ead52cc753bdfdd486430ef67f615ace54a4c0e5a3652b4116af84d6d","impliedFormat":1},{"version":"a1079b54643537f75fa4f4bb963d787a302bddbe3a6001c4b0a524b746e6a9de","impliedFormat":1},{"version":"7fc9b18b6aafa8a1fc1441670c6c9da63e3d7942c7f451300c48bafd988545e9","impliedFormat":1},{"version":"07b07ce02325714240c6d408409ca6668a87bac5556b1e25248f01d7016a3dd0","impliedFormat":1},{"version":"db4bf9df97340e4ec7738d75eff66d8965f084b921a1dc2c388ae1b49c98c604","impliedFormat":1},{"version":"8f0b6970dd0dc8d9502a19f2c20b5cce826ffa1fce44147f44f94e23c850be83","impliedFormat":1},{"version":"5dcf414a592118e979829a6aeda7fe6a2fe4ec7c3aafaa7194dc599840bac09d","impliedFormat":1},{"version":"57d936294b6c543d19110a75836859683ad9ac9b23bc0625e590d72886b6a942","impliedFormat":1},{"version":"958a09aeddfc2e1de2ab81ca4da2088404a254ef26cd9f38e3c7ab4129c70efc","impliedFormat":1},{"version":"fa30060fde9dc4f42e52f95ca5f2d97a895b0e42f60abc0603e25ffb3439bba5","impliedFormat":1},{"version":"634181711cf46947d7fa7d45071d194b22c5fe994896bf6d72098b82d401ee7f","impliedFormat":1},{"version":"4dbe645932ffa7b88cc7cf4f4016e1a0c30f93d8f6c7d53416ebd27ce85b2fc5","impliedFormat":1},{"version":"917271a5219b69b830281b14ce643b52e867f1720927b87dc992275b91fec432","impliedFormat":1},{"version":"5bb6cf713a7e2fb9ee694968db5cd632e314d8f9f589305195c6aaf1bb64a249","impliedFormat":1},{"version":"924f480240b9a64c0948bda2360164ef0846f88cc5d77d955a9fd82ed3765ad1","impliedFormat":1},{"version":"c86cdd704d0ad610f73a45ae015a2ff1803873d1e31fb707efedd7eeba08911d","impliedFormat":1},{"version":"44a793ebf52bbadd67fe17e198d571fd9a6b3961cff36cb319e517df30840e55","impliedFormat":1},{"version":"0e2e40001aa2634c879b96a6c70ea8966aafe24e0e0771c67e07595c5fb20521","impliedFormat":1},{"version":"3b7a0825f1c2ca4f5436c317a8a88143c9634dbfa9a737ccca3425a49f6689de","impliedFormat":1},{"version":"2be1630f473e160ecb59f3525e3cfb66f89e74d057317e37bbb1e6c20af298d2","impliedFormat":1},{"version":"d6827f88f3109d4e5d8e9e55f0f475c240448c469f72afab8fe1d1fc43af4e56","impliedFormat":1},{"version":"6a9c5127096b35264eb7cd21b2417bfc1d42cceca9ba4ce2bb0c3410b7816042","impliedFormat":1},{"version":"78828b06c0d3b586954015e9ebde5480b009e166c71244763bda328ec0920f41","impliedFormat":1},{"version":"7e771891adaa85b690266bc37bd6eb43bc57eecc4b54693ead36467e7369952a","impliedFormat":1},{"version":"a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a","impliedFormat":1},{"version":"ca72190df0eb9b09d4b600821c8c7b6c9747b75a1c700c4d57dc0bb72abc074c","affectsGlobalScope":true,"impliedFormat":1},{"version":"11e2d554398d2bd460e7d06b2fa5827a297c8acfbe00b4f894a224ac0862857f","impliedFormat":1},{"version":"17a1140b90821c2c8d7064c9fc7598797c385714e6aa88b85e30b1159af8dc9b","affectsGlobalScope":true,"impliedFormat":1},{"version":"374ca798f244e464346f14301dc2a8b4b111af1a83b49fffef5906c338a1f922","impliedFormat":1},{"version":"5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713","impliedFormat":1},{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true,"impliedFormat":1},{"version":"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","impliedFormat":1},{"version":"dab86d9604fe40854ef3c0a6f9e8948873dc3509213418e5e457f410fd11200f","impliedFormat":1},{"version":"bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","impliedFormat":1},{"version":"489532ff54b714f0e0939947a1c560e516d3ae93d51d639ab02e907a0e950114","impliedFormat":1},{"version":"f30bb836526d930a74593f7b0f5c1c46d10856415a8f69e5e2fc3db80371e362","impliedFormat":1},{"version":"14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","impliedFormat":1},{"version":"5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea","impliedFormat":1},{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true,"impliedFormat":1},{"version":"816ad2e607a96de5bcac7d437f843f5afd8957f1fa5eefa6bba8e4ed7ca8fd84","affectsGlobalScope":true,"impliedFormat":1},{"version":"cec36af22f514322f870e81d30675c78df82ae8bf4863f5fd4e4424c040c678d","impliedFormat":1},{"version":"d903fafe96674bc0b2ac38a5be4a8fc07b14c2548d1cdb165a80ea24c44c0c54","impliedFormat":1},{"version":"5eec82ac21f84d83586c59a16b9b8502d34505d1393393556682fe7e7fde9ef2","impliedFormat":1},{"version":"04eb6578a588d6a46f50299b55f30e3a04ef27d0c5a46c57d8fcc211cd530faa","impliedFormat":1},{"version":"8d3c583a07e0c37e876908c2d5da575019f689df8d9fa4c081d99119d53dba22","impliedFormat":1},{"version":"2c828a5405191d006115ab34e191b8474bc6c86ffdc401d1a9864b1b6e088a58","impliedFormat":1},{"version":"e630e5528e899219ae319e83bef54bf3bcb91b01d76861ecf881e8e614b167f0","affectsGlobalScope":true,"impliedFormat":1},{"version":"2c45b35f4850881ab132f80d3cb51e8a359a4d8fafdc5ff2401d260dc27862f4","impliedFormat":1},{"version":"7c013aa892414a7fdcfd861ae524a668eaa3ede8c7c0acafaf611948122c8d93","impliedFormat":1},{"version":"b0973c3cbcdc59b37bf477731d468696ecaf442593ec51bab497a613a580fe30","impliedFormat":1},{"version":"4989e92ba5b69b182d2caaea6295af52b7dc73a4f7a2e336a676722884e7139d","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3624aed92dab6da8484280d3cb3e2f4130ec3f4ef3f8201c95144ae9e898bb6","affectsGlobalScope":true,"impliedFormat":1},{"version":"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","impliedFormat":1},{"version":"210d54cd652ec0fec8c8916e4af59bb341065576ecda039842f9ffb2e908507c","impliedFormat":1},{"version":"36b03690b628eab08703d63f04eaa89c5df202e5f1edf3989f13ad389cd2c091","impliedFormat":1},{"version":"0effadd232a20498b11308058e334d3339cc5bf8c4c858393e38d9d4c0013dcf","impliedFormat":1},{"version":"25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","impliedFormat":1},{"version":"fd93cee2621ff42dabe57b7be402783fd1aa69ece755bcba1e0290547ae60513","impliedFormat":1},{"version":"1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","impliedFormat":1},{"version":"69ee23dd0d215b09907ad30d23f88b7790c93329d1faf31d7835552a10cf7cbf","impliedFormat":1},{"version":"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","impliedFormat":1},{"version":"23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","impliedFormat":1},{"version":"a15eb098ed86a4135cba05d77e792d6189fa8607a00c9b1b381c0e9550c04ba5","impliedFormat":1},{"version":"970a90f76d4d219ad60819d61f5994514087ba94c985647a3474a5a3d12714ed","affectsGlobalScope":true,"impliedFormat":1},{"version":"e10177274a35a9d07c825615340b2fcde2f610f53f3fb40269fd196b4288dda6","impliedFormat":1},{"version":"c4577fb855ca259bdbf3ea663ca73988ce5f84251a92b4aef80a1f4122b6f98e","impliedFormat":1},{"version":"3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","impliedFormat":1},{"version":"5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2","impliedFormat":1},{"version":"f0900cd5d00fe1263ff41201fb8073dbeb984397e4af3b8002a5c207a30bdc33","affectsGlobalScope":true,"impliedFormat":1},{"version":"ff07a9a03c65732ccc59b3c65bc584173da093bd563a6565411c01f5703bd3cb","affectsGlobalScope":true,"impliedFormat":1},{"version":"06d7c42d256f0ce6afe1b2b6cfbc97ab391f29dadb00dd0ae8e8f23f5bc916c3","impliedFormat":1},{"version":"ec4bd1b200670fb567920db572d6701ed42a9641d09c4ff6869768c8f81b404c","impliedFormat":1},{"version":"e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa","impliedFormat":1},{"version":"da26af7362f53d122283bc69fed862b9a9fe27e01bc6a69d1d682e0e5a4df3e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e","impliedFormat":1},{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true,"impliedFormat":1},{"version":"ed2a670a77a1b80653c5bde2d813b0ab2e92872cc9b2b611ce11050b95139be6","impliedFormat":1},{"version":"751de0531791ce05f2bc9b0fe8fe4ea5600799d0fdc92094c1d794805e7944f7","impliedFormat":1},{"version":"d258b243f130c00b958bfad96586b5413bccc86cf17e9339e6a94d45f7e7b84f","impliedFormat":1},{"version":"77c5c7f8578d139c74102a29384f5f4f0792a12d819ddcdcaf8307185ff2d45d","impliedFormat":1}],"root":[[142,145],147,[149,160],[166,175],[318,320],[326,329],[449,453],[455,457]],"options":{"alwaysStrict":true,"composite":true,"downlevelIteration":true,"emitDecoratorMetadata":false,"esModuleInterop":true,"experimentalDecorators":false,"jsx":2,"module":199,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitReturns":true,"noImplicitThis":true,"noUncheckedIndexedAccess":true,"noUnusedLocals":false,"noUnusedParameters":true,"removeComments":true,"skipLibCheck":true,"sourceMap":true,"strict":true,"strictPropertyInitialization":false,"stripInternal":true,"target":9},"fileIdsList":[[506],[229,230,231,506],[227,228,229,230,231,232,233,234,506],[228,229,506],[223,506],[228,506],[229,230,506],[223,227,506],[98,506],[101,506],[106,108,506],[94,98,110,111,506],[121,124,130,132,506],[93,98,506],[92,506],[93,506],[100,506],[103,506],[93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133,134,135,136,137,138,506],[109,506],[105,506],[106,506],[97,98,104,506],[105,106,506],[112,506],[133,506],[97,506],[98,115,118,506],[114,506],[115,506],[113,115,506],[98,118,120,121,122,506],[121,122,124,506],[98,113,116,119,126,506],[113,114,506],[95,96,113,115,117,506],[115,118,506],[96,113,116,119,506],[98,118,120,506],[121,122,506],[182,506],[185,506],[190,192,506],[178,182,194,195,506],[205,208,214,216,506],[177,182,506],[176,506],[177,506],[184,506],[187,506],[177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,217,218,219,220,221,222,506],[193,506],[189,506],[190,506],[181,182,188,506],[189,190,506],[196,506],[217,506],[181,506],[182,199,202,506],[198,506],[199,506],[197,199,506],[182,202,204,205,206,506],[205,206,208,506],[182,197,200,203,210,506],[197,198,506],[179,180,197,199,200,201,506],[199,202,506],[180,197,200,203,506],[182,202,204,506],[205,206,506],[259,506],[258,259,260,266,267,268,269,506],[223,235,258,506],[258,506],[265,506],[263,264,506],[258,261,262,506],[486,506],[223,235,506],[322,324,506],[323,506],[321,506],[458,506],[460,506],[463,506],[464,469,497,506],[465,476,477,484,494,505,506],[465,466,476,484,506],[467,506],[468,469,477,485,506],[469,494,502,506],[470,472,476,484,506],[471,506],[472,473,506],[476,506],[474,476,506],[476,477,478,494,505,506],[476,477,478,491,494,497,506],[506,510],[472,479,484,494,505,506],[476,477,479,480,484,494,502,505,506],[479,481,494,502,505,506],[460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512],[476,482,506],[483,505,506],[472,476,484,494,506],[485,506],[463,487,506],[488,504,506,510],[489,506],[490,506],[476,491,492,506],[491,493,506,508],[464,476,494,495,496,497,506],[464,494,496,506],[494,495,506],[497,506],[498,506],[476,500,501,506],[500,501,506],[469,484,494,502,506],[503,506],[484,504,506],[464,479,490,505,506],[469,506],[494,506,507],[506,508],[506,509],[464,469,476,478,487,494,505,506,508,510],[494,506,511],[476,479,481,494,502,505,506,511,513],[164,506],[161,162,163,506],[162,506],[341,342,348,349,506],[350,414,415,506],[341,348,350,506],[342,350,506],[341,343,344,345,348,350,353,354,506],[344,355,369,370,506],[341,348,353,354,355,506],[341,343,348,350,352,353,354,506],[341,342,353,354,355,506],[340,356,361,368,371,372,413,416,438,506],[341,506],[342,346,347,506],[342,346,347,348,349,351,362,363,364,365,366,367,506],[342,347,348,506],[342,506],[341,342,347,348,350,363,506],[348,506],[342,348,349,506],[346,348,506],[355,369,506],[341,343,344,345,348,353,506],[341,348,351,354,506],[344,352,353,354,357,358,359,360,506],[354,506],[341,343,348,350,352,354,506],[350,353,506],[350,506],[341,348,354,506],[342,348,353,364,506],[353,417,506],[350,354,506],[348,353,506],[353,506],[341,351,506],[341,348,506],[348,353,354,506],[373,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,506],[353,354,506],[343,348,506],[341,348,352,353,354,366,506],[341,343,348,354,506],[341,343,348,506],[374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,506],[366,374,506],[374,506],[341,348,350,353,373,374,506],[341,348,350,352,353,354,366,373,506],[331,332,506],[331,332,337,439,440,506],[332,337,439,506],[331,332,337,506],[331,332,337,338,506],[331,506],[330,331,332,333,334,335,336,337,338,339,439,440,441,442,443,444,445,446,447,506],[330,331,332,333,334,335,506],[330,333,506],[330,331,332,333,334,506],[311,312,506],[311,506],[311,312,313,314,506],[309,315,506],[315,506],[309,310,506],[46,47,48,506],[46,506],[284,506],[62,506],[61,506],[52,53,506],[50,51,52,54,55,59,506],[51,52,506],[60,506],[52,506],[50,51,52,55,56,57,58,506],[50,51,61,506],[464,506],[91,140,506],[139,464,488,506],[66,506],[63,82,83,84,85,86,87,88,89,506],[82,506],[75,87,506],[49,62,63,64,65,66,67,68,69,70,71,72,73,74,75,506],[62,74,506],[62,63,66,75,76,506],[64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,506],[62,63,66,506],[62,63,65,71,73,76,506],[62,68,74,506],[62,68,69,506],[62,66,69,70,506],[62,223,237,255,283,285,286,287,288,289,506],[62,223,224,254,283,287,290,291,506],[283,289,506],[238,300,506],[238,245,292,299,506],[292,506],[248,506],[239,245,247,506],[239,246,506],[62,273,506],[235,506],[87,237,249,252,254,255,256,257,272,276,283,286,287,288,289,290,291,292,293,295,298,301,304,306,307,308,316,506],[294,506],[223,245,257,506],[223,235,236,237,239,249,255,256,506],[297,506],[240,245,252,283,296,506],[283,506],[240,283,506],[62,274,275,276,506],[62,272,274,280,506],[225,273,274,275,277,278,279,280,281,282,506],[62,273,274,275,506],[62,273,274,506],[62,272,273,506],[303,506],[272,283,506],[241,245,272,283,302,506],[241,272,283,506],[253,506],[223,237,242,245,283,506],[223,235,237,249,252,254,506],[257,270,272,283,506],[226,271,283,506],[251,506],[243,245,250,506],[243,506],[224,506],[305,506],[238,239,240,241,242,243,244,506],[223,237,255,256,293,301,315,506],[84,283,506],[223,237,256,283,506],[287,289,290,506],[62,90,141,142,170,488,506],[90,506],[90,142,149,152,153,154,168,506],[90,142,143,144,149,152,153,158,159,160,166,167,168,169,172,173,174,506],[90,169,506],[62,90,141,142,143,144,145,149,157,158,159,166,168,171,463,464,469,506],[90,143,169,506],[90,141,143,147,149,151,152,168,506],[149,150,169,506],[149,469,506],[151,169,171,506],[90,141,142,143,146,147,149,151,153,154,155,156,157,158,159,160,166,167,169,171,476,488,506],[90,149,151,152,153,158,168,506],[90,142,149,153,154,155,168,506],[90,141,143,149,152,153,168,169,464,506],[62,90,142,149,153,154,168,506],[90,143,149,153,168,506],[90,149,151,153,165,168,506],[90,143,149,152,153,168,169,469,506],[62,90,141,148,153,168,506],[90,149,506],[317,318,506],[317,506],[317,318,328,506],[317,319,320,326,327,328,329,449,450,451,452,453,456,506],[223,317,318,325,448,463,506],[317,318,328,454,455,506],[146,223,317,318,325,326,327,506],[317,328,506],[146,317,506]],"referencedMap":[[246,1],[234,2],[235,3],[232,4],[233,2],[227,5],[229,6],[230,5],[231,7],[228,8],[100,9],[103,10],[109,11],[112,12],[133,13],[111,14],[92,1],[93,15],[94,16],[97,1],[95,1],[96,1],[134,17],[99,9],[98,1],[135,18],[102,10],[101,1],[139,19],[136,20],[106,21],[108,22],[105,23],[107,24],[104,21],[137,25],[110,9],[138,26],[113,27],[132,28],[129,29],[131,30],[116,31],[123,32],[125,33],[127,34],[126,35],[118,36],[115,29],[119,1],[130,37],[120,38],[117,1],[128,1],[114,1],[121,39],[122,1],[124,40],[184,41],[187,42],[193,43],[196,44],[217,45],[195,46],[176,1],[177,47],[178,48],[181,1],[179,1],[180,1],[218,49],[183,41],[182,1],[219,50],[186,42],[185,1],[223,51],[220,52],[190,53],[192,54],[189,55],[191,56],[188,53],[221,57],[194,41],[222,58],[197,59],[216,60],[213,61],[215,62],[200,63],[207,64],[209,65],[211,66],[210,67],[202,68],[199,61],[203,1],[214,69],[204,70],[201,1],[212,1],[198,1],[205,71],[206,1],[208,72],[260,73],[270,74],[262,75],[267,76],[268,76],[266,77],[265,78],[263,79],[264,80],[258,81],[259,75],[269,76],[325,82],[324,83],[323,1],[322,84],[321,1],[459,85],[305,1],[458,1],[460,86],[461,86],[463,87],[464,88],[465,89],[466,90],[467,91],[468,92],[469,93],[470,94],[471,95],[472,96],[473,96],[475,97],[474,98],[476,97],[477,99],[478,100],[462,101],[512,1],[479,102],[480,103],[481,104],[513,105],[482,106],[483,107],[484,108],[485,109],[486,80],[487,110],[488,111],[489,112],[490,113],[491,114],[492,114],[493,115],[494,116],[496,117],[495,118],[497,119],[498,120],[499,1],[500,121],[501,122],[502,123],[503,124],[504,125],[505,126],[506,127],[507,128],[508,129],[509,130],[510,131],[511,132],[261,1],[514,1],[515,1],[516,133],[165,134],[164,135],[162,1],[163,136],[161,1],[350,137],[416,138],[415,139],[414,140],[355,141],[371,142],[369,143],[370,144],[356,145],[439,146],[341,1],[343,1],[344,147],[345,1],[348,148],[351,1],[368,149],[346,1],[363,150],[349,151],[364,152],[367,153],[365,153],[362,154],[342,1],[347,1],[366,155],[372,156],[360,1],[354,157],[352,158],[361,159],[358,160],[357,160],[353,161],[359,162],[435,163],[429,164],[422,165],[421,166],[430,167],[431,153],[423,168],[436,169],[417,170],[418,171],[419,172],[438,173],[420,166],[424,169],[425,174],[432,175],[433,151],[434,174],[437,153],[426,172],[373,176],[427,177],[428,178],[413,179],[411,180],[412,180],[377,180],[378,180],[379,180],[380,180],[381,180],[382,180],[383,180],[384,180],[403,180],[385,180],[386,180],[387,180],[388,180],[389,180],[390,180],[410,180],[391,180],[392,180],[393,180],[408,180],[394,180],[409,180],[395,180],[406,180],[407,180],[396,180],[397,180],[398,180],[404,180],[405,180],[399,180],[400,180],[401,180],[402,180],[376,181],[375,182],[374,183],[340,1],[446,1],[445,1],[443,184],[441,185],[440,186],[338,187],[339,188],[332,189],[448,190],[447,184],[336,191],[334,192],[331,1],[442,193],[335,1],[337,1],[333,1],[444,1],[330,1],[313,194],[314,195],[315,196],[310,197],[312,1],[309,198],[311,199],[148,1],[44,1],[45,1],[8,1],[10,1],[9,1],[2,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[3,1],[4,1],[19,1],[23,1],[20,1],[21,1],[22,1],[24,1],[25,1],[26,1],[5,1],[27,1],[28,1],[29,1],[30,1],[6,1],[34,1],[31,1],[32,1],[33,1],[35,1],[7,1],[36,1],[41,1],[42,1],[37,1],[38,1],[39,1],[40,1],[1,1],[43,1],[48,1],[49,200],[46,1],[47,201],[285,202],[284,203],[62,204],[54,205],[60,206],[56,1],[57,1],[55,207],[58,204],[50,1],[51,1],[61,208],[53,209],[59,210],[52,211],[91,212],[141,213],[140,214],[224,1],[87,215],[90,216],[85,217],[88,218],[84,217],[64,1],[76,219],[65,203],[66,203],[79,220],[78,221],[82,222],[67,203],[81,203],[68,203],[77,203],[69,203],[80,203],[75,223],[74,224],[70,203],[73,225],[71,226],[72,227],[86,1],[63,1],[83,217],[290,228],[287,1],[292,229],[289,1],[291,230],[301,231],[300,232],[238,233],[249,234],[239,1],[248,235],[247,236],[276,237],[236,238],[317,239],[293,5],[295,240],[294,241],[257,242],[298,243],[297,244],[240,245],[296,246],[277,247],[273,203],[280,203],[281,248],[283,249],[278,250],[282,203],[275,251],[274,252],[279,203],[225,203],[237,1],[304,253],[241,254],[303,255],[302,256],[254,257],[253,258],[242,245],[255,259],[271,260],[272,261],[226,1],[252,262],[251,263],[250,264],[243,1],[308,265],[306,266],[256,5],[299,1],[245,267],[316,268],[307,1],[244,1],[286,269],[288,270],[454,271],[89,1],[146,1],[171,272],[147,1],[142,273],[155,274],[175,275],[143,276],[169,277],[156,278],[153,279],[144,273],[151,280],[174,281],[145,278],[157,282],[170,276],[168,283],[159,284],[160,285],[158,286],[173,287],[172,288],[166,289],[167,290],[149,291],[152,1],[154,292],[150,87],[319,293],[320,294],[329,295],[327,294],[457,296],[449,297],[326,295],[455,294],[456,298],[328,299],[453,295],[450,300],[318,301],[452,294],[451,293]],"exportedModulesMap":[[246,1],[234,2],[235,3],[232,4],[233,2],[227,5],[229,6],[230,5],[231,7],[228,8],[100,9],[103,10],[109,11],[112,12],[133,13],[111,14],[92,1],[93,15],[94,16],[97,1],[95,1],[96,1],[134,17],[99,9],[98,1],[135,18],[102,10],[101,1],[139,19],[136,20],[106,21],[108,22],[105,23],[107,24],[104,21],[137,25],[110,9],[138,26],[113,27],[132,28],[129,29],[131,30],[116,31],[123,32],[125,33],[127,34],[126,35],[118,36],[115,29],[119,1],[130,37],[120,38],[117,1],[128,1],[114,1],[121,39],[122,1],[124,40],[184,41],[187,42],[193,43],[196,44],[217,45],[195,46],[176,1],[177,47],[178,48],[181,1],[179,1],[180,1],[218,49],[183,41],[182,1],[219,50],[186,42],[185,1],[223,51],[220,52],[190,53],[192,54],[189,55],[191,56],[188,53],[221,57],[194,41],[222,58],[197,59],[216,60],[213,61],[215,62],[200,63],[207,64],[209,65],[211,66],[210,67],[202,68],[199,61],[203,1],[214,69],[204,70],[201,1],[212,1],[198,1],[205,71],[206,1],[208,72],[260,73],[270,74],[262,75],[267,76],[268,76],[266,77],[265,78],[263,79],[264,80],[258,81],[259,75],[269,76],[325,82],[324,83],[323,1],[322,84],[321,1],[459,85],[305,1],[458,1],[460,86],[461,86],[463,87],[464,88],[465,89],[466,90],[467,91],[468,92],[469,93],[470,94],[471,95],[472,96],[473,96],[475,97],[474,98],[476,97],[477,99],[478,100],[462,101],[512,1],[479,102],[480,103],[481,104],[513,105],[482,106],[483,107],[484,108],[485,109],[486,80],[487,110],[488,111],[489,112],[490,113],[491,114],[492,114],[493,115],[494,116],[496,117],[495,118],[497,119],[498,120],[499,1],[500,121],[501,122],[502,123],[503,124],[504,125],[505,126],[506,127],[507,128],[508,129],[509,130],[510,131],[511,132],[261,1],[514,1],[515,1],[516,133],[165,134],[164,135],[162,1],[163,136],[161,1],[350,137],[416,138],[415,139],[414,140],[355,141],[371,142],[369,143],[370,144],[356,145],[439,146],[341,1],[343,1],[344,147],[345,1],[348,148],[351,1],[368,149],[346,1],[363,150],[349,151],[364,152],[367,153],[365,153],[362,154],[342,1],[347,1],[366,155],[372,156],[360,1],[354,157],[352,158],[361,159],[358,160],[357,160],[353,161],[359,162],[435,163],[429,164],[422,165],[421,166],[430,167],[431,153],[423,168],[436,169],[417,170],[418,171],[419,172],[438,173],[420,166],[424,169],[425,174],[432,175],[433,151],[434,174],[437,153],[426,172],[373,176],[427,177],[428,178],[413,179],[411,180],[412,180],[377,180],[378,180],[379,180],[380,180],[381,180],[382,180],[383,180],[384,180],[403,180],[385,180],[386,180],[387,180],[388,180],[389,180],[390,180],[410,180],[391,180],[392,180],[393,180],[408,180],[394,180],[409,180],[395,180],[406,180],[407,180],[396,180],[397,180],[398,180],[404,180],[405,180],[399,180],[400,180],[401,180],[402,180],[376,181],[375,182],[374,183],[340,1],[446,1],[445,1],[443,184],[441,185],[440,186],[338,187],[339,188],[332,189],[448,190],[447,184],[336,191],[334,192],[331,1],[442,193],[335,1],[337,1],[333,1],[444,1],[330,1],[313,194],[314,195],[315,196],[310,197],[312,1],[309,198],[311,199],[148,1],[44,1],[45,1],[8,1],[10,1],[9,1],[2,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[3,1],[4,1],[19,1],[23,1],[20,1],[21,1],[22,1],[24,1],[25,1],[26,1],[5,1],[27,1],[28,1],[29,1],[30,1],[6,1],[34,1],[31,1],[32,1],[33,1],[35,1],[7,1],[36,1],[41,1],[42,1],[37,1],[38,1],[39,1],[40,1],[1,1],[43,1],[48,1],[49,200],[46,1],[47,201],[285,202],[284,203],[62,204],[54,205],[60,206],[56,1],[57,1],[55,207],[58,204],[50,1],[51,1],[61,208],[53,209],[59,210],[52,211],[91,212],[141,213],[140,214],[224,1],[87,215],[90,216],[85,217],[88,218],[84,217],[64,1],[76,219],[65,203],[66,203],[79,220],[78,221],[82,222],[67,203],[81,203],[68,203],[77,203],[69,203],[80,203],[75,223],[74,224],[70,203],[73,225],[71,226],[72,227],[86,1],[63,1],[83,217],[290,228],[287,1],[292,229],[289,1],[291,230],[301,231],[300,232],[238,233],[249,234],[239,1],[248,235],[247,236],[276,237],[236,238],[317,239],[293,5],[295,240],[294,241],[257,242],[298,243],[297,244],[240,245],[296,246],[277,247],[273,203],[280,203],[281,248],[283,249],[278,250],[282,203],[275,251],[274,252],[279,203],[225,203],[237,1],[304,253],[241,254],[303,255],[302,256],[254,257],[253,258],[242,245],[255,259],[271,260],[272,261],[226,1],[252,262],[251,263],[250,264],[243,1],[308,265],[306,266],[256,5],[299,1],[245,267],[316,268],[307,1],[244,1],[286,269],[288,270],[454,271],[89,1],[146,1],[171,272],[147,1],[142,273],[155,274],[175,275],[143,276],[169,277],[156,278],[153,279],[144,273],[151,280],[174,281],[145,278],[157,282],[170,276],[168,283],[159,284],[160,285],[158,286],[173,287],[172,288],[166,289],[167,290],[149,291],[152,1],[154,292],[150,87],[319,293],[320,294],[329,295],[327,294],[457,296],[449,297],[326,295],[455,294],[456,298],[328,299],[453,295],[450,300],[318,301],[452,294],[451,293]],"semanticDiagnosticsPerFile":[246,234,235,232,233,227,229,230,231,228,100,103,109,112,133,111,92,93,94,97,95,96,134,99,98,135,102,101,139,136,106,108,105,107,104,137,110,138,113,132,129,131,116,123,125,127,126,118,115,119,130,120,117,128,114,121,122,124,184,187,193,196,217,195,176,177,178,181,179,180,218,183,182,219,186,185,223,220,190,192,189,191,188,221,194,222,197,216,213,215,200,207,209,211,210,202,199,203,214,204,201,212,198,205,206,208,260,270,262,267,268,266,265,263,264,258,259,269,325,324,323,322,321,459,305,458,460,461,463,464,465,466,467,468,469,470,471,472,473,475,474,476,477,478,462,512,479,480,481,513,482,483,484,485,486,487,488,489,490,491,492,493,494,496,495,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,261,514,515,516,165,164,162,163,161,350,416,415,414,355,371,369,370,356,439,341,343,344,345,348,351,368,346,363,349,364,367,365,362,342,347,366,372,360,354,352,361,358,357,353,359,435,429,422,421,430,431,423,436,417,418,419,438,420,424,425,432,433,434,437,426,373,427,428,413,411,412,377,378,379,380,381,382,383,384,403,385,386,387,388,389,390,410,391,392,393,408,394,409,395,406,407,396,397,398,404,405,399,400,401,402,376,375,374,340,446,445,443,441,440,338,339,332,448,447,336,334,331,442,335,337,333,444,330,313,314,315,310,312,309,311,148,44,45,8,10,9,2,11,12,13,14,15,16,17,18,3,4,19,23,20,21,22,24,25,26,5,27,28,29,30,6,34,31,32,33,35,7,36,41,42,37,38,39,40,1,43,48,49,46,47,285,284,62,54,60,56,57,55,58,50,51,61,53,59,52,[91,[{"file":"../core-backend/src/bloom.ts","start":9,"length":6,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core-backend/src/bloom.ts","start":39,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core-backend/src/bloom.ts","start":472,"length":36,"messageText":"Object is possibly 'undefined'.","category":1,"code":2532}]],141,[140,[{"file":"../core-backend/src/logger.ts","start":350,"length":3,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core-backend/src/logger.ts","start":386,"length":6,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core-backend/src/logger.ts","start":424,"length":5,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core-backend/src/logger.ts","start":431,"length":7,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core-backend/src/logger.ts","start":617,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],224,[87,[{"file":"../core/src/eventfiltermatches.ts","start":9,"length":11,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/eventfiltermatches.ts","start":9,"length":11,"messageText":"'EventFilter' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"../core/src/eventfiltermatches.ts","start":463,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/eventfiltermatches.ts","start":2714,"length":12,"messageText":"Type '[string, any] | undefined' must have a '[Symbol.iterator]()' method that returns an iterator.","category":1,"code":2488}]],90,[85,[{"file":"../core/src/replacements.ts","start":9,"length":16,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/replacements.ts","start":9,"length":16,"messageText":"'DeserializedJson' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"../core/src/replacements.ts","start":272,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/replacements.ts","start":439,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/replacements.ts","start":627,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/replacements.ts","start":816,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[88,[{"file":"../core/src/requestfiltermatches.ts","start":9,"length":18,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/requestfiltermatches.ts","start":68,"length":10,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/requestfiltermatches.ts","start":68,"length":10,"messageText":"'HttpMethod' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"../core/src/requestfiltermatches.ts","start":80,"length":13,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/requestfiltermatches.ts","start":80,"length":13,"messageText":"'RequestFilter' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"../core/src/requestfiltermatches.ts","start":95,"length":14,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/requestfiltermatches.ts","start":95,"length":14,"messageText":"'ResponseFilter' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"../core/src/requestfiltermatches.ts","start":111,"length":11,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/requestfiltermatches.ts","start":111,"length":11,"messageText":"'StringMatch' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"../core/src/requestfiltermatches.ts","start":158,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/requestfiltermatches.ts","start":476,"length":7,"code":2339,"category":1,"messageText":"Property 'entries' does not exist on type 'Headers'."},{"file":"../core/src/requestfiltermatches.ts","start":1220,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[84,[{"file":"../core/src/retry.ts","start":9,"length":12,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/retry.ts","start":9,"length":12,"messageText":"'RetryOptions' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"../core/src/retry.ts","start":197,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/retry.ts","start":789,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/retry.ts","start":1533,"length":3,"messageText":"'now' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"file":"../core/src/retry.ts","start":1968,"length":3,"messageText":"'now' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"file":"../core/src/retry.ts","start":2382,"length":3,"messageText":"'now' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"file":"../core/src/retry.ts","start":3300,"length":8,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | undefined' is not assignable to parameter of type 'string'.","category":1,"code":2345,"next":[{"messageText":"Type 'undefined' is not assignable to type 'string'.","category":1,"code":2322}]}},{"file":"../core/src/retry.ts","start":3345,"length":8,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | undefined' is not assignable to parameter of type 'string'.","category":1,"code":2345,"next":[{"messageText":"Type 'undefined' is not assignable to type 'string'.","category":1,"code":2322}]}},{"file":"../core/src/retry.ts","start":3392,"length":8,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | undefined' is not assignable to parameter of type 'string'.","category":1,"code":2345,"next":[{"messageText":"Type 'undefined' is not assignable to type 'string'.","category":1,"code":2322}]}},{"file":"../core/src/retry.ts","start":3441,"length":8,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | undefined' is not assignable to parameter of type 'string'.","category":1,"code":2345,"next":[{"messageText":"Type 'undefined' is not assignable to type 'string'.","category":1,"code":2322}]}},{"file":"../core/src/retry.ts","start":3489,"length":8,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | undefined' is not assignable to parameter of type 'string'.","category":1,"code":2345,"next":[{"messageText":"Type 'undefined' is not assignable to type 'string'.","category":1,"code":2322}]}}]],[64,[{"file":"../core/src/schemas/addmissingversionfield.ts","start":0,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[76,[{"file":"../core/src/schemas/api.ts","start":9,"length":4,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/schemas/api.ts","start":21,"length":7,"code":1479,"category":1,"messageText":{"messageText":"The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"ulidx\")' call instead.","category":1,"code":1479,"next":[{"messageText":"To convert this file to an ECMAScript module, change its file extension to '.mts', or add the field `\"type\": \"module\"` to '/Users/eric/code/triggerdotdev/trigger.dev/packages/core/package.json'.","category":3,"code":1481}]}},{"file":"../core/src/schemas/api.ts","start":39,"length":1,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/schemas/api.ts","start":64,"length":8,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/schemas/api.ts","start":64,"length":8,"messageText":"'Prettify' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"../core/src/schemas/api.ts","start":101,"length":22,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/schemas/api.ts","start":168,"length":20,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/schemas/api.ts","start":190,"length":17,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/schemas/api.ts","start":236,"length":17,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/schemas/api.ts","start":255,"length":15,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/schemas/api.ts","start":304,"length":20,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/schemas/api.ts","start":326,"length":23,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/schemas/api.ts","start":384,"length":22,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/schemas/api.ts","start":408,"length":22,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/schemas/api.ts","start":457,"length":21,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/schemas/api.ts","start":480,"length":11,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/schemas/api.ts","start":526,"length":18,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/schemas/api.ts","start":548,"length":22,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/schemas/api.ts","start":574,"length":36,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/schemas/api.ts","start":614,"length":22,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/schemas/api.ts","start":669,"length":16,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/schemas/api.ts","start":687,"length":16,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/schemas/api.ts","start":705,"length":10,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/schemas/api.ts","start":743,"length":24,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/schemas/api.ts","start":769,"length":21,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/schemas/api.ts","start":821,"length":15,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/schemas/api.ts","start":863,"length":24,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/schemas/api.ts","start":918,"length":19,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/schemas/api.ts","start":965,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":1234,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":1594,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":1884,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":2003,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":2097,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":2189,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":2388,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":2452,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":2523,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":2863,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":3238,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":3309,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":3384,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":3893,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":4765,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":5081,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":5326,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":5702,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":6628,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":6878,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":7358,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":7523,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":7708,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":7896,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":8047,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":8192,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":8400,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":8574,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":8674,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":9612,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":10267,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":10562,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":10787,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":11631,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":12103,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":12630,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":12834,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":13420,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":13565,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":13717,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":13937,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":15752,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":16969,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":17648,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":17770,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":18043,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":18219,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":18420,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":18585,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":18869,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":20033,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":20236,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":20448,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":20689,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":20935,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":21361,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":21600,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":21831,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":22099,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":22298,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":22552,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":22749,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":22943,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":23428,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":23711,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":24265,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":24870,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":25306,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":25526,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":25748,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":26088,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":26162,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":26788,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":29276,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":29486,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":29889,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":30231,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":30691,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":30969,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":31129,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":31380,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":31595,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":31781,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":32023,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":32223,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":32459,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":33071,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":33284,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":33485,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":33717,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":33977,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":34257,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":34513,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":34586,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":34908,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":35171,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":35702,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/api.ts","start":35910,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[65,[{"file":"../core/src/schemas/errors.ts","start":9,"length":1,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/schemas/errors.ts","start":26,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/errors.ts","start":232,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[66,[{"file":"../core/src/schemas/eventfilter.ts","start":9,"length":1,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/schemas/eventfilter.ts","start":26,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/eventfilter.ts","start":1483,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/eventfilter.ts","start":1618,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[79,[{"file":"../core/src/schemas/events.ts","start":9,"length":1,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/schemas/events.ts","start":34,"length":15,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/schemas/events.ts","start":68,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/events.ts","start":775,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[78,[{"file":"../core/src/schemas/fetch.ts","start":9,"length":1,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/schemas/fetch.ts","start":34,"length":18,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/schemas/fetch.ts","start":54,"length":18,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/schemas/fetch.ts","start":98,"length":17,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/schemas/fetch.ts","start":149,"length":20,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/schemas/fetch.ts","start":205,"length":8,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/schemas/fetch.ts","start":205,"length":8,"messageText":"'Prettify' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"../core/src/schemas/fetch.ts","start":234,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/fetch.ts","start":1294,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/fetch.ts","start":1782,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/fetch.ts","start":2047,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/fetch.ts","start":2696,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/fetch.ts","start":3052,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/fetch.ts","start":3255,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/fetch.ts","start":3549,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],82,[67,[{"file":"../core/src/schemas/integrations.ts","start":9,"length":1,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/schemas/integrations.ts","start":26,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/integrations.ts","start":306,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/integrations.ts","start":518,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[81,[{"file":"../core/src/schemas/jobs.ts","start":9,"length":1,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/schemas/jobs.ts","start":26,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[68,[{"file":"../core/src/schemas/json.ts","start":9,"length":1,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/schemas/json.ts","start":253,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/json.ts","start":740,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[77,[{"file":"../core/src/schemas/notifications.ts","start":9,"length":1,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/schemas/notifications.ts","start":26,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/notifications.ts","start":121,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/notifications.ts","start":235,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/notifications.ts","start":532,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/notifications.ts","start":700,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/notifications.ts","start":945,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/notifications.ts","start":1264,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/notifications.ts","start":1645,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/notifications.ts","start":1829,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/notifications.ts","start":2090,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[69,[{"file":"../core/src/schemas/properties.ts","start":9,"length":1,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/schemas/properties.ts","start":74,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/properties.ts","start":439,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/properties.ts","start":581,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[80,[{"file":"../core/src/schemas/request.ts","start":9,"length":1,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/schemas/request.ts","start":26,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[75,[{"file":"../core/src/schemas/requestfilter.ts","start":9,"length":1,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/schemas/requestfilter.ts","start":34,"length":17,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/schemas/requestfilter.ts","start":53,"length":21,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/schemas/requestfilter.ts","start":108,"length":8,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/schemas/requestfilter.ts","start":108,"length":8,"messageText":"'Prettify' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"../core/src/schemas/requestfilter.ts","start":338,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/requestfilter.ts","start":760,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/requestfilter.ts","start":2039,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[74,[{"file":"../core/src/schemas/runs.ts","start":9,"length":1,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/schemas/runs.ts","start":34,"length":8,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/schemas/runs.ts","start":34,"length":8,"messageText":"'Prettify' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"../core/src/schemas/runs.ts","start":71,"length":22,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/schemas/runs.ts","start":71,"length":22,"messageText":"'RuntimeEnvironmentType' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"../core/src/schemas/runs.ts","start":119,"length":14,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/schemas/runs.ts","start":119,"length":14,"messageText":"'ErrorWithStack' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"../core/src/schemas/runs.ts","start":162,"length":18,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/schemas/runs.ts","start":162,"length":18,"messageText":"'JobRunStatusRecord' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"../core/src/schemas/runs.ts","start":182,"length":24,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/schemas/runs.ts","start":237,"length":16,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/schemas/runs.ts","start":273,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/runs.ts","start":743,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/runs.ts","start":2929,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/runs.ts","start":3769,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[70,[{"file":"../core/src/schemas/schedules.ts","start":9,"length":1,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/schemas/schedules.ts","start":26,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/schedules.ts","start":83,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/schedules.ts","start":277,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/schedules.ts","start":572,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/schedules.ts","start":927,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/schedules.ts","start":1237,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/schedules.ts","start":1744,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/schedules.ts","start":1938,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[73,[{"file":"../core/src/schemas/statuses.ts","start":9,"length":1,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/schemas/statuses.ts","start":34,"length":22,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/schemas/statuses.ts","start":83,"length":15,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/schemas/statuses.ts","start":117,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/statuses.ts","start":453,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/statuses.ts","start":842,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/statuses.ts","start":972,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[71,[{"file":"../core/src/schemas/tasks.ts","start":9,"length":1,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/schemas/tasks.ts","start":34,"length":21,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/schemas/tasks.ts","start":57,"length":11,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/schemas/tasks.ts","start":101,"length":22,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/schemas/tasks.ts","start":142,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/tasks.ts","start":329,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/tasks.ts","start":1328,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/tasks.ts","start":1548,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[72,[{"file":"../core/src/schemas/triggers.ts","start":9,"length":1,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/schemas/triggers.ts","start":34,"length":17,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/schemas/triggers.ts","start":53,"length":15,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/schemas/triggers.ts","start":102,"length":21,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/schemas/triggers.ts","start":156,"length":22,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/schemas/triggers.ts","start":202,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/triggers.ts","start":405,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/triggers.ts","start":747,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/triggers.ts","start":855,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/triggers.ts","start":1013,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/triggers.ts","start":1305,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/triggers.ts","start":1393,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/schemas/triggers.ts","start":1523,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[86,[{"file":"../core/src/searchparams.ts","start":0,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],63,[83,[{"file":"../core/src/utils.ts","start":121,"length":11,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/utils.ts","start":121,"length":11,"messageText":"'EventFilter' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"../core/src/utils.ts","start":278,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/utils.ts","start":971,"length":11,"code":2322,"category":1,"messageText":{"messageText":"Type 'string[] | number[] | boolean[] | ({ $endsWith: string; } | { $startsWith: string; } | { $ignoreCaseEquals: string; } | { $exists: boolean; } | { $isNull: boolean; } | { $anythingBut: string | number | boolean; } | ... 7 more ... | { ...; })[] | EventFilter | undefined' is not assignable to type 'string[] | number[] | boolean[] | ({ $endsWith: string; } | { $startsWith: string; } | { $ignoreCaseEquals: string; } | { $exists: boolean; } | { $isNull: boolean; } | { $anythingBut: string | number | boolean; } | ... 7 more ... | { ...; })[] | EventFilter'.","category":1,"code":2322,"next":[{"messageText":"Type 'undefined' is not assignable to type 'string[] | number[] | boolean[] | ({ $endsWith: string; } | { $startsWith: string; } | { $ignoreCaseEquals: string; } | { $exists: boolean; } | { $isNull: boolean; } | { $anythingBut: string | number | boolean; } | ... 7 more ... | { ...; })[] | EventFilter'.","category":1,"code":2322}]}},{"file":"../core/src/utils.ts","start":1047,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[290,[{"file":"../core/src/v3/apiclient/core.ts","start":9,"length":1,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/apiclient/core.ts","start":34,"length":12,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/apiclient/core.ts","start":87,"length":12,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/apiclient/core.ts","start":130,"length":23,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/apiclient/core.ts","start":190,"length":18,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/apiclient/core.ts","start":210,"length":8,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/apiclient/core.ts","start":248,"length":10,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/apiclient/core.ts","start":248,"length":10,"messageText":"'Attributes' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"../core/src/v3/apiclient/core.ts","start":260,"length":4,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/apiclient/core.ts","start":260,"length":4,"messageText":"'Span' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"../core/src/v3/apiclient/core.ts","start":303,"length":26,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/apiclient/core.ts","start":379,"length":13,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/apiclient/core.ts","start":422,"length":19,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/apiclient/core.ts","start":488,"length":10,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/apiclient/core.ts","start":502,"length":16,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/apiclient/core.ts","start":502,"length":16,"messageText":"'CursorPageParams' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"../core/src/v3/apiclient/core.ts","start":522,"length":18,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/apiclient/core.ts","start":522,"length":18,"messageText":"'CursorPageResponse' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"../core/src/v3/apiclient/core.ts","start":544,"length":15,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/apiclient/core.ts","start":563,"length":21,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/apiclient/core.ts","start":563,"length":21,"messageText":"'OffsetLimitPageParams' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"../core/src/v3/apiclient/core.ts","start":588,"length":23,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/apiclient/core.ts","start":588,"length":23,"messageText":"'OffsetLimitPageResponse' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"../core/src/v3/apiclient/core.ts","start":637,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/apiclient/core.ts","start":1453,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/apiclient/core.ts","start":1879,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/apiclient/core.ts","start":2173,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/apiclient/core.ts","start":3073,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/apiclient/core.ts","start":9930,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/apiclient/core.ts","start":11758,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/apiclient/core.ts","start":12981,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/apiclient/core.ts","start":14328,"length":3,"messageText":"'url' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"file":"../core/src/v3/apiclient/core.ts","start":14343,"length":7,"messageText":"'attempt' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"file":"../core/src/v3/apiclient/core.ts","start":14678,"length":4,"messageText":"'span' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"file":"../core/src/v3/apiclient/core.ts","start":15264,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/apiclient/core.ts","start":15477,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[287,[{"file":"../core/src/v3/apiclient/errors.ts","start":69,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/apiclient/errors.ts","start":2571,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/apiclient/errors.ts","start":2964,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/apiclient/errors.ts","start":3054,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/apiclient/errors.ts","start":3148,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/apiclient/errors.ts","start":3244,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/apiclient/errors.ts","start":3332,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/apiclient/errors.ts","start":3420,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/apiclient/errors.ts","start":3519,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/apiclient/errors.ts","start":3638,"length":18,"messageText":"Not all code paths return a value.","category":1,"code":7030},{"file":"../core/src/v3/apiclient/errors.ts","start":4178,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[292,[{"file":"../core/src/v3/apiclient/index.ts","start":9,"length":7,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/apiclient/index.ts","start":18,"length":11,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/apiclient/index.ts","start":68,"length":1,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/apiclient/index.ts","start":93,"length":7,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/apiclient/index.ts","start":144,"length":18,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/apiclient/index.ts","start":166,"length":27,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/apiclient/index.ts","start":197,"length":27,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/apiclient/index.ts","start":228,"length":24,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/apiclient/index.ts","start":256,"length":19,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/apiclient/index.ts","start":279,"length":36,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/apiclient/index.ts","start":319,"length":21,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/apiclient/index.ts","start":344,"length":34,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/apiclient/index.ts","start":382,"length":21,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/apiclient/index.ts","start":407,"length":31,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/apiclient/index.ts","start":442,"length":24,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/apiclient/index.ts","start":470,"length":20,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/apiclient/index.ts","start":494,"length":19,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/apiclient/index.ts","start":517,"length":19,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/apiclient/index.ts","start":540,"length":17,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/apiclient/index.ts","start":561,"length":24,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/apiclient/index.ts","start":589,"length":19,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/apiclient/index.ts","start":612,"length":14,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/apiclient/index.ts","start":630,"length":22,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/apiclient/index.ts","start":656,"length":22,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/apiclient/index.ts","start":682,"length":19,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/apiclient/index.ts","start":705,"length":36,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/apiclient/index.ts","start":745,"length":21,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/apiclient/index.ts","start":798,"length":11,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/apiclient/index.ts","start":851,"length":17,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/apiclient/index.ts","start":851,"length":17,"messageText":"'ApiRequestOptions' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"../core/src/v3/apiclient/index.ts","start":872,"length":17,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/apiclient/index.ts","start":893,"length":15,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/apiclient/index.ts","start":893,"length":15,"messageText":"'ZodFetchOptions' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"../core/src/v3/apiclient/index.ts","start":912,"length":16,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/apiclient/index.ts","start":932,"length":8,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/apiclient/index.ts","start":944,"length":18,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/apiclient/index.ts","start":966,"length":23,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/apiclient/index.ts","start":1017,"length":8,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/apiclient/index.ts","start":1056,"length":31,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/apiclient/index.ts","start":1056,"length":31,"messageText":"'CreateEnvironmentVariableParams' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"../core/src/v3/apiclient/index.ts","start":1091,"length":32,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/apiclient/index.ts","start":1091,"length":32,"messageText":"'ImportEnvironmentVariablesParams' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"../core/src/v3/apiclient/index.ts","start":1127,"length":26,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/apiclient/index.ts","start":1127,"length":26,"messageText":"'ListProjectRunsQueryParams' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"../core/src/v3/apiclient/index.ts","start":1157,"length":19,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/apiclient/index.ts","start":1157,"length":19,"messageText":"'ListRunsQueryParams' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"../core/src/v3/apiclient/index.ts","start":1180,"length":31,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/apiclient/index.ts","start":1180,"length":31,"messageText":"'UpdateEnvironmentVariableParams' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"../core/src/v3/apiclient/index.ts","start":1614,"length":16,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/apiclient/index.ts","start":1707,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/apiclient/index.ts","start":15813,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[289,[{"file":"../core/src/v3/apiclient/pagination.ts","start":660,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/apiclient/pagination.ts","start":2139,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[291,[{"file":"../core/src/v3/apiclient/types.ts","start":9,"length":9,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/apiclient/types.ts","start":49,"length":16,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/apiclient/types.ts","start":49,"length":16,"messageText":"'CursorPageParams' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484}]],[301,[{"file":"../core/src/v3/apiclientmanager-api.ts","start":118,"length":19,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/apiclientmanager-api.ts","start":200,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[300,[{"file":"../core/src/v3/apiclientmanager/index.ts","start":9,"length":9,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/apiclientmanager/index.ts","start":51,"length":9,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/apiclientmanager/index.ts","start":62,"length":14,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/apiclientmanager/index.ts","start":78,"length":16,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/apiclientmanager/index.ts","start":131,"length":9,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/apiclientmanager/index.ts","start":176,"length":22,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/apiclientmanager/index.ts","start":176,"length":22,"messageText":"'ApiClientConfiguration' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"../core/src/v3/apiclientmanager/index.ts","start":250,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[238,[{"file":"../core/src/v3/apiclientmanager/types.ts","start":9,"length":17,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/apiclientmanager/types.ts","start":9,"length":17,"messageText":"'ApiRequestOptions' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484}]],[249,[{"file":"../core/src/v3/clock-api.ts","start":118,"length":8,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/clock-api.ts","start":177,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[239,[{"file":"../core/src/v3/clock/clock.ts","start":216,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[248,[{"file":"../core/src/v3/clock/index.ts","start":36,"length":9,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/clock/index.ts","start":47,"length":14,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/clock/index.ts","start":147,"length":11,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/clock/index.ts","start":225,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[247,[{"file":"../core/src/v3/clock/simpleclock.ts","start":9,"length":11,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/clock/simpleclock.ts","start":67,"length":5,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/clock/simpleclock.ts","start":67,"length":5,"messageText":"'Clock' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"../core/src/v3/clock/simpleclock.ts","start":92,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[276,[{"file":"../core/src/v3/errors.ts","start":9,"length":1,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/errors.ts","start":34,"length":12,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/errors.ts","start":75,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/errors.ts","start":219,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/errors.ts","start":749,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/errors.ts","start":1232,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/errors.ts","start":1434,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/errors.ts","start":2044,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/errors.ts","start":2876,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/errors.ts","start":3882,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[236,[{"file":"../core/src/v3/icons.ts","start":9,"length":14,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/icons.ts","start":59,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[317,[{"file":"../core/src/v3/index.ts","start":518,"length":26,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/index.ts","start":656,"length":14,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/index.ts","start":674,"length":20,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/index.ts","start":698,"length":26,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/index.ts","start":728,"length":25,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/index.ts","start":757,"length":25,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/index.ts","start":786,"length":25,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/index.ts","start":851,"length":13,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/index.ts","start":948,"length":18,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/index.ts","start":1010,"length":17,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/index.ts","start":1031,"length":35,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/index.ts","start":1070,"length":19,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/index.ts","start":1093,"length":13,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/index.ts","start":1153,"length":4,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/index.ts","start":1192,"length":23,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/index.ts","start":1219,"length":16,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/index.ts","start":1239,"length":24,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/index.ts","start":1267,"length":19,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/index.ts","start":1323,"length":19,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/index.ts","start":1387,"length":23,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/index.ts","start":1464,"length":25,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/index.ts","start":1493,"length":25,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/index.ts","start":1522,"length":22,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/index.ts","start":1548,"length":28,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/index.ts","start":1580,"length":24,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/index.ts","start":1608,"length":11,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/index.ts","start":1623,"length":17,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/index.ts","start":1644,"length":11,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286}]],[293,[{"file":"../core/src/v3/limits.ts","start":9,"length":14,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/limits.ts","start":9,"length":14,"messageText":"'AttributeValue' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"../core/src/v3/limits.ts","start":25,"length":10,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/limits.ts","start":25,"length":10,"messageText":"'Attributes' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"../core/src/v3/limits.ts","start":66,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/limits.ts","start":118,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/limits.ts","start":169,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/limits.ts","start":229,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/limits.ts","start":288,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/limits.ts","start":335,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/limits.ts","start":375,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/limits.ts","start":430,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/limits.ts","start":486,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/limits.ts","start":545,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[295,[{"file":"../core/src/v3/logger-api.ts","start":118,"length":9,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/logger-api.ts","start":180,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[294,[{"file":"../core/src/v3/logger/index.ts","start":9,"length":14,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/logger/index.ts","start":25,"length":10,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/logger/index.ts","start":25,"length":10,"messageText":"'TaskLogger' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"../core/src/v3/logger/index.ts","start":68,"length":9,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/logger/index.ts","start":79,"length":14,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/logger/index.ts","start":95,"length":16,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/logger/index.ts","start":148,"length":4,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/logger/index.ts","start":148,"length":4,"messageText":"'Span' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"../core/src/v3/logger/index.ts","start":259,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[257,[{"file":"../core/src/v3/logger/tasklogger.ts","start":9,"length":10,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/logger/tasklogger.ts","start":9,"length":10,"messageText":"'Attributes' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"../core/src/v3/logger/tasklogger.ts","start":21,"length":4,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/logger/tasklogger.ts","start":21,"length":4,"messageText":"'Span' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"../core/src/v3/logger/tasklogger.ts","start":27,"length":11,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/logger/tasklogger.ts","start":27,"length":11,"messageText":"'SpanOptions' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"../core/src/v3/logger/tasklogger.ts","start":77,"length":6,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/logger/tasklogger.ts","start":77,"length":6,"messageText":"'Logger' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"../core/src/v3/logger/tasklogger.ts","start":85,"length":14,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/logger/tasklogger.ts","start":143,"length":21,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/logger/tasklogger.ts","start":193,"length":26,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/logger/tasklogger.ts","start":269,"length":13,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/logger/tasklogger.ts","start":312,"length":17,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/logger/tasklogger.ts","start":376,"length":9,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/logger/tasklogger.ts","start":376,"length":9,"messageText":"'ClockTime' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"../core/src/v3/logger/tasklogger.ts","start":420,"length":5,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/logger/tasklogger.ts","start":528,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/logger/tasklogger.ts","start":1186,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/logger/tasklogger.ts","start":3439,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/logger/tasklogger.ts","start":3563,"length":4,"messageText":"'name' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"file":"../core/src/v3/logger/tasklogger.ts","start":3891,"length":3,"messageText":"'key' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true}]],[298,[{"file":"../core/src/v3/runtime-api.ts","start":118,"length":10,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/runtime-api.ts","start":183,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[297,[{"file":"../core/src/v3/runtime/index.ts","start":38,"length":27,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/runtime/index.ts","start":67,"length":14,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/runtime/index.ts","start":83,"length":22,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/runtime/index.ts","start":136,"length":9,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/runtime/index.ts","start":147,"length":14,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/runtime/index.ts","start":163,"length":16,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/runtime/index.ts","start":265,"length":18,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/runtime/index.ts","start":324,"length":5,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/runtime/index.ts","start":410,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[240,[{"file":"../core/src/v3/runtime/manager.ts","start":11,"length":27,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/runtime/manager.ts","start":42,"length":24,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/runtime/manager.ts","start":70,"length":14,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/runtime/manager.ts","start":88,"length":22,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286}]],[296,[{"file":"../core/src/v3/runtime/noopruntimemanager.ts","start":9,"length":27,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/runtime/noopruntimemanager.ts","start":38,"length":14,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/runtime/noopruntimemanager.ts","start":54,"length":22,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/runtime/noopruntimemanager.ts","start":107,"length":14,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/runtime/noopruntimemanager.ts","start":107,"length":14,"messageText":"'RuntimeManager' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"../core/src/v3/runtime/noopruntimemanager.ts","start":143,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/runtime/noopruntimemanager.ts","start":264,"length":2,"messageText":"'ms' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"file":"../core/src/v3/runtime/noopruntimemanager.ts","start":340,"length":4,"messageText":"'date' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true}]],[277,[{"file":"../core/src/v3/schemas/api.ts","start":9,"length":1,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/schemas/api.ts","start":34,"length":24,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/schemas/api.ts","start":60,"length":20,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/schemas/api.ts","start":112,"length":12,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/schemas/api.ts","start":154,"length":15,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/schemas/api.ts","start":191,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/api.ts","start":390,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/api.ts","start":767,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/api.ts","start":920,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/api.ts","start":1113,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/api.ts","start":1390,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/api.ts","start":1722,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/api.ts","start":1829,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/api.ts","start":2599,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/api.ts","start":2740,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/api.ts","start":2971,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/api.ts","start":3160,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/api.ts","start":3470,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/api.ts","start":3607,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/api.ts","start":3786,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/api.ts","start":3996,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/api.ts","start":4232,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/api.ts","start":4452,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/api.ts","start":4643,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/api.ts","start":5023,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/api.ts","start":5242,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/api.ts","start":5401,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/api.ts","start":6148,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/api.ts","start":6344,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/api.ts","start":6479,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/api.ts","start":6620,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/api.ts","start":6711,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/api.ts","start":8468,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/api.ts","start":10259,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/api.ts","start":10429,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/api.ts","start":10626,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/api.ts","start":11125,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/api.ts","start":11272,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/api.ts","start":11539,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/api.ts","start":11727,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/api.ts","start":11872,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/api.ts","start":12952,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/api.ts","start":13136,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/api.ts","start":13334,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/api.ts","start":14311,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/api.ts","start":14992,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/api.ts","start":15167,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/api.ts","start":15417,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/api.ts","start":15636,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/api.ts","start":15835,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/api.ts","start":16087,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/api.ts","start":16270,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/api.ts","start":16429,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/api.ts","start":16521,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[273,[{"file":"../core/src/v3/schemas/common.ts","start":9,"length":1,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/schemas/common.ts","start":45,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/common.ts","start":242,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/common.ts","start":470,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/common.ts","start":682,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/common.ts","start":893,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/common.ts","start":1092,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/common.ts","start":1321,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/common.ts","start":1513,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/common.ts","start":1687,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/common.ts","start":2365,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/common.ts","start":3019,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/common.ts","start":3238,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/common.ts","start":3796,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/common.ts","start":3990,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/common.ts","start":4289,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/common.ts","start":4543,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/common.ts","start":4751,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/common.ts","start":4963,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/common.ts","start":5130,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/common.ts","start":5201,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/common.ts","start":5635,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/common.ts","start":6182,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/common.ts","start":6390,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/common.ts","start":6545,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/common.ts","start":6889,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/common.ts","start":7194,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/common.ts","start":7412,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[280,[{"file":"../core/src/v3/schemas/eventfilter.ts","start":9,"length":1,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/schemas/eventfilter.ts","start":26,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/eventfilter.ts","start":1473,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[281,[{"file":"../core/src/v3/schemas/fetch.ts","start":9,"length":1,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/schemas/fetch.ts","start":34,"length":12,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/schemas/fetch.ts","start":76,"length":11,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/schemas/fetch.ts","start":121,"length":8,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/schemas/fetch.ts","start":121,"length":8,"messageText":"'Prettify' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"../core/src/v3/schemas/fetch.ts","start":150,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/fetch.ts","start":1129,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/fetch.ts","start":1593,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/fetch.ts","start":1795,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/fetch.ts","start":2179,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/fetch.ts","start":2438,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],283,[278,[{"file":"../core/src/v3/schemas/messages.ts","start":9,"length":1,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/schemas/messages.ts","start":36,"length":13,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/schemas/messages.ts","start":53,"length":16,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/schemas/messages.ts","start":73,"length":22,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/schemas/messages.ts","start":99,"length":28,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/schemas/messages.ts","start":159,"length":15,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/schemas/messages.ts","start":178,"length":20,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/schemas/messages.ts","start":202,"length":27,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/schemas/messages.ts","start":233,"length":24,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/schemas/messages.ts","start":261,"length":34,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/schemas/messages.ts","start":299,"length":23,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/schemas/messages.ts","start":326,"length":10,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/schemas/messages.ts","start":367,"length":12,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/schemas/messages.ts","start":403,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/messages.ts","start":1280,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/messages.ts","start":1590,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/messages.ts","start":2349,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/messages.ts","start":2561,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/messages.ts","start":3070,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/messages.ts","start":3762,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/messages.ts","start":4030,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/messages.ts","start":4306,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/messages.ts","start":5292,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/messages.ts","start":6490,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/messages.ts","start":7424,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/messages.ts","start":8456,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/messages.ts","start":10299,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/messages.ts","start":14685,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/messages.ts","start":15846,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/messages.ts","start":16388,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/messages.ts","start":16915,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/messages.ts","start":21548,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/messages.ts","start":22897,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/messages.ts","start":23172,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[282,[{"file":"../core/src/v3/schemas/opentelemetry.ts","start":9,"length":1,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/schemas/opentelemetry.ts","start":26,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/opentelemetry.ts","start":266,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/opentelemetry.ts","start":515,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/opentelemetry.ts","start":759,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/opentelemetry.ts","start":949,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/opentelemetry.ts","start":1097,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/opentelemetry.ts","start":1198,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/opentelemetry.ts","start":1324,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/opentelemetry.ts","start":1459,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[275,[{"file":"../core/src/v3/schemas/resources.ts","start":9,"length":1,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/schemas/resources.ts","start":34,"length":12,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/schemas/resources.ts","start":48,"length":12,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/schemas/resources.ts","start":62,"length":16,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/schemas/resources.ts","start":108,"length":13,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/schemas/resources.ts","start":142,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/resources.ts","start":498,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/resources.ts","start":769,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[274,[{"file":"../core/src/v3/schemas/schemas.ts","start":9,"length":1,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/schemas/schemas.ts","start":34,"length":11,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/schemas/schemas.ts","start":34,"length":11,"messageText":"'RequireKeys' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"../core/src/v3/schemas/schemas.ts","start":74,"length":13,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/schemas/schemas.ts","start":89,"length":13,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/schemas/schemas.ts","start":104,"length":16,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/schemas/schemas.ts","start":249,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/schemas.ts","start":405,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/schemas.ts","start":997,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/schemas.ts","start":1329,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/schemas.ts","start":1598,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/schemas.ts","start":1880,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/schemas.ts","start":2166,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/schemas.ts","start":2350,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/schemas.ts","start":3132,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/schemas.ts","start":4219,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/schemas.ts","start":4311,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/schemas.ts","start":4647,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/schemas.ts","start":4811,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/schemas.ts","start":5233,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/schemas.ts","start":5368,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/schemas.ts","start":5668,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/schemas.ts","start":6547,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/schemas.ts","start":6694,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[279,[{"file":"../core/src/v3/schemas/style.ts","start":9,"length":1,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/schemas/style.ts","start":26,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/style.ts","start":443,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[225,[{"file":"../core/src/v3/schemas/tokens.ts","start":9,"length":1,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/schemas/tokens.ts","start":26,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/tokens.ts","start":255,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/schemas/tokens.ts","start":452,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[237,[{"file":"../core/src/v3/semanticinternalattributes.ts","start":0,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[304,[{"file":"../core/src/v3/task-catalog-api.ts","start":118,"length":14,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/task-catalog-api.ts","start":192,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[241,[{"file":"../core/src/v3/task-catalog/catalog.ts","start":9,"length":16,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/task-catalog/catalog.ts","start":27,"length":24,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/task-catalog/catalog.ts","start":82,"length":25,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/task-catalog/catalog.ts","start":82,"length":25,"messageText":"'TaskMetadataWithFunctions' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484}]],[303,[{"file":"../core/src/v3/task-catalog/index.ts","start":43,"length":16,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/task-catalog/index.ts","start":61,"length":24,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/task-catalog/index.ts","start":116,"length":25,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/task-catalog/index.ts","start":116,"length":25,"messageText":"'TaskMetadataWithFunctions' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"../core/src/v3/task-catalog/index.ts","start":170,"length":9,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/task-catalog/index.ts","start":181,"length":14,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/task-catalog/index.ts","start":197,"length":16,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/task-catalog/index.ts","start":296,"length":15,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/task-catalog/index.ts","start":391,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[302,[{"file":"../core/src/v3/task-catalog/nooptaskcatalog.ts","start":9,"length":16,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/task-catalog/nooptaskcatalog.ts","start":27,"length":24,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/task-catalog/nooptaskcatalog.ts","start":82,"length":25,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/task-catalog/nooptaskcatalog.ts","start":82,"length":25,"messageText":"'TaskMetadataWithFunctions' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"../core/src/v3/task-catalog/nooptaskcatalog.ts","start":136,"length":11,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/task-catalog/nooptaskcatalog.ts","start":136,"length":11,"messageText":"'TaskCatalog' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"../core/src/v3/task-catalog/nooptaskcatalog.ts","start":169,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/task-catalog/nooptaskcatalog.ts","start":246,"length":4,"messageText":"'task' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"file":"../core/src/v3/task-catalog/nooptaskcatalog.ts","start":331,"length":2,"messageText":"'id' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"file":"../core/src/v3/task-catalog/nooptaskcatalog.ts","start":343,"length":8,"messageText":"'metadata' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"file":"../core/src/v3/task-catalog/nooptaskcatalog.ts","start":417,"length":2,"messageText":"'id' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"file":"../core/src/v3/task-catalog/nooptaskcatalog.ts","start":429,"length":7,"messageText":"'updates' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"file":"../core/src/v3/task-catalog/nooptaskcatalog.ts","start":595,"length":2,"messageText":"'id' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"file":"../core/src/v3/task-catalog/nooptaskcatalog.ts","start":684,"length":2,"messageText":"'id' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"file":"../core/src/v3/task-catalog/nooptaskcatalog.ts","start":777,"length":2,"messageText":"'id' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true}]],[254,[{"file":"../core/src/v3/task-context-api.ts","start":118,"length":14,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/task-context-api.ts","start":190,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[253,[{"file":"../core/src/v3/taskcontext/index.ts","start":9,"length":10,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/taskcontext/index.ts","start":9,"length":10,"messageText":"'Attributes' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"../core/src/v3/taskcontext/index.ts","start":58,"length":26,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/taskcontext/index.ts","start":86,"length":14,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/taskcontext/index.ts","start":131,"length":9,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/taskcontext/index.ts","start":142,"length":14,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/taskcontext/index.ts","start":158,"length":16,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/taskcontext/index.ts","start":211,"length":11,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/taskcontext/index.ts","start":211,"length":11,"messageText":"'TaskContext' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"../core/src/v3/taskcontext/index.ts","start":250,"length":26,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/taskcontext/index.ts","start":352,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[242,[{"file":"../core/src/v3/taskcontext/types.ts","start":9,"length":26,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/taskcontext/types.ts","start":37,"length":14,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286}]],[255,[{"file":"../core/src/v3/tracer.ts","start":11,"length":7,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/tracer.ts","start":11,"length":7,"messageText":"'Context' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"../core/src/v3/tracer.ts","start":22,"length":11,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/tracer.ts","start":22,"length":11,"messageText":"'SpanOptions' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"../core/src/v3/tracer.ts","start":37,"length":14,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/tracer.ts","start":55,"length":7,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/tracer.ts","start":66,"length":11,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/tracer.ts","start":81,"length":5,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/tracer.ts","start":154,"length":6,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/tracer.ts","start":154,"length":6,"messageText":"'Logger' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"../core/src/v3/tracer.ts","start":162,"length":4,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/tracer.ts","start":210,"length":26,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/tracer.ts","start":285,"length":5,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/tracer.ts","start":322,"length":5,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/tracer.ts","start":359,"length":11,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/tracer.ts","start":548,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[271,[{"file":"../core/src/v3/types/config.ts","start":9,"length":15,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/types/config.ts","start":9,"length":15,"messageText":"'FailureFnParams' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"../core/src/v3/types/config.ts","start":26,"length":12,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/types/config.ts","start":26,"length":12,"messageText":"'InitFnParams' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"../core/src/v3/types/config.ts","start":40,"length":13,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/types/config.ts","start":40,"length":13,"messageText":"'StartFnParams' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"../core/src/v3/types/config.ts","start":55,"length":15,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/types/config.ts","start":55,"length":15,"messageText":"'SuccessFnParams' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"../core/src/v3/types/config.ts","start":92,"length":8,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/types/config.ts","start":92,"length":8,"messageText":"'LogLevel' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"../core/src/v3/types/config.ts","start":141,"length":17,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/types/config.ts","start":160,"length":12,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286}]],[272,[{"file":"../core/src/v3/types/index.ts","start":9,"length":12,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/types/index.ts","start":23,"length":12,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/types/index.ts","start":37,"length":24,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/types/index.ts","start":63,"length":14,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/types/index.ts","start":108,"length":8,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/types/index.ts","start":108,"length":8,"messageText":"'Prettify' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484}]],226,[252,[{"file":"../core/src/v3/usage-api.ts","start":118,"length":8,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/usage-api.ts","start":181,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[251,[{"file":"../core/src/v3/usage/api.ts","start":36,"length":9,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/usage/api.ts","start":47,"length":14,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/usage/api.ts","start":63,"length":16,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/usage/api.ts","start":192,"length":16,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/usage/api.ts","start":291,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[250,[{"file":"../core/src/v3/usage/noopusagemanager.ts","start":9,"length":12,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/usage/noopusagemanager.ts","start":9,"length":12,"messageText":"'UsageManager' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"../core/src/v3/usage/noopusagemanager.ts","start":23,"length":16,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/usage/noopusagemanager.ts","start":23,"length":16,"messageText":"'UsageMeasurement' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"../core/src/v3/usage/noopusagemanager.ts","start":41,"length":11,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/usage/noopusagemanager.ts","start":41,"length":11,"messageText":"'UsageSample' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"../core/src/v3/usage/noopusagemanager.ts","start":72,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],243,[308,[{"file":"../core/src/v3/utils/detectdependencyversion.ts","start":9,"length":12,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/utils/detectdependencyversion.ts","start":54,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[306,[{"file":"../core/src/v3/utils/durations.ts","start":7,"length":26,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/utils/durations.ts","start":27,"length":4,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/utils/durations.ts","start":27,"length":4,"messageText":"'Unit' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"../core/src/v3/utils/durations.ts","start":274,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/utils/durations.ts","start":512,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/utils/durations.ts","start":622,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/utils/durations.ts","start":734,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/utils/durations.ts","start":1030,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/utils/durations.ts","start":2332,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[256,[{"file":"../core/src/v3/utils/flattenattributes.ts","start":9,"length":10,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/utils/flattenattributes.ts","start":9,"length":10,"messageText":"'Attributes' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"../core/src/v3/utils/flattenattributes.ts","start":50,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/utils/flattenattributes.ts","start":92,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/utils/flattenattributes.ts","start":1918,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/utils/flattenattributes.ts","start":2977,"length":8,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | undefined' is not assignable to parameter of type 'string'.","category":1,"code":2345,"next":[{"messageText":"Type 'undefined' is not assignable to type 'string'.","category":1,"code":2322}]}},{"file":"../core/src/v3/utils/flattenattributes.ts","start":3032,"length":4,"messageText":"Type 'undefined' cannot be used as an index type.","category":1,"code":2538},{"file":"../core/src/v3/utils/flattenattributes.ts","start":3058,"length":4,"messageText":"Type 'undefined' cannot be used as an index type.","category":1,"code":2538},{"file":"../core/src/v3/utils/flattenattributes.ts","start":3107,"length":4,"messageText":"Type 'undefined' cannot be used as an index type.","category":1,"code":2538},{"file":"../core/src/v3/utils/flattenattributes.ts","start":3146,"length":4,"messageText":"Type 'undefined' cannot be used as an index type.","category":1,"code":2538},{"file":"../core/src/v3/utils/flattenattributes.ts","start":3190,"length":4,"messageText":"Type 'undefined' cannot be used as an index type.","category":1,"code":2538},{"file":"../core/src/v3/utils/flattenattributes.ts","start":3261,"length":8,"messageText":"Type 'undefined' cannot be used as an index type.","category":1,"code":2538},{"file":"../core/src/v3/utils/flattenattributes.ts","start":3703,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[299,[{"file":"../core/src/v3/utils/getenv.ts","start":0,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/utils/getenv.ts","start":41,"length":18,"messageText":"Not all code paths return a value.","category":1,"code":7030}]],[245,[{"file":"../core/src/v3/utils/globals.ts","start":9,"length":22,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/utils/globals.ts","start":9,"length":22,"messageText":"'ApiClientConfiguration' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"../core/src/v3/utils/globals.ts","start":77,"length":5,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/utils/globals.ts","start":77,"length":5,"messageText":"'Clock' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"../core/src/v3/utils/globals.ts","start":175,"length":11,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/utils/globals.ts","start":175,"length":11,"messageText":"'TaskCatalog' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"../core/src/v3/utils/globals.ts","start":230,"length":11,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/utils/globals.ts","start":230,"length":11,"messageText":"'TaskContext' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"../core/src/v3/utils/globals.ts","start":282,"length":12,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/utils/globals.ts","start":282,"length":12,"messageText":"'UsageManager' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"../core/src/v3/utils/globals.ts","start":329,"length":11,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/utils/globals.ts","start":486,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/utils/globals.ts","start":993,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/utils/globals.ts","start":1179,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[316,[{"file":"../core/src/v3/utils/ioserialization.ts","start":9,"length":10,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/utils/ioserialization.ts","start":9,"length":10,"messageText":"'Attributes' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"../core/src/v3/utils/ioserialization.ts","start":21,"length":4,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/utils/ioserialization.ts","start":21,"length":4,"messageText":"'Span' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"../core/src/v3/utils/ioserialization.ts","start":64,"length":30,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/utils/ioserialization.ts","start":96,"length":21,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/utils/ioserialization.ts","start":147,"length":26,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/utils/ioserialization.ts","start":223,"length":13,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/utils/ioserialization.ts","start":266,"length":17,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/utils/ioserialization.ts","start":323,"length":16,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/utils/ioserialization.ts","start":453,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/utils/ioserialization.ts","start":1028,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/utils/ioserialization.ts","start":1493,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/utils/ioserialization.ts","start":1958,"length":4,"messageText":"'span' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"file":"../core/src/v3/utils/ioserialization.ts","start":2293,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/utils/ioserialization.ts","start":3400,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/utils/ioserialization.ts","start":4668,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/utils/ioserialization.ts","start":5820,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/utils/ioserialization.ts","start":6613,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/utils/ioserialization.ts","start":7345,"length":3,"messageText":"'key' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"file":"../core/src/v3/utils/ioserialization.ts","start":8273,"length":11,"code":1479,"category":1,"messageText":{"messageText":"The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"superjson\")' call instead.","category":1,"code":1479,"next":[{"messageText":"To convert this file to an ECMAScript module, change its file extension to '.mts', or add the field `\"type\": \"module\"` to '/Users/eric/code/triggerdotdev/trigger.dev/packages/core/package.json'.","category":3,"code":1481}]}},{"file":"../core/src/v3/utils/ioserialization.ts","start":8442,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[307,[{"file":"../core/src/v3/utils/omit.ts","start":0,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[244,[{"file":"../core/src/v3/utils/platform.ts","start":0,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[286,[{"file":"../core/src/v3/utils/retries.ts","start":9,"length":44,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/utils/retries.ts","start":85,"length":17,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/utils/retries.ts","start":144,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/utils/retries.ts","start":307,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/utils/retries.ts","start":699,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/v3/utils/retries.ts","start":1184,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[288,[{"file":"../core/src/v3/utils/styleattributes.ts","start":9,"length":10,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/utils/styleattributes.ts","start":9,"length":10,"messageText":"'Attributes' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"../core/src/v3/utils/styleattributes.ts","start":58,"length":9,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/utils/styleattributes.ts","start":58,"length":9,"messageText":"'Accessory' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"../core/src/v3/utils/styleattributes.ts","start":98,"length":17,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/utils/styleattributes.ts","start":155,"length":26,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"../core/src/v3/utils/styleattributes.ts","start":223,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],454,[89,[{"file":"../core/src/versions.ts","start":0,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/versions.ts","start":125,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"../core/src/versions.ts","start":285,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],146,[171,[{"file":"./src/apiclient.ts","start":11,"length":12,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/apiclient.ts","start":27,"length":11,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/apiclient.ts","start":27,"length":11,"messageText":"'ApiEventLog' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/apiclient.ts","start":42,"length":17,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/apiclient.ts","start":63,"length":24,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/apiclient.ts","start":91,"length":22,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/apiclient.ts","start":117,"length":23,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/apiclient.ts","start":117,"length":23,"messageText":"'CompleteTaskBodyV2Input' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/apiclient.ts","start":144,"length":20,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/apiclient.ts","start":168,"length":35,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/apiclient.ts","start":168,"length":35,"messageText":"'EphemeralEventDispatcherRequestBody' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/apiclient.ts","start":207,"length":42,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/apiclient.ts","start":253,"length":17,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/apiclient.ts","start":253,"length":17,"messageText":"'FailTaskBodyInput' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/apiclient.ts","start":274,"length":14,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/apiclient.ts","start":292,"length":28,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/apiclient.ts","start":292,"length":28,"messageText":"'GetRunOptionsWithTaskDetails' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/apiclient.ts","start":324,"length":12,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/apiclient.ts","start":340,"length":20,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/apiclient.ts","start":364,"length":14,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/apiclient.ts","start":364,"length":14,"messageText":"'GetRunsOptions' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/apiclient.ts","start":382,"length":13,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/apiclient.ts","start":399,"length":20,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/apiclient.ts","start":399,"length":20,"messageText":"'InvokeJobRequestBody' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/apiclient.ts","start":423,"length":23,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/apiclient.ts","start":450,"length":13,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/apiclient.ts","start":450,"length":13,"messageText":"'InvokeOptions' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/apiclient.ts","start":467,"length":24,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/apiclient.ts","start":495,"length":25,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/apiclient.ts","start":495,"length":25,"messageText":"'KeyValueStoreResponseBody' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/apiclient.ts","start":524,"length":31,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/apiclient.ts","start":559,"length":34,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/apiclient.ts","start":597,"length":27,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/apiclient.ts","start":628,"length":21,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/apiclient.ts","start":628,"length":21,"messageText":"'RegisterSourceEventV2' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/apiclient.ts","start":653,"length":21,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/apiclient.ts","start":653,"length":21,"messageText":"'RegisterTriggerBodyV2' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/apiclient.ts","start":678,"length":16,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/apiclient.ts","start":678,"length":16,"messageText":"'RunTaskBodyInput' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/apiclient.ts","start":698,"length":40,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/apiclient.ts","start":742,"length":16,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/apiclient.ts","start":742,"length":16,"messageText":"'ScheduleMetadata' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/apiclient.ts","start":762,"length":9,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/apiclient.ts","start":762,"length":9,"messageText":"'SendEvent' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/apiclient.ts","start":775,"length":16,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/apiclient.ts","start":775,"length":16,"messageText":"'SendEventOptions' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/apiclient.ts","start":795,"length":16,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/apiclient.ts","start":815,"length":12,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/apiclient.ts","start":815,"length":12,"messageText":"'StatusUpdate' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/apiclient.ts","start":831,"length":13,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/apiclient.ts","start":831,"length":13,"messageText":"'TriggerSource' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/apiclient.ts","start":848,"length":19,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/apiclient.ts","start":871,"length":25,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/apiclient.ts","start":871,"length":25,"messageText":"'UpdateTriggerSourceBodyV2' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/apiclient.ts","start":900,"length":17,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/apiclient.ts","start":900,"length":17,"messageText":"'UpdateWebhookBody' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/apiclient.ts","start":921,"length":16,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/apiclient.ts","start":941,"length":19,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/apiclient.ts","start":999,"length":8,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/apiclient.ts","start":999,"length":8,"messageText":"'LogLevel' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/apiclient.ts","start":1009,"length":6,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/apiclient.ts","start":1061,"length":3,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/apiclient.ts","start":1098,"length":1,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/apiclient.ts","start":1123,"length":19,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/apiclient.ts","start":1190,"length":23,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/apiclient.ts","start":1697,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/apiclient.ts","start":1961,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/apiclient.ts","start":20326,"length":7,"code":2339,"category":1,"messageText":"Property 'entries' does not exist on type 'Headers'."},{"file":"./src/apiclient.ts","start":21198,"length":7,"code":2339,"category":1,"messageText":"Property 'entries' does not exist on type 'Headers'."},{"file":"./src/apiclient.ts","start":22161,"length":7,"code":2339,"category":1,"messageText":"Property 'entries' does not exist on type 'Headers'."}]],[147,[{"file":"./src/concurrencylimit.ts","start":75,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[142,[{"file":"./src/errors.ts","start":9,"length":15,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/errors.ts","start":9,"length":15,"messageText":"'DisplayProperty' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/errors.ts","start":62,"length":14,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/errors.ts","start":62,"length":14,"messageText":"'ErrorWithStack' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/errors.ts","start":78,"length":11,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/errors.ts","start":78,"length":11,"messageText":"'SchemaError' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/errors.ts","start":91,"length":10,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/errors.ts","start":91,"length":10,"messageText":"'ServerTask' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/errors.ts","start":131,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/errors.ts","start":211,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/errors.ts","start":360,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/errors.ts","start":507,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/errors.ts","start":589,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/errors.ts","start":664,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/errors.ts","start":822,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/errors.ts","start":1090,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/errors.ts","start":1182,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/errors.ts","start":1883,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/errors.ts","start":2460,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[155,[{"file":"./src/httpendpoint.ts","start":11,"length":15,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/httpendpoint.ts","start":11,"length":15,"messageText":"'DisplayProperty' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/httpendpoint.ts","start":30,"length":11,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/httpendpoint.ts","start":30,"length":11,"messageText":"'EventFilter' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/httpendpoint.ts","start":45,"length":20,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/httpendpoint.ts","start":45,"length":20,"messageText":"'HttpEndpointMetadata' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/httpendpoint.ts","start":69,"length":13,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/httpendpoint.ts","start":69,"length":13,"messageText":"'RequestFilter' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/httpendpoint.ts","start":86,"length":24,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/httpendpoint.ts","start":114,"length":15,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/httpendpoint.ts","start":114,"length":15,"messageText":"'TriggerMetadata' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/httpendpoint.ts","start":168,"length":24,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/httpendpoint.ts","start":221,"length":3,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/httpendpoint.ts","start":250,"length":13,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/httpendpoint.ts","start":299,"length":18,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/httpendpoint.ts","start":299,"length":18,"messageText":"'EventSpecification' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/httpendpoint.ts","start":319,"length":25,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/httpendpoint.ts","start":319,"length":25,"messageText":"'EventSpecificationExample' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/httpendpoint.ts","start":346,"length":7,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/httpendpoint.ts","start":346,"length":7,"messageText":"'Trigger' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/httpendpoint.ts","start":355,"length":12,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/httpendpoint.ts","start":355,"length":12,"messageText":"'VerifyResult' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/httpendpoint.ts","start":395,"length":18,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/httpendpoint.ts","start":460,"length":9,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/httpendpoint.ts","start":756,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/httpendpoint.ts","start":3007,"length":13,"messageText":"'triggerClient' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"file":"./src/httpendpoint.ts","start":3037,"length":3,"messageText":"'job' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"file":"./src/httpendpoint.ts","start":5708,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[175,[{"file":"./src/index.ts","start":476,"length":10,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/index.ts","start":476,"length":10,"messageText":"'ServerTask' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/index.ts","start":524,"length":12,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/index.ts","start":524,"length":12,"messageText":"'RedactString' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/index.ts","start":564,"length":14,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/index.ts","start":607,"length":5,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/index.ts","start":747,"length":11,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/index.ts","start":747,"length":11,"messageText":"'ApiEventLog' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/index.ts","start":1197,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[143,[{"file":"./src/integrations.ts","start":9,"length":14,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/integrations.ts","start":9,"length":14,"messageText":"'ConnectionAuth' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/integrations.ts","start":25,"length":19,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/integrations.ts","start":25,"length":19,"messageText":"'IntegrationMetadata' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/integrations.ts","start":82,"length":2,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/integrations.ts","start":109,"length":8,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/integrations.ts","start":109,"length":8,"messageText":"'Prettify' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484}]],[169,[{"file":"./src/io.ts","start":11,"length":12,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/io.ts","start":27,"length":10,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/io.ts","start":27,"length":10,"messageText":"'CachedTask' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/io.ts","start":41,"length":23,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/io.ts","start":41,"length":23,"messageText":"'CompleteTaskBodyV2Input' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/io.ts","start":68,"length":14,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/io.ts","start":68,"length":14,"messageText":"'ConnectionAuth' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/io.ts","start":86,"length":11,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/io.ts","start":86,"length":11,"messageText":"'CronOptions' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/io.ts","start":101,"length":20,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/io.ts","start":125,"length":11,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/io.ts","start":125,"length":11,"messageText":"'EventFilter' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/io.ts","start":140,"length":18,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/io.ts","start":140,"length":18,"messageText":"'FetchPollOperation' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/io.ts","start":162,"length":16,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/io.ts","start":162,"length":16,"messageText":"'FetchRequestInit' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/io.ts","start":182,"length":17,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/io.ts","start":182,"length":17,"messageText":"'FetchRetryOptions' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/io.ts","start":203,"length":19,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/io.ts","start":203,"length":19,"messageText":"'FetchTimeoutOptions' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/io.ts","start":226,"length":19,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/io.ts","start":226,"length":19,"messageText":"'InitialStatusUpdate' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/io.ts","start":249,"length":15,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/io.ts","start":249,"length":15,"messageText":"'IntervalOptions' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/io.ts","start":268,"length":16,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/io.ts","start":268,"length":16,"messageText":"'RunTaskBodyInput' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/io.ts","start":288,"length":14,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/io.ts","start":288,"length":14,"messageText":"'RunTaskOptions' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/io.ts","start":306,"length":9,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/io.ts","start":306,"length":9,"messageText":"'SendEvent' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/io.ts","start":319,"length":16,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/io.ts","start":319,"length":16,"messageText":"'SendEventOptions' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/io.ts","start":339,"length":10,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/io.ts","start":339,"length":10,"messageText":"'ServerTask' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/io.ts","start":353,"length":25,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/io.ts","start":353,"length":25,"messageText":"'UpdateTriggerSourceBodyV2' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/io.ts","start":382,"length":17,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/io.ts","start":382,"length":17,"messageText":"'UpdateWebhookBody' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/io.ts","start":403,"length":15,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/io.ts","start":457,"length":8,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/io.ts","start":457,"length":8,"messageText":"'LogLevel' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/io.ts","start":467,"length":6,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/io.ts","start":519,"length":11,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/io.ts","start":576,"length":17,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/io.ts","start":630,"length":9,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/io.ts","start":671,"length":9,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/io.ts","start":714,"length":23,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/io.ts","start":741,"length":23,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/io.ts","start":768,"length":40,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/io.ts","start":812,"length":21,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/io.ts","start":837,"length":13,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/io.ts","start":854,"length":27,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/io.ts","start":885,"length":19,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/io.ts","start":908,"length":18,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/io.ts","start":930,"length":20,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/io.ts","start":930,"length":20,"messageText":"'TriggerInternalError' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/io.ts","start":954,"length":19,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/io.ts","start":977,"length":14,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/io.ts","start":1021,"length":18,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/io.ts","start":1021,"length":18,"messageText":"'IntegrationTaskKey' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/io.ts","start":1074,"length":16,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/io.ts","start":1118,"length":13,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/io.ts","start":1160,"length":13,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/io.ts","start":1209,"length":14,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/io.ts","start":1262,"length":14,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/io.ts","start":1278,"length":20,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/io.ts","start":1278,"length":20,"messageText":"'ExternalSourceParams' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/io.ts","start":1344,"length":15,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/io.ts","start":1402,"length":18,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/io.ts","start":1402,"length":18,"messageText":"'EventSpecification' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/io.ts","start":1424,"length":10,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/io.ts","start":1424,"length":10,"messageText":"'TaskLogger' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/io.ts","start":1438,"length":14,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/io.ts","start":1438,"length":14,"messageText":"'TriggerContext' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/io.ts","start":1456,"length":18,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/io.ts","start":1456,"length":18,"messageText":"'WaitForEventResult' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/io.ts","start":1478,"length":18,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/io.ts","start":1525,"length":1,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/io.ts","start":1550,"length":13,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/io.ts","start":1605,"length":6,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/io.ts","start":2879,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/io.ts","start":3221,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/io.ts","start":6429,"length":4,"messageText":"'task' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"file":"./src/io.ts","start":8731,"length":4,"messageText":"'task' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"file":"./src/io.ts","start":11019,"length":4,"messageText":"'task' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"file":"./src/io.ts","start":11713,"length":2,"messageText":"'io' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"file":"./src/io.ts","start":14615,"length":2,"messageText":"'io' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"file":"./src/io.ts","start":24048,"length":4,"messageText":"'task' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"file":"./src/io.ts","start":25174,"length":4,"messageText":"'task' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"file":"./src/io.ts","start":25690,"length":4,"messageText":"'task' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"file":"./src/io.ts","start":26346,"length":4,"messageText":"'task' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"file":"./src/io.ts","start":26813,"length":4,"messageText":"'task' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"file":"./src/io.ts","start":27375,"length":4,"messageText":"'task' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"file":"./src/io.ts","start":28680,"length":4,"messageText":"'task' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"file":"./src/io.ts","start":29906,"length":4,"messageText":"'task' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"file":"./src/io.ts","start":31079,"length":4,"messageText":"'task' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"file":"./src/io.ts","start":32268,"length":4,"messageText":"'task' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"file":"./src/io.ts","start":33526,"length":4,"messageText":"'task' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"file":"./src/io.ts","start":33632,"length":8,"messageText":"'subtask1' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"file":"./src/io.ts","start":34299,"length":4,"messageText":"'task' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"file":"./src/io.ts","start":35518,"length":20,"messageText":"Object is possibly 'undefined'.","category":1,"code":2532},{"file":"./src/io.ts","start":50982,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[156,[{"file":"./src/iowithintegrations.ts","start":9,"length":14,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/iowithintegrations.ts","start":9,"length":14,"messageText":"'ConnectionAuth' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/iowithintegrations.ts","start":61,"length":18,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/iowithintegrations.ts","start":61,"length":18,"messageText":"'IOWithIntegrations' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/iowithintegrations.ts","start":81,"length":18,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/iowithintegrations.ts","start":81,"length":18,"messageText":"'TriggerIntegration' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/iowithintegrations.ts","start":134,"length":2,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/iowithintegrations.ts","start":153,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/iowithintegrations.ts","start":1101,"length":11,"messageText":"Property 'integration' does not exist on type '{ integration: TriggerIntegration; auth?: { type: \"oauth2\" | \"apiKey\"; accessToken: string; scopes?: string[] | undefined; additionalFields?: Record | undefined; } | undefined; } | undefined'.","category":1,"code":2339},{"file":"./src/iowithintegrations.ts","start":1114,"length":4,"messageText":"Property 'auth' does not exist on type '{ integration: TriggerIntegration; auth?: { type: \"oauth2\" | \"apiKey\"; accessToken: string; scopes?: string[] | undefined; additionalFields?: Record | undefined; } | undefined; } | undefined'.","category":1,"code":2339}]],[153,[{"file":"./src/job.ts","start":11,"length":21,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/job.ts","start":11,"length":21,"messageText":"'FailedRunNotification' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/job.ts","start":36,"length":17,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/job.ts","start":36,"length":17,"messageText":"'IntegrationConfig' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/job.ts","start":57,"length":13,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/job.ts","start":57,"length":13,"messageText":"'InvokeOptions' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/job.ts","start":74,"length":11,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/job.ts","start":74,"length":11,"messageText":"'JobMetadata' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/job.ts","start":89,"length":8,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/job.ts","start":89,"length":8,"messageText":"'Prettify' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/job.ts","start":101,"length":15,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/job.ts","start":101,"length":15,"messageText":"'RunNotification' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/job.ts","start":120,"length":25,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/job.ts","start":120,"length":25,"messageText":"'SuccessfulRunNotification' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/job.ts","start":184,"length":8,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/job.ts","start":184,"length":8,"messageText":"'LogLevel' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/job.ts","start":238,"length":16,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/job.ts","start":293,"length":18,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/job.ts","start":293,"length":18,"messageText":"'IOWithIntegrations' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/job.ts","start":313,"length":18,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/job.ts","start":313,"length":18,"messageText":"'TriggerIntegration' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/job.ts","start":366,"length":15,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/job.ts","start":419,"length":13,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/job.ts","start":592,"length":9,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/job.ts","start":4802,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/job.ts","start":6066,"length":11,"messageText":"'integration' is possibly 'undefined'.","category":1,"code":18048},{"file":"./src/job.ts","start":6102,"length":11,"messageText":"'integration' is possibly 'undefined'.","category":1,"code":18048},{"file":"./src/job.ts","start":6146,"length":11,"messageText":"'integration' is possibly 'undefined'.","category":1,"code":18048}]],[144,[{"file":"./src/retry.ts","start":64,"length":16,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/retry.ts","start":119,"length":16,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/retry.ts","start":170,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[151,[{"file":"./src/runlocalstorage.ts","start":9,"length":2,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/runlocalstorage.ts","start":36,"length":14,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/runlocalstorage.ts","start":36,"length":14,"messageText":"'TriggerContext' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/runlocalstorage.ts","start":78,"length":22,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/runlocalstorage.ts","start":205,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[174,[{"file":"./src/security.ts","start":7,"length":6,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/security.ts","start":118,"length":12,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/security.ts","start":118,"length":12,"messageText":"'VerifyResult' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/security.ts","start":231,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/security.ts","start":1693,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[145,[{"file":"./src/status.ts","start":9,"length":15,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/status.ts","start":9,"length":15,"messageText":"'DisplayProperty' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/status.ts","start":26,"length":12,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/status.ts","start":26,"length":12,"messageText":"'StatusUpdate' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/status.ts","start":76,"length":18,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/status.ts","start":76,"length":18,"messageText":"'IntegrationTaskKey' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/status.ts","start":129,"length":2,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/status.ts","start":148,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/status.ts","start":646,"length":4,"messageText":"'task' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true}]],[157,[{"file":"./src/store/keyvaluestore.ts","start":9,"length":9,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/store/keyvaluestore.ts","start":51,"length":4,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/store/keyvaluestore.ts","start":51,"length":4,"messageText":"'Json' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/store/keyvaluestore.ts","start":81,"length":15,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/store/keyvaluestore.ts","start":127,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/store/keyvaluestore.ts","start":1455,"length":4,"messageText":"'task' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"file":"./src/store/keyvaluestore.ts","start":2605,"length":4,"messageText":"'task' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"file":"./src/store/keyvaluestore.ts","start":3645,"length":4,"messageText":"'task' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"file":"./src/store/keyvaluestore.ts","start":4834,"length":4,"messageText":"'task' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true}]],[170,[{"file":"./src/store/keyvaluestoreclient.ts","start":9,"length":8,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/store/keyvaluestoreclient.ts","start":9,"length":8,"messageText":"'AsyncMap' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/store/keyvaluestoreclient.ts","start":55,"length":25,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/store/keyvaluestoreclient.ts","start":55,"length":25,"messageText":"'KeyValueStoreResponseBody' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/store/keyvaluestoreclient.ts","start":118,"length":20,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/store/keyvaluestoreclient.ts","start":140,"length":4,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/store/keyvaluestoreclient.ts","start":140,"length":4,"messageText":"'Json' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/store/keyvaluestoreclient.ts","start":335,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[168,[{"file":"./src/triggerclient.ts","start":11,"length":12,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":27,"length":14,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":27,"length":14,"messageText":"'ConnectionAuth' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggerclient.ts","start":45,"length":23,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":72,"length":16,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":72,"length":16,"messageText":"'DeserializedJson' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggerclient.ts","start":92,"length":35,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":92,"length":35,"messageText":"'EphemeralEventDispatcherRequestBody' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggerclient.ts","start":131,"length":20,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":155,"length":21,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":155,"length":21,"messageText":"'FailedRunNotification' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggerclient.ts","start":180,"length":28,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":180,"length":28,"messageText":"'GetRunOptionsWithTaskDetails' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggerclient.ts","start":212,"length":14,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":212,"length":14,"messageText":"'GetRunsOptions' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggerclient.ts","start":230,"length":19,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":230,"length":19,"messageText":"'HandleTriggerSource' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggerclient.ts","start":253,"length":32,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":289,"length":30,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":323,"length":26,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":323,"length":26,"messageText":"'HttpSourceResponseMetadata' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggerclient.ts","start":353,"length":21,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":353,"length":21,"messageText":"'IndexEndpointResponse' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggerclient.ts","start":378,"length":27,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":409,"length":17,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":409,"length":17,"messageText":"'IntegrationConfig' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggerclient.ts","start":430,"length":13,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":430,"length":13,"messageText":"'InvokeOptions' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggerclient.ts","start":447,"length":11,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":447,"length":11,"messageText":"'JobMetadata' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggerclient.ts","start":462,"length":18,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":462,"length":18,"messageText":"'NormalizedResponse' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggerclient.ts","start":484,"length":17,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":484,"length":17,"messageText":"'PreprocessRunBody' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggerclient.ts","start":505,"length":23,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":532,"length":8,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":532,"length":8,"messageText":"'Prettify' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggerclient.ts","start":544,"length":24,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":572,"length":16,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":592,"length":27,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":623,"length":21,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":623,"length":21,"messageText":"'RegisterSourceEventV2' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggerclient.ts","start":648,"length":21,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":648,"length":21,"messageText":"'RegisterTriggerBodyV2' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggerclient.ts","start":673,"length":22,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":673,"length":22,"messageText":"'RegisterWebhookPayload' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggerclient.ts","start":699,"length":28,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":731,"length":24,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":759,"length":10,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":759,"length":10,"messageText":"'RunJobBody' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggerclient.ts","start":773,"length":16,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":793,"length":19,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":793,"length":19,"messageText":"'RunJobErrorResponse' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggerclient.ts","start":816,"length":14,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":816,"length":14,"messageText":"'RunJobResponse' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggerclient.ts","start":834,"length":15,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":834,"length":15,"messageText":"'RunNotification' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggerclient.ts","start":853,"length":16,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":853,"length":16,"messageText":"'ScheduleMetadata' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggerclient.ts","start":873,"length":9,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":873,"length":9,"messageText":"'SendEvent' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggerclient.ts","start":886,"length":16,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":886,"length":16,"messageText":"'SendEventOptions' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggerclient.ts","start":906,"length":16,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":906,"length":16,"messageText":"'SourceMetadataV2' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggerclient.ts","start":926,"length":12,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":926,"length":12,"messageText":"'StatusUpdate' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggerclient.ts","start":942,"length":25,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":942,"length":25,"messageText":"'SuccessfulRunNotification' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggerclient.ts","start":971,"length":23,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":971,"length":23,"messageText":"'WebhookDeliveryResponse' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggerclient.ts","start":998,"length":15,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":998,"length":15,"messageText":"'WebhookMetadata' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggerclient.ts","start":1017,"length":33,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":1089,"length":8,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":1089,"length":8,"messageText":"'LogLevel' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggerclient.ts","start":1099,"length":6,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":1149,"length":12,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":1191,"length":3,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":1230,"length":11,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":1275,"length":9,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":1316,"length":16,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":1334,"length":23,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":1334,"length":23,"messageText":"'ConcurrencyLimitOptions' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggerclient.ts","start":1398,"length":23,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":1425,"length":23,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":1452,"length":40,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":1496,"length":21,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":1521,"length":13,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":1538,"length":24,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":1566,"length":27,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":1597,"length":19,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":1620,"length":18,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":1642,"length":19,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":1691,"length":15,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":1691,"length":15,"messageText":"'EndpointOptions' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggerclient.ts","start":1708,"length":12,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":1722,"length":12,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":1769,"length":18,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":1769,"length":18,"messageText":"'TriggerIntegration' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggerclient.ts","start":1822,"length":2,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":1826,"length":7,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":1826,"length":7,"messageText":"'IOStats' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggerclient.ts","start":1858,"length":24,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":1923,"length":3,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":1928,"length":10,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":1928,"length":10,"messageText":"'JobOptions' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggerclient.ts","start":1964,"length":15,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":2017,"length":13,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":2072,"length":14,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":2088,"length":21,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":2088,"length":21,"messageText":"'DynamicTriggerOptions' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggerclient.ts","start":2148,"length":12,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":2204,"length":14,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":2264,"length":22,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":2264,"length":22,"messageText":"'DynamicIntervalOptions' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggerclient.ts","start":2288,"length":15,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":2344,"length":22,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":2344,"length":22,"messageText":"'WebhookDeliveryContext' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggerclient.ts","start":2368,"length":13,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":2601,"length":18,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggerclient.ts","start":5366,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/triggerclient.ts","start":7470,"length":7,"code":2339,"category":1,"messageText":"Property 'entries' does not exist on type 'Headers'."},{"file":"./src/triggerclient.ts","start":10805,"length":2,"messageText":"'id' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"file":"./src/triggerclient.ts","start":13948,"length":7,"code":2339,"category":1,"messageText":"Property 'entries' does not exist on type 'Headers'."},{"file":"./src/triggerclient.ts","start":15829,"length":7,"code":2339,"category":1,"messageText":"Property 'entries' does not exist on type 'Headers'."},{"file":"./src/triggerclient.ts","start":17146,"length":7,"code":2339,"category":1,"messageText":"Property 'entries' does not exist on type 'Headers'."},{"file":"./src/triggerclient.ts","start":27645,"length":3,"messageText":"'ctx' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"file":"./src/triggerclient.ts","start":43763,"length":7,"code":2339,"category":1,"messageText":"Property 'entries' does not exist on type 'Headers'."},{"file":"./src/triggerclient.ts","start":45572,"length":11,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'TriggerIntegration | undefined' is not assignable to parameter of type 'TriggerIntegration'.","category":1,"code":2345,"next":[{"messageText":"Type 'undefined' is not assignable to type 'TriggerIntegration'.","category":1,"code":2322}]}},{"file":"./src/triggerclient.ts","start":46532,"length":11,"messageText":"'integration' is possibly 'undefined'.","category":1,"code":18048},{"file":"./src/triggerclient.ts","start":50149,"length":11,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'TriggerIntegration | undefined' is not assignable to parameter of type 'TriggerIntegration'.","category":1,"code":2345,"next":[{"messageText":"Type 'undefined' is not assignable to type 'TriggerIntegration'.","category":1,"code":2322}]}},{"file":"./src/triggerclient.ts","start":52768,"length":18,"messageText":"Type 'string[] | undefined' must have a '[Symbol.iterator]()' method that returns an iterator.","category":1,"code":2488},{"file":"./src/triggerclient.ts","start":52826,"length":18,"code":2322,"category":1,"messageText":{"messageText":"Type 'string[] | undefined' is not assignable to type 'string[]'.","category":1,"code":2322,"next":[{"messageText":"Type 'undefined' is not assignable to type 'string[]'.","category":1,"code":2322}]}}]],[159,[{"file":"./src/triggers/dynamic.ts","start":11,"length":21,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/dynamic.ts","start":11,"length":21,"messageText":"'RegisterSourceEventV2' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggers/dynamic.ts","start":36,"length":21,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/dynamic.ts","start":36,"length":21,"messageText":"'RegisterTriggerBodyV2' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggers/dynamic.ts","start":61,"length":15,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/dynamic.ts","start":61,"length":15,"messageText":"'TriggerMetadata' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggers/dynamic.ts","start":80,"length":16,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/dynamic.ts","start":135,"length":3,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/dynamic.ts","start":165,"length":13,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/dynamic.ts","start":215,"length":18,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/dynamic.ts","start":215,"length":18,"messageText":"'EventSpecification' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggers/dynamic.ts","start":235,"length":7,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/dynamic.ts","start":235,"length":7,"messageText":"'Trigger' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggers/dynamic.ts","start":271,"length":9,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/dynamic.ts","start":309,"length":14,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/dynamic.ts","start":325,"length":20,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/dynamic.ts","start":325,"length":20,"messageText":"'ExternalSourceParams' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggers/dynamic.ts","start":382,"length":15,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/dynamic.ts","start":436,"length":11,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/dynamic.ts","start":436,"length":11,"messageText":"'EventFilter' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggers/dynamic.ts","start":1458,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/triggers/dynamic.ts","start":5047,"length":7,"messageText":"'payload' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true}]],[160,[{"file":"./src/triggers/eventtrigger.ts","start":9,"length":11,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/eventtrigger.ts","start":9,"length":11,"messageText":"'EventFilter' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggers/eventtrigger.ts","start":22,"length":15,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/eventtrigger.ts","start":22,"length":15,"messageText":"'TriggerMetadata' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggers/eventtrigger.ts","start":39,"length":16,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/eventtrigger.ts","start":93,"length":3,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/eventtrigger.ts","start":123,"length":13,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/eventtrigger.ts","start":175,"length":18,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/eventtrigger.ts","start":175,"length":18,"messageText":"'EventSpecification' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggers/eventtrigger.ts","start":197,"length":25,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/eventtrigger.ts","start":197,"length":25,"messageText":"'EventSpecificationExample' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggers/eventtrigger.ts","start":226,"length":26,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/eventtrigger.ts","start":226,"length":26,"messageText":"'EventTypeFromSpecification' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggers/eventtrigger.ts","start":256,"length":12,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/eventtrigger.ts","start":256,"length":12,"messageText":"'SchemaParser' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggers/eventtrigger.ts","start":272,"length":7,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/eventtrigger.ts","start":272,"length":7,"messageText":"'Trigger' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggers/eventtrigger.ts","start":309,"length":18,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/eventtrigger.ts","start":375,"length":24,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/eventtrigger.ts","start":429,"length":14,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/eventtrigger.ts","start":429,"length":14,"messageText":"'VerifyCallback' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggers/eventtrigger.ts","start":759,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/triggers/eventtrigger.ts","start":1482,"length":13,"messageText":"'triggerClient' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"file":"./src/triggers/eventtrigger.ts","start":1512,"length":3,"messageText":"'job' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"file":"./src/triggers/eventtrigger.ts","start":3202,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[158,[{"file":"./src/triggers/externalsource.ts","start":11,"length":14,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/externalsource.ts","start":11,"length":14,"messageText":"'ConnectionAuth' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggers/externalsource.ts","start":29,"length":15,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/externalsource.ts","start":29,"length":15,"messageText":"'DisplayProperty' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggers/externalsource.ts","start":48,"length":11,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/externalsource.ts","start":48,"length":11,"messageText":"'EventFilter' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggers/externalsource.ts","start":63,"length":19,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/externalsource.ts","start":63,"length":19,"messageText":"'HandleTriggerSource' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggers/externalsource.ts","start":86,"length":26,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/externalsource.ts","start":86,"length":26,"messageText":"'HttpSourceResponseMetadata' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggers/externalsource.ts","start":116,"length":18,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/externalsource.ts","start":116,"length":18,"messageText":"'NormalizedResponse' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggers/externalsource.ts","start":138,"length":8,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/externalsource.ts","start":138,"length":8,"messageText":"'Prettify' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggers/externalsource.ts","start":150,"length":21,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/externalsource.ts","start":150,"length":21,"messageText":"'RegisterTriggerSource' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggers/externalsource.ts","start":175,"length":9,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/externalsource.ts","start":175,"length":9,"messageText":"'SendEvent' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggers/externalsource.ts","start":188,"length":16,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/externalsource.ts","start":188,"length":16,"messageText":"'SerializableJson' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggers/externalsource.ts","start":208,"length":15,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/externalsource.ts","start":208,"length":15,"messageText":"'TriggerMetadata' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggers/externalsource.ts","start":227,"length":16,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/externalsource.ts","start":282,"length":6,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/externalsource.ts","start":372,"length":18,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/externalsource.ts","start":372,"length":18,"messageText":"'IOWithIntegrations' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggers/externalsource.ts","start":392,"length":18,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/externalsource.ts","start":392,"length":18,"messageText":"'TriggerIntegration' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggers/externalsource.ts","start":446,"length":2,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/externalsource.ts","start":474,"length":3,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/externalsource.ts","start":504,"length":13,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/externalsource.ts","start":645,"length":9,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/externalsource.ts","start":4633,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/triggers/externalsource.ts","start":7373,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/triggers/externalsource.ts","start":8233,"length":3,"messageText":"'job' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"file":"./src/triggers/externalsource.ts","start":8603,"length":7,"messageText":"'payload' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"file":"./src/triggers/externalsource.ts","start":8709,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[173,[{"file":"./src/triggers/invoketrigger.ts","start":9,"length":15,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/invoketrigger.ts","start":9,"length":15,"messageText":"'TriggerMetadata' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggers/invoketrigger.ts","start":62,"length":24,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/invoketrigger.ts","start":116,"length":3,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/invoketrigger.ts","start":146,"length":13,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/invoketrigger.ts","start":198,"length":18,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/invoketrigger.ts","start":198,"length":18,"messageText":"'EventSpecification' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggers/invoketrigger.ts","start":220,"length":25,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/invoketrigger.ts","start":220,"length":25,"messageText":"'EventSpecificationExample' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggers/invoketrigger.ts","start":249,"length":12,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/invoketrigger.ts","start":249,"length":12,"messageText":"'SchemaParser' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggers/invoketrigger.ts","start":265,"length":7,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/invoketrigger.ts","start":265,"length":7,"messageText":"'Trigger' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggers/invoketrigger.ts","start":276,"length":12,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/invoketrigger.ts","start":276,"length":12,"messageText":"'VerifyResult' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggers/invoketrigger.ts","start":318,"length":18,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/invoketrigger.ts","start":384,"length":6,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/invoketrigger.ts","start":384,"length":6,"messageText":"'TypeOf' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggers/invoketrigger.ts","start":392,"length":7,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/invoketrigger.ts","start":401,"length":1,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/invoketrigger.ts","start":775,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/triggers/invoketrigger.ts","start":2099,"length":13,"messageText":"'triggerClient' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"file":"./src/triggers/invoketrigger.ts","start":2133,"length":3,"messageText":"'job' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"file":"./src/triggers/invoketrigger.ts","start":2328,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[172,[{"file":"./src/triggers/notifications.ts","start":11,"length":31,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/notifications.ts","start":46,"length":40,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/notifications.ts","start":90,"length":36,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/notifications.ts","start":90,"length":36,"messageText":"'MissingConnectionNotificationPayload' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggers/notifications.ts","start":130,"length":42,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/notifications.ts","start":176,"length":44,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/notifications.ts","start":176,"length":44,"messageText":"'MissingConnectionResolvedNotificationPayload' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggers/notifications.ts","start":224,"length":50,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/notifications.ts","start":278,"length":15,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/notifications.ts","start":278,"length":15,"messageText":"'TriggerMetadata' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggers/notifications.ts","start":332,"length":18,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/notifications.ts","start":332,"length":18,"messageText":"'TriggerIntegration' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggers/notifications.ts","start":386,"length":3,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/notifications.ts","start":416,"length":13,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/notifications.ts","start":466,"length":18,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/notifications.ts","start":466,"length":18,"messageText":"'EventSpecification' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggers/notifications.ts","start":486,"length":7,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/notifications.ts","start":486,"length":7,"messageText":"'Trigger' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggers/notifications.ts","start":514,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/triggers/notifications.ts","start":668,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/triggers/notifications.ts","start":1042,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/triggers/notifications.ts","start":1663,"length":13,"messageText":"'triggerClient' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"file":"./src/triggers/notifications.ts","start":1697,"length":3,"messageText":"'job' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"file":"./src/triggers/notifications.ts","start":1853,"length":7,"messageText":"'payload' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"file":"./src/triggers/notifications.ts","start":2429,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/triggers/notifications.ts","start":3092,"length":13,"messageText":"'triggerClient' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"file":"./src/triggers/notifications.ts","start":3126,"length":3,"messageText":"'job' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"file":"./src/triggers/notifications.ts","start":3290,"length":7,"messageText":"'payload' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true}]],[166,[{"file":"./src/triggers/scheduled.ts","start":11,"length":11,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/scheduled.ts","start":11,"length":11,"messageText":"'CronOptions' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggers/scheduled.ts","start":26,"length":15,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/scheduled.ts","start":26,"length":15,"messageText":"'IntervalOptions' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggers/scheduled.ts","start":45,"length":16,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/scheduled.ts","start":45,"length":16,"messageText":"'ScheduleMetadata' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggers/scheduled.ts","start":65,"length":16,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/scheduled.ts","start":65,"length":16,"messageText":"'ScheduledPayload' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggers/scheduled.ts","start":85,"length":22,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/scheduled.ts","start":111,"length":15,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/scheduled.ts","start":111,"length":15,"messageText":"'TriggerMetadata' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggers/scheduled.ts","start":130,"length":11,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/scheduled.ts","start":180,"length":3,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/scheduled.ts","start":210,"length":13,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/scheduled.ts","start":260,"length":18,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/scheduled.ts","start":260,"length":18,"messageText":"'EventSpecification' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggers/scheduled.ts","start":280,"length":7,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/scheduled.ts","start":280,"length":7,"messageText":"'Trigger' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggers/scheduled.ts","start":314,"length":9,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/scheduled.ts","start":351,"length":15,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/scheduled.ts","start":647,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/triggers/scheduled.ts","start":1147,"length":13,"messageText":"'triggerClient' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"file":"./src/triggers/scheduled.ts","start":1181,"length":3,"messageText":"'job' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"file":"./src/triggers/scheduled.ts","start":1317,"length":7,"messageText":"'payload' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"file":"./src/triggers/scheduled.ts","start":1810,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/triggers/scheduled.ts","start":1912,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/triggers/scheduled.ts","start":2821,"length":13,"messageText":"'triggerClient' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"file":"./src/triggers/scheduled.ts","start":2855,"length":3,"messageText":"'job' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"file":"./src/triggers/scheduled.ts","start":2991,"length":7,"messageText":"'payload' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"file":"./src/triggers/scheduled.ts","start":3523,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/triggers/scheduled.ts","start":3868,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/triggers/scheduled.ts","start":4831,"length":4,"messageText":"'task' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"file":"./src/triggers/scheduled.ts","start":5495,"length":4,"messageText":"'task' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"file":"./src/triggers/scheduled.ts","start":6063,"length":7,"messageText":"'payload' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true}]],[167,[{"file":"./src/triggers/webhook.ts","start":11,"length":15,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/webhook.ts","start":11,"length":15,"messageText":"'DisplayProperty' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggers/webhook.ts","start":30,"length":11,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/webhook.ts","start":30,"length":11,"messageText":"'EventFilter' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggers/webhook.ts","start":45,"length":19,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/webhook.ts","start":45,"length":19,"messageText":"'HandleTriggerSource' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggers/webhook.ts","start":68,"length":21,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/webhook.ts","start":68,"length":21,"messageText":"'RegisterWebhookSource' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggers/webhook.ts","start":93,"length":15,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/webhook.ts","start":93,"length":15,"messageText":"'TriggerMetadata' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggers/webhook.ts","start":112,"length":16,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/webhook.ts","start":167,"length":18,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/webhook.ts","start":167,"length":18,"messageText":"'IOWithIntegrations' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggers/webhook.ts","start":187,"length":18,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/webhook.ts","start":187,"length":18,"messageText":"'TriggerIntegration' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggers/webhook.ts","start":241,"length":2,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/webhook.ts","start":269,"length":3,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/webhook.ts","start":299,"length":13,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/webhook.ts","start":465,"length":9,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/webhook.ts","start":503,"length":16,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/webhook.ts","start":503,"length":16,"messageText":"'SerializableJson' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggers/webhook.ts","start":557,"length":8,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/webhook.ts","start":557,"length":8,"messageText":"'Prettify' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/triggers/webhook.ts","start":603,"length":10,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/triggers/webhook.ts","start":2954,"length":113,"messageText":"All type parameters are unused.","category":1,"code":6205},{"file":"./src/triggers/webhook.ts","start":4132,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/triggers/webhook.ts","start":6874,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/triggers/webhook.ts","start":8191,"length":3,"messageText":"'job' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"file":"./src/triggers/webhook.ts","start":8720,"length":7,"messageText":"'payload' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true}]],[149,[{"file":"./src/types.ts","start":305,"length":6,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/types.ts","start":404,"length":1,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/types.ts","start":429,"length":3,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/types.ts","start":458,"length":13,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/types.ts","start":3203,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/types.ts","start":4686,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[152,[{"file":"./src/utils.ts","start":0,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[154,[{"file":"./src/utils/formatschemaerrors.ts","start":63,"length":17,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/utils/formatschemaerrors.ts","start":63,"length":17,"messageText":"'SchemaParserIssue' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/utils/formatschemaerrors.ts","start":101,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[150,[{"file":"./src/utils/typedasynclocalstorage.ts","start":9,"length":17,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/utils/typedasynclocalstorage.ts","start":55,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[319,[{"file":"./src/v3/cache.ts","start":9,"length":26,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/cache.ts","start":76,"length":6,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/cache.ts","start":740,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/v3/cache.ts","start":1316,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/v3/cache.ts","start":2009,"length":4,"messageText":"'span' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"file":"./src/v3/cache.ts","start":2305,"length":4,"messageText":"'span' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true}]],320,[329,[{"file":"./src/v3/envvars.ts","start":284,"length":16,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/envvars.ts","start":304,"length":16,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/envvars.ts","start":324,"length":19,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/envvars.ts","start":347,"length":11,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/envvars.ts","start":400,"length":21,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/envvars.ts","start":450,"length":6,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/envvars.ts","start":561,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/v3/envvars.ts","start":752,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/v3/envvars.ts","start":905,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/v3/envvars.ts","start":2488,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/v3/envvars.ts","start":2622,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/v3/envvars.ts","start":2714,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/v3/envvars.ts","start":3670,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/v3/envvars.ts","start":3860,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/v3/envvars.ts","start":4012,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/v3/envvars.ts","start":5591,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/v3/envvars.ts","start":5749,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/v3/envvars.ts","start":5869,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/v3/envvars.ts","start":6933,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/v3/envvars.ts","start":7093,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/v3/envvars.ts","start":7215,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/v3/envvars.ts","start":8274,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/v3/envvars.ts","start":8480,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/v3/envvars.ts","start":8648,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[327,[{"file":"./src/v3/idempotencykeys.ts","start":9,"length":11,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/idempotencykeys.ts","start":53,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/v3/idempotencykeys.ts","start":295,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/v3/idempotencykeys.ts","start":2462,"length":11,"messageText":"Fallthrough case in switch.","category":1,"code":7029}]],[457,[{"file":"./src/v3/index.ts","start":60,"length":5,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/index.ts","start":112,"length":5,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/index.ts","start":415,"length":16,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/index.ts","start":516,"length":8,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/index.ts","start":528,"length":19,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/index.ts","start":551,"length":15,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/index.ts","start":570,"length":13,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/index.ts","start":587,"length":19,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/index.ts","start":610,"length":13,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/index.ts","start":627,"length":21,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/index.ts","start":652,"length":14,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/index.ts","start":670,"length":24,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/index.ts","start":698,"length":17,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/index.ts","start":719,"length":6,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/index.ts","start":785,"length":4,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/index.ts","start":814,"length":14,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/index.ts","start":856,"length":12,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/index.ts","start":1639,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[449,[{"file":"./src/v3/retry.ts","start":9,"length":10,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/retry.ts","start":9,"length":10,"messageText":"'Attributes' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/v3/retry.ts","start":21,"length":4,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/retry.ts","start":21,"length":4,"messageText":"'Span' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/v3/retry.ts","start":27,"length":14,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/retry.ts","start":43,"length":7,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/retry.ts","start":52,"length":5,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/retry.ts","start":98,"length":18,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/retry.ts","start":120,"length":20,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/retry.ts","start":144,"length":37,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/retry.ts","start":185,"length":20,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/retry.ts","start":209,"length":25,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/retry.ts","start":238,"length":17,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/retry.ts","start":314,"length":25,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/retry.ts","start":343,"length":17,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/retry.ts","start":364,"length":18,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/retry.ts","start":386,"length":12,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/retry.ts","start":402,"length":26,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/retry.ts","start":432,"length":19,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/retry.ts","start":455,"length":23,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/retry.ts","start":482,"length":16,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/retry.ts","start":502,"length":19,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/retry.ts","start":525,"length":18,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/retry.ts","start":547,"length":17,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/retry.ts","start":568,"length":7,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/retry.ts","start":617,"length":24,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/retry.ts","start":722,"length":17,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/retry.ts","start":776,"length":6,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/retry.ts","start":1102,"length":4,"messageText":"'span' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"file":"./src/v3/retry.ts","start":4765,"length":4,"messageText":"'span' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"file":"./src/v3/retry.ts","start":11593,"length":92,"messageText":"Not all code paths return a value.","category":1,"code":7030},{"file":"./src/v3/retry.ts","start":12584,"length":39,"messageText":"Not all code paths return a value.","category":1,"code":7030},{"file":"./src/v3/retry.ts","start":12831,"length":11,"messageText":"Type 'undefined' cannot be used as an index type.","category":1,"code":2538},{"file":"./src/v3/retry.ts","start":12891,"length":11,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | undefined' is not assignable to parameter of type 'string'.","category":1,"code":2345,"next":[{"messageText":"Type 'undefined' is not assignable to type 'string'.","category":1,"code":2322}]}},{"file":"./src/v3/retry.ts","start":14070,"length":5,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | undefined' is not assignable to parameter of type 'string'.","category":1,"code":2345,"next":[{"messageText":"Type 'undefined' is not assignable to type 'string'.","category":1,"code":2322}]}},{"file":"./src/v3/retry.ts","start":14128,"length":5,"messageText":"'start' is possibly 'undefined'.","category":1,"code":18048},{"file":"./src/v3/retry.ts","start":14171,"length":5,"messageText":"'start' is possibly 'undefined'.","category":1,"code":18048},{"file":"./src/v3/retry.ts","start":14378,"length":5,"messageText":"'start' is possibly 'undefined'.","category":1,"code":18048},{"file":"./src/v3/retry.ts","start":14405,"length":5,"messageText":"'start' is possibly 'undefined'.","category":1,"code":18048},{"file":"./src/v3/retry.ts","start":14527,"length":5,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | undefined' is not assignable to parameter of type 'string'.","category":1,"code":2345,"next":[{"messageText":"Type 'undefined' is not assignable to type 'string'.","category":1,"code":2322}]}},{"file":"./src/v3/retry.ts","start":17653,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[326,[{"file":"./src/v3/runs.ts","start":158,"length":10,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/runs.ts","start":158,"length":10,"messageText":"'ApiPromise' resolves to a type-only declaration and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1485,"relatedInformation":[{"file":"../core/src/v3/index.ts","start":118,"length":10,"messageText":"'ApiPromise' was exported here.","category":3,"code":1377}]},{"file":"./src/v3/runs.ts","start":172,"length":19,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/runs.ts","start":195,"length":17,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/runs.ts","start":195,"length":17,"messageText":"'CursorPagePromise' resolves to a type-only declaration and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1485,"relatedInformation":[{"file":"../core/src/v3/index.ts","start":154,"length":17,"messageText":"'CursorPagePromise' was exported here.","category":3,"code":1377}]},{"file":"./src/v3/runs.ts","start":216,"length":19,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/runs.ts","start":239,"length":17,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/runs.ts","start":260,"length":19,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/runs.ts","start":283,"length":19,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/runs.ts","start":306,"length":16,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/runs.ts","start":326,"length":17,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/runs.ts","start":347,"length":16,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/runs.ts","start":367,"length":19,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/runs.ts","start":428,"length":7,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/runs.ts","start":428,"length":7,"messageText":"'AnyTask' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/v3/runs.ts","start":437,"length":8,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/runs.ts","start":437,"length":8,"messageText":"'Prettify' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/v3/runs.ts","start":447,"length":9,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/runs.ts","start":447,"length":9,"messageText":"'RunHandle' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/v3/runs.ts","start":458,"length":4,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/runs.ts","start":458,"length":4,"messageText":"'Task' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/v3/runs.ts","start":464,"length":21,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/runs.ts","start":514,"length":6,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/runs.ts","start":895,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],455,[456,[{"file":"./src/v3/schedules/index.ts","start":11,"length":10,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/schedules/index.ts","start":11,"length":10,"messageText":"'ApiPromise' resolves to a type-only declaration and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1485,"relatedInformation":[{"file":"../core/src/v3/index.ts","start":118,"length":10,"messageText":"'ApiPromise' was exported here.","category":3,"code":1377}]},{"file":"./src/v3/schedules/index.ts","start":25,"length":17,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/schedules/index.ts","start":25,"length":17,"messageText":"'ApiRequestOptions' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/v3/schedules/index.ts","start":46,"length":21,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/schedules/index.ts","start":71,"length":10,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/schedules/index.ts","start":71,"length":10,"messageText":"'InitOutput' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/v3/schedules/index.ts","start":85,"length":22,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/schedules/index.ts","start":85,"length":22,"messageText":"'OffsetLimitPagePromise' resolves to a type-only declaration and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1485,"relatedInformation":[{"file":"../core/src/v3/index.ts","start":130,"length":22,"messageText":"'OffsetLimitPagePromise' was exported here.","category":3,"code":1377}]},{"file":"./src/v3/schedules/index.ts","start":111,"length":14,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/schedules/index.ts","start":129,"length":15,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/schedules/index.ts","start":148,"length":19,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/schedules/index.ts","start":171,"length":16,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/schedules/index.ts","start":191,"length":19,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/schedules/index.ts","start":214,"length":11,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/schedules/index.ts","start":267,"length":8,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/schedules/index.ts","start":325,"length":4,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/schedules/index.ts","start":325,"length":4,"messageText":"'Task' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/v3/schedules/index.ts","start":331,"length":11,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/schedules/index.ts","start":331,"length":11,"messageText":"'TaskOptions' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/v3/schedules/index.ts","start":344,"length":21,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/schedules/index.ts","start":367,"length":10,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/schedules/index.ts","start":410,"length":12,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/schedules/index.ts","start":446,"length":6,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/schedules/index.ts","start":1241,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/v3/schedules/index.ts","start":2518,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/v3/schedules/index.ts","start":3338,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/v3/schedules/index.ts","start":4612,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/v3/schedules/index.ts","start":5445,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/v3/schedules/index.ts","start":6234,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/v3/schedules/index.ts","start":7027,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/v3/schedules/index.ts","start":7924,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/v3/schedules/index.ts","start":8551,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[328,[{"file":"./src/v3/shared.ts","start":9,"length":8,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/shared.ts","start":58,"length":30,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/shared.ts","start":92,"length":28,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/shared.ts","start":124,"length":25,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/shared.ts","start":208,"length":17,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/shared.ts","start":208,"length":17,"messageText":"'ApiRequestOptions' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/v3/shared.ts","start":229,"length":27,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/shared.ts","start":260,"length":15,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/shared.ts","start":260,"length":15,"messageText":"'FailureFnParams' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/v3/shared.ts","start":279,"length":19,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/shared.ts","start":279,"length":19,"messageText":"'HandleErrorFnParams' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/v3/shared.ts","start":302,"length":17,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/shared.ts","start":302,"length":17,"messageText":"'HandleErrorResult' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/v3/shared.ts","start":323,"length":12,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/shared.ts","start":323,"length":12,"messageText":"'InitFnParams' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/v3/shared.ts","start":339,"length":10,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/shared.ts","start":339,"length":10,"messageText":"'InitOutput' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/v3/shared.ts","start":353,"length":10,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/shared.ts","start":367,"length":13,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/shared.ts","start":384,"length":18,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/shared.ts","start":384,"length":18,"messageText":"'MiddlewareFnParams' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/v3/shared.ts","start":406,"length":12,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/shared.ts","start":422,"length":12,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/shared.ts","start":438,"length":11,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/shared.ts","start":438,"length":11,"messageText":"'RunFnParams' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/v3/shared.ts","start":453,"length":7,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/shared.ts","start":464,"length":26,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/shared.ts","start":494,"length":13,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/shared.ts","start":494,"length":13,"messageText":"'StartFnParams' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/v3/shared.ts","start":511,"length":15,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/shared.ts","start":511,"length":15,"messageText":"'SuccessFnParams' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/v3/shared.ts","start":530,"length":14,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/shared.ts","start":548,"length":22,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/shared.ts","start":574,"length":19,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/shared.ts","start":597,"length":16,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/shared.ts","start":617,"length":25,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/shared.ts","start":646,"length":20,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/shared.ts","start":670,"length":19,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/shared.ts","start":693,"length":6,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/shared.ts","start":703,"length":11,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/shared.ts","start":718,"length":7,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/shared.ts","start":729,"length":11,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/shared.ts","start":744,"length":11,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/shared.ts","start":759,"length":11,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/shared.ts","start":815,"length":11,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/shared.ts","start":863,"length":6,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/shared.ts","start":898,"length":11,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/shared.ts","start":898,"length":11,"messageText":"'PollOptions' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/v3/shared.ts","start":911,"length":17,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/shared.ts","start":911,"length":17,"messageText":"'RetrieveRunResult' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/v3/shared.ts","start":930,"length":4,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/shared.ts","start":961,"length":14,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/shared.ts","start":961,"length":14,"messageText":"'IdempotencyKey' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/v3/shared.ts","start":977,"length":15,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/shared.ts","start":994,"length":16,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/shared.ts","start":1243,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/v3/shared.ts","start":12986,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/v3/shared.ts","start":16287,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/v3/shared.ts","start":17163,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/v3/shared.ts","start":18146,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/v3/shared.ts","start":19066,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/v3/shared.ts","start":19455,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/v3/shared.ts","start":30769,"length":4,"messageText":"'span' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"file":"./src/v3/shared.ts","start":31648,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[453,[{"file":"./src/v3/tags.ts","start":83,"length":24,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/tags.ts","start":111,"length":19,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/tags.ts","start":134,"length":16,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/tags.ts","start":154,"length":6,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/tags.ts","start":164,"length":19,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/tags.ts","start":187,"length":11,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/tags.ts","start":240,"length":21,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/tags.ts","start":290,"length":6,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/tags.ts","start":317,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[450,[{"file":"./src/v3/tasks.ts","start":9,"length":10,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/tasks.ts","start":9,"length":10,"messageText":"'InitOutput' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.","category":1,"code":1484},{"file":"./src/v3/tasks.ts","start":62,"length":12,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/tasks.ts","start":78,"length":19,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/tasks.ts","start":101,"length":10,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/tasks.ts","start":115,"length":7,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/tasks.ts","start":126,"length":14,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/tasks.ts","start":144,"length":14,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/tasks.ts","start":964,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/v3/tasks.ts","start":1279,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[318,[{"file":"./src/v3/tracer.ts","start":9,"length":13,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/tracer.ts","start":66,"length":11,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/tracer.ts","start":106,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[452,[{"file":"./src/v3/usage.ts","start":9,"length":17,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/usage.ts","start":28,"length":11,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/usage.ts","start":385,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[451,[{"file":"./src/v3/wait.ts","start":9,"length":26,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/wait.ts","start":37,"length":19,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/wait.ts","start":58,"length":7,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/wait.ts","start":106,"length":6,"messageText":"ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1286},{"file":"./src/v3/wait.ts","start":396,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"file":"./src/v3/wait.ts","start":527,"length":4,"messageText":"'span' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"file":"./src/v3/wait.ts","start":1195,"length":4,"messageText":"'span' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true}]]],"affectedFilesPendingEmit":[91,141,140,87,90,85,88,84,64,76,65,66,79,78,82,67,81,68,77,69,80,75,74,70,73,71,72,86,63,83,290,287,292,289,291,301,300,238,249,239,248,247,276,236,317,293,295,294,257,298,297,240,296,277,273,280,281,283,278,282,275,274,279,225,237,304,241,303,302,254,253,242,255,271,272,226,252,251,250,243,308,306,256,299,245,316,307,244,286,288,454,89,171,147,142,155,175,143,169,156,153,144,151,174,145,157,170,168,159,160,158,173,172,166,167,149,152,154,150,319,320,329,327,457,449,326,455,456,328,453,450,318,452,451],"emitSignatures":[63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,140,141,142,143,144,145,147,149,150,151,152,153,154,155,156,157,158,159,160,166,167,168,169,170,171,172,173,174,175,225,226,236,237,238,239,240,241,242,243,244,245,247,248,249,250,251,252,253,254,255,256,257,271,272,273,274,275,276,277,278,279,280,281,282,283,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,306,307,308,316,317,318,319,320,326,327,328,329,449,450,451,452,453,454,455,456,457]},"version":"5.3.2"} \ No newline at end of file diff --git a/packages/trigger-sdk/tsup.config.ts b/packages/trigger-sdk/tsup.config.ts deleted file mode 100644 index e21191453..000000000 --- a/packages/trigger-sdk/tsup.config.ts +++ /dev/null @@ -1,9 +0,0 @@ -import { Options, defineConfig as defineConfigTSUP } from "tsup"; -import { packageOptions } from "@trigger.dev/tsup"; - -const options: Options = { - ...packageOptions, - entry: ["./src/index.ts", "./src/v3/index.ts"], -}; - -export default defineConfigTSUP(options); diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 2d84de6fe..1e7dbfadc 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -384,9 +384,6 @@ importers: '@trigger.dev/core': specifier: workspace:* version: link:../../packages/core - '@trigger.dev/core-backend': - specifier: workspace:* - version: link:../../packages/core-backend '@trigger.dev/database': specifier: workspace:* version: link:../../packages/database @@ -1189,40 +1186,6 @@ importers: specifier: ^5.3.0 version: 5.3.3 - packages/core-backend: - dependencies: - '@opentelemetry/api': - specifier: ^1.8.0 - version: 1.8.0 - devDependencies: - '@trigger.dev/tsconfig': - specifier: workspace:* - version: link:../../config-packages/tsconfig - '@trigger.dev/tsup': - specifier: workspace:* - version: link:../../config-packages/tsup - '@types/jest': - specifier: ^29.5.3 - version: 29.5.3 - '@types/node': - specifier: '18' - version: 18.17.1 - jest: - specifier: ^29.6.2 - version: 29.6.2(@types/node@18.17.1) - rimraf: - specifier: ^3.0.2 - version: 3.0.2 - ts-jest: - specifier: ^29.1.1 - version: 29.1.1(@babel/core@7.22.17)(esbuild@0.19.11)(jest@29.6.2)(typescript@5.3.2) - tsup: - specifier: ^8.0.1 - version: 8.0.1(patch_hash=a5ztaafw5l4qfghy2hjjuynb34)(postcss@8.4.38)(typescript@5.3.2) - typescript: - specifier: ^5.3.0 - version: 5.3.2 - packages/database: dependencies: '@prisma/client': @@ -1351,9 +1314,6 @@ importers: '@trigger.dev/core': specifier: workspace:3.0.0-beta.52 version: link:../core - '@trigger.dev/core-backend': - specifier: workspace:3.0.0-beta.52 - version: link:../core-backend chalk: specifier: ^5.2.0 version: 5.2.0 @@ -1377,7 +1337,7 @@ importers: version: 2.1.1 msw: specifier: ^2.2.1 - version: 2.2.1(typescript@5.3.2) + version: 2.2.1(typescript@5.5.4) slug: specifier: ^6.0.0 version: 6.1.0 @@ -1397,15 +1357,12 @@ importers: specifier: 3.22.3 version: 3.22.3 devDependencies: - '@trigger.dev/tsup': - specifier: workspace:* - version: link:../../config-packages/tsup '@types/debug': specifier: ^4.1.7 version: 4.1.7 '@types/node': - specifier: '18' - version: 18.14.0 + specifier: 20.14.14 + version: 20.14.14 '@types/slug': specifier: ^5.0.3 version: 5.0.3 @@ -1421,15 +1378,15 @@ importers: rimraf: specifier: ^3.0.2 version: 3.0.2 - tsup: - specifier: ^8.0.1 - version: 8.0.1(patch_hash=a5ztaafw5l4qfghy2hjjuynb34)(postcss@8.4.38)(typescript@5.3.2) + tshy: + specifier: ^3.0.2 + version: 3.0.2 typed-emitter: specifier: ^2.1.0 version: 2.1.0 typescript: - specifier: ^5.3.0 - version: 5.3.2 + specifier: ^5.5.4 + version: 5.5.4 references/v3-catalog: dependencies: @@ -12738,10 +12695,6 @@ packages: /@types/node@18.11.18: resolution: {integrity: sha512-DHQpWGjyQKSHj3ebjFI/wRKcqQcdR+MoFBygntYOZytCqNfkd2ZC4ARDJ2DQqhjH5p85Nnd3jhUJIXrszFX/JA==} - /@types/node@18.14.0: - resolution: {integrity: sha512-5EWrvLmglK+imbCJY0+INViFWUHg1AHel1sq4ZVSfdcNqGy9Edv3UB9IIzzg+xPaUcAgZYcfVs2fBcwDeZzU0A==} - dev: true - /@types/node@18.17.1: resolution: {integrity: sha512-xlR1jahfizdplZYRU59JlUx9uzF1ARa8jbhM11ccpCJya8kvos5jwdm2ZAgxSCwOl0fq21svP18EVwPBXMQudw==} dev: true @@ -14768,7 +14721,6 @@ packages: readdirp: 3.6.0 optionalDependencies: fsevents: 2.3.3 - dev: true /chownr@1.1.4: resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==} @@ -18232,7 +18184,7 @@ packages: foreground-child: 3.1.1 jackspeak: 2.3.6 minimatch: 9.0.3 - minipass: 7.0.3 + minipass: 7.1.2 path-scurry: 1.10.1 dev: false @@ -21321,7 +21273,6 @@ packages: /minipass@7.1.2: resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==} engines: {node: '>=16 || 14 >=14.17'} - dev: true /minizlib@2.1.2: resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==} @@ -21418,37 +21369,6 @@ packages: /ms@2.1.3: resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} - /msw@2.2.1(typescript@5.3.2): - resolution: {integrity: sha512-DCsZAQwan+2onEcpD86fiEnCKW4IvYzqcwDq/2TIoeNrmBqNp/mJW4wHQyxcoYrRPwgujin7wDFflqiSO1iT/w==} - engines: {node: '>=18'} - hasBin: true - requiresBuild: true - peerDependencies: - typescript: '>= 4.7.x <= 5.3.x' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@bundled-es-modules/cookie': 2.0.0 - '@bundled-es-modules/statuses': 1.0.1 - '@inquirer/confirm': 3.0.0 - '@mswjs/cookies': 1.1.0 - '@mswjs/interceptors': 0.25.16 - '@open-draft/until': 2.1.0 - '@types/cookie': 0.6.0 - '@types/statuses': 2.0.4 - chalk: 4.1.2 - graphql: 16.8.1 - headers-polyfill: 4.0.2 - is-node-process: 1.2.0 - outvariant: 1.4.2 - path-to-regexp: 6.2.1 - strict-event-emitter: 0.5.1 - type-fest: 4.10.3 - typescript: 5.3.2 - yargs: 17.7.2 - dev: false - /msw@2.2.1(typescript@5.3.3): resolution: {integrity: sha512-DCsZAQwan+2onEcpD86fiEnCKW4IvYzqcwDq/2TIoeNrmBqNp/mJW4wHQyxcoYrRPwgujin7wDFflqiSO1iT/w==} engines: {node: '>=18'} @@ -21480,6 +21400,37 @@ packages: yargs: 17.7.2 dev: false + /msw@2.2.1(typescript@5.5.4): + resolution: {integrity: sha512-DCsZAQwan+2onEcpD86fiEnCKW4IvYzqcwDq/2TIoeNrmBqNp/mJW4wHQyxcoYrRPwgujin7wDFflqiSO1iT/w==} + engines: {node: '>=18'} + hasBin: true + requiresBuild: true + peerDependencies: + typescript: '>= 4.7.x <= 5.3.x' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@bundled-es-modules/cookie': 2.0.0 + '@bundled-es-modules/statuses': 1.0.1 + '@inquirer/confirm': 3.0.0 + '@mswjs/cookies': 1.1.0 + '@mswjs/interceptors': 0.25.16 + '@open-draft/until': 2.1.0 + '@types/cookie': 0.6.0 + '@types/statuses': 2.0.4 + chalk: 4.1.2 + graphql: 16.8.1 + headers-polyfill: 4.0.2 + is-node-process: 1.2.0 + outvariant: 1.4.2 + path-to-regexp: 6.2.1 + strict-event-emitter: 0.5.1 + type-fest: 4.10.3 + typescript: 5.5.4 + yargs: 17.7.2 + dev: false + /mustache@4.2.0: resolution: {integrity: sha512-71ippSywq5Yb7/tVYyGbkBggbU8H3u5Rz56fH60jGFgr8uHwxs+aSKeqmluIVzM0m0kB7xQjKS6qPfd0b2ZoqQ==} hasBin: true @@ -25943,7 +25894,7 @@ packages: dependencies: '@alloc/quick-lru': 5.2.0 arg: 5.0.2 - chokidar: 3.5.3 + chokidar: 3.6.0 didyoumean: 1.2.2 dlv: 1.1.3 fast-glob: 3.3.1 @@ -26321,41 +26272,6 @@ packages: /ts-interface-checker@0.1.13: resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} - /ts-jest@29.1.1(@babel/core@7.22.17)(esbuild@0.19.11)(jest@29.6.2)(typescript@5.3.2): - resolution: {integrity: sha512-D6xjnnbP17cC85nliwGiL+tpoKN0StpgE0TeOjXQTU6MVCfsB4v7aW05CgQ/1OywGb0x/oy9hHFnN+sczTiRaA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - hasBin: true - peerDependencies: - '@babel/core': '>=7.0.0-beta.0 <8' - '@jest/types': ^29.0.0 - babel-jest: ^29.0.0 - esbuild: '*' - jest: ^29.0.0 - typescript: '>=4.3 <6' - peerDependenciesMeta: - '@babel/core': - optional: true - '@jest/types': - optional: true - babel-jest: - optional: true - esbuild: - optional: true - dependencies: - '@babel/core': 7.22.17 - bs-logger: 0.2.6 - esbuild: 0.19.11 - fast-json-stable-stringify: 2.1.0 - jest: 29.6.2(@types/node@18.17.1) - jest-util: 29.6.2 - json5: 2.2.3 - lodash.memoize: 4.1.2 - make-error: 1.3.6 - semver: 7.5.4 - typescript: 5.3.2 - yargs-parser: 21.1.1 - dev: true - /ts-jest@29.1.1(@babel/core@7.22.17)(esbuild@0.19.11)(jest@29.6.2)(typescript@5.3.3): resolution: {integrity: sha512-D6xjnnbP17cC85nliwGiL+tpoKN0StpgE0TeOjXQTU6MVCfsB4v7aW05CgQ/1OywGb0x/oy9hHFnN+sczTiRaA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} @@ -27069,7 +26985,6 @@ packages: resolution: {integrity: sha512-Mtq29sKDAEYP7aljRgtPOpTvOfbwRWlS6dPRzwjdE+C0R4brX/GUyhHSecbHMFLNBLcJIPt9nl9yG5TZ1weH+Q==} engines: {node: '>=14.17'} hasBin: true - dev: true /ufo@1.3.0: resolution: {integrity: sha512-bRn3CsoojyNStCZe0BG0Mt4Nr/4KF+rhFlnNXybgqt5pXHNFRlqinSoQaTrGyzE4X8aHplSb+TorH+COin9Yxw==}