@cloudflare/workers-types 4.20260526.1 → 4.20260528.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -11334,6 +11334,513 @@ declare abstract class AutoRAG {
11334
11334
  params: AutoRagAiSearchRequest,
11335
11335
  ): Promise<AutoRagAiSearchResponse | Response>;
11336
11336
  }
11337
+ type BrowserRunLifecycleEvent =
11338
+ | "load"
11339
+ | "domcontentloaded"
11340
+ | "networkidle0"
11341
+ | "networkidle2";
11342
+ type BrowserRunResourceType =
11343
+ | "document"
11344
+ | "stylesheet"
11345
+ | "image"
11346
+ | "media"
11347
+ | "font"
11348
+ | "script"
11349
+ | "texttrack"
11350
+ | "xhr"
11351
+ | "fetch"
11352
+ | "prefetch"
11353
+ | "eventsource"
11354
+ | "websocket"
11355
+ | "manifest"
11356
+ | "signedexchange"
11357
+ | "ping"
11358
+ | "cspviolationreport"
11359
+ | "preflight"
11360
+ | "other";
11361
+ /** Options fields shared by all quick actions. */
11362
+ interface BrowserRunBaseOptions {
11363
+ /** Adds `<script>` tags into the page with the desired URL or content.
11364
+ * @see https://pptr.dev/api/puppeteer.frameaddscripttagoptions
11365
+ */
11366
+ addScriptTag?: Array<{
11367
+ content?: string;
11368
+ url?: string;
11369
+ type?: string;
11370
+ id?: string;
11371
+ }>;
11372
+ /** Adds `<link rel="stylesheet">` or `<style>` tags into the page.
11373
+ * @see https://pptr.dev/api/puppeteer.frameaddstyletagoptions
11374
+ */
11375
+ addStyleTag?: Array<{
11376
+ content?: string;
11377
+ url?: string;
11378
+ }>;
11379
+ /** Provide credentials for HTTP authentication. @see https://pptr.dev/api/puppeteer.credentials */
11380
+ authenticate?: {
11381
+ username: string;
11382
+ password: string;
11383
+ };
11384
+ /** Set cookies before navigating. @see https://pptr.dev/api/puppeteer.cookieparam */
11385
+ cookies?: Array<{
11386
+ name: string;
11387
+ value: string;
11388
+ url?: string;
11389
+ domain?: string;
11390
+ path?: string;
11391
+ secure?: boolean;
11392
+ httpOnly?: boolean;
11393
+ sameSite?: "Strict" | "Lax" | "None";
11394
+ expires?: number;
11395
+ priority?: "Low" | "Medium" | "High";
11396
+ sameParty?: boolean;
11397
+ sourceScheme?: "Unset" | "NonSecure" | "Secure";
11398
+ sourcePort?: number;
11399
+ partitionKey?: string;
11400
+ }>;
11401
+ /** Emulate a specific CSS media type (e.g. `"screen"`, `"print"`). */
11402
+ emulateMediaType?: string;
11403
+ /** Navigation options. @see https://pptr.dev/api/puppeteer.gotooptions */
11404
+ gotoOptions?: {
11405
+ /** Navigation timeout in milliseconds (max 60 000). @default 30000 */
11406
+ timeout?: number;
11407
+ /** When to consider navigation complete. @default "domcontentloaded" */
11408
+ waitUntil?: BrowserRunLifecycleEvent | BrowserRunLifecycleEvent[];
11409
+ referer?: string;
11410
+ referrerPolicy?: string;
11411
+ };
11412
+ /** Block requests matching these regex patterns. Mutually exclusive with `allowRequestPattern`. */
11413
+ rejectRequestPattern?: string[];
11414
+ /** Only allow requests matching these regex patterns. Mutually exclusive with `rejectRequestPattern`. */
11415
+ allowRequestPattern?: string[];
11416
+ /** Block requests of these resource types. Mutually exclusive with `allowResourceTypes`. */
11417
+ rejectResourceTypes?: BrowserRunResourceType[];
11418
+ /** Only allow requests of these resource types. Mutually exclusive with `rejectResourceTypes`. */
11419
+ allowResourceTypes?: BrowserRunResourceType[];
11420
+ /** Additional HTTP headers sent with every request. */
11421
+ setExtraHTTPHeaders?: Record<string, string>;
11422
+ /** Whether JavaScript is enabled on the page. */
11423
+ setJavaScriptEnabled?: boolean;
11424
+ /** Override the default user agent string.
11425
+ * @default "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36"
11426
+ * */
11427
+ userAgent?: string;
11428
+ /** Set the browser viewport size.
11429
+ * @see https://pptr.dev/api/puppeteer.viewport
11430
+ * @default {width:1920,height:1080}
11431
+ * */
11432
+ viewport?: {
11433
+ width: number;
11434
+ height: number;
11435
+ deviceScaleFactor?: number;
11436
+ isMobile?: boolean;
11437
+ isLandscape?: boolean;
11438
+ hasTouch?: boolean;
11439
+ };
11440
+ /** Wait for a CSS selector to appear in the page before proceeding.
11441
+ * @see https://pptr.dev/api/puppeteer.waitforselectoroptions
11442
+ */
11443
+ waitForSelector?: {
11444
+ selector: string;
11445
+ hidden?: true;
11446
+ visible?: true;
11447
+ /** Timeout in milliseconds. Max 120000 */
11448
+ timeout?: number;
11449
+ };
11450
+ /** Wait for a fixed delay in milliseconds before proceeding. Max 120000 */
11451
+ waitForTimeout?: number;
11452
+ /** When true, continue on best-effort when awaited events fail or timeout. */
11453
+ bestAttempt?: boolean;
11454
+ /** Maximum duration in milliseconds for the browser action after page load. Max 120000 */
11455
+ actionTimeout?: number;
11456
+ /** Cache time to live in seconds (0-86400). Set to 0 to disable.
11457
+ * @default 5
11458
+ */
11459
+ cacheTTL?: number;
11460
+ }
11461
+ /** Common options shared by all quick actions. Exactly one of `url` or `html` must be provided.*/
11462
+ type BrowserRunCommonOptions =
11463
+ | (BrowserRunBaseOptions & {
11464
+ /** URL to navigate to, e.g. `"https://example.com"`. */
11465
+ url: string;
11466
+ })
11467
+ | (BrowserRunBaseOptions & {
11468
+ /** Set the HTML content of the page directly. */
11469
+ html: string;
11470
+ });
11471
+ type BrowserRunPuppeteerScreenshotOptions = {
11472
+ /** @default "png" */
11473
+ type?: "png" | "jpeg" | "webp";
11474
+ /** @default "binary" */
11475
+ encoding?: "binary" | "base64";
11476
+ quality?: number;
11477
+ fullPage?: boolean;
11478
+ clip?: {
11479
+ x: number;
11480
+ y: number;
11481
+ width: number;
11482
+ height: number;
11483
+ scale?: number;
11484
+ };
11485
+ omitBackground?: boolean;
11486
+ optimizeForSpeed?: boolean;
11487
+ captureBeyondViewport?: boolean;
11488
+ fromSurface?: boolean;
11489
+ };
11490
+ type BrowserRunScreenshotOptions = BrowserRunCommonOptions & {
11491
+ /** CSS selector of the element to screenshot. */
11492
+ selector?: string;
11493
+ /** When true, scroll the entire page before taking the screenshot. */
11494
+ scrollPage?: boolean;
11495
+ /** @see https://pptr.dev/api/puppeteer.screenshotoptions */
11496
+ screenshotOptions?: BrowserRunPuppeteerScreenshotOptions;
11497
+ };
11498
+ type BrowserRunPDFOptions = BrowserRunCommonOptions & {
11499
+ /** @see https://pptr.dev/api/puppeteer.pdfoptions */
11500
+ pdfOptions?: {
11501
+ /** @default 1 */
11502
+ scale?: number;
11503
+ /** @default false */
11504
+ displayHeaderFooter?: boolean;
11505
+ headerTemplate?: string;
11506
+ footerTemplate?: string;
11507
+ /** @default false */
11508
+ printBackground?: boolean;
11509
+ /** @default false */
11510
+ landscape?: boolean;
11511
+ pageRanges?: string;
11512
+ /** @default "letter" */
11513
+ format?:
11514
+ | "letter"
11515
+ | "legal"
11516
+ | "tabloid"
11517
+ | "ledger"
11518
+ | "a0"
11519
+ | "a1"
11520
+ | "a2"
11521
+ | "a3"
11522
+ | "a4"
11523
+ | "a5"
11524
+ | "a6";
11525
+ width?: string | number;
11526
+ height?: string | number;
11527
+ /** @default false */
11528
+ preferCSSPageSize?: boolean;
11529
+ margin?: {
11530
+ top?: string | number;
11531
+ right?: string | number;
11532
+ bottom?: string | number;
11533
+ left?: string | number;
11534
+ };
11535
+ /** @default false */
11536
+ omitBackground?: boolean;
11537
+ /** @default true */
11538
+ tagged?: boolean;
11539
+ /** @default false */
11540
+ outline?: boolean;
11541
+ /** @default 30000 */
11542
+ timeout?: number;
11543
+ };
11544
+ };
11545
+ type BrowserRunScrapeOptions = BrowserRunCommonOptions & {
11546
+ /** CSS selectors to scrape. At least one element is required. */
11547
+ elements: Array<{
11548
+ selector: string;
11549
+ }>;
11550
+ };
11551
+ type BrowserRunLinksOptions = BrowserRunCommonOptions & {
11552
+ /** When true, only return links that are visible on the page. @default false */
11553
+ visibleLinksOnly?: boolean;
11554
+ /** When true, exclude links pointing to external domains. @default false */
11555
+ excludeExternalLinks?: boolean;
11556
+ };
11557
+ type BrowserRunSnapshotOptions = BrowserRunCommonOptions & {
11558
+ /** @see https://pptr.dev/api/puppeteer.screenshotoptions */
11559
+ screenshotOptions?: Omit<BrowserRunPuppeteerScreenshotOptions, "encoding">;
11560
+ };
11561
+ interface BrowserRunJsonBaseOptions {
11562
+ /** Custom AI models to try in order. Max 3. Falls back to next on error. */
11563
+ custom_ai?: Array<{
11564
+ /** Model ID in `<provider>/<model_name>` format, e.g. `"workers-ai/@cf/meta/llama-3.3-70b-instruct-fp8-fast"`. */
11565
+ model: string;
11566
+ /** Bearer token. Not needed for workers-ai models. */
11567
+ authorization?: string;
11568
+ }>;
11569
+ }
11570
+ /**
11571
+ * Options for the `json` quick action.
11572
+ * At least one of `prompt` or `response_format` must be provided.
11573
+ */
11574
+ type BrowserRunJsonOptions = BrowserRunCommonOptions &
11575
+ BrowserRunJsonBaseOptions &
11576
+ (
11577
+ | {
11578
+ /** Natural-language prompt describing what data to extract. */
11579
+ prompt: string;
11580
+ /** Structured output schema for the AI model. @see https://developers.cloudflare.com/workers-ai/json-mode/ */
11581
+ response_format?: AiTextGenerationResponseFormat;
11582
+ }
11583
+ | {
11584
+ /** Natural-language prompt describing what data to extract. */
11585
+ prompt?: string;
11586
+ /** Structured output schema for the AI model. @see https://developers.cloudflare.com/workers-ai/json-mode/ */
11587
+ response_format: AiTextGenerationResponseFormat;
11588
+ }
11589
+ );
11590
+ type BrowserRunContentOptions = BrowserRunCommonOptions;
11591
+ type BrowserRunMarkdownOptions = BrowserRunCommonOptions;
11592
+ type BrowserRunResponseMeta = {
11593
+ /** HTTP status code of the rendered page */
11594
+ status: number;
11595
+ /** Page title */
11596
+ title: string;
11597
+ };
11598
+ /** Success response for `content` action. */
11599
+ type BrowserRunContentSuccessResponse = {
11600
+ success: true;
11601
+ /** Extracted HTML content */
11602
+ result: string;
11603
+ meta: BrowserRunResponseMeta;
11604
+ };
11605
+ /** Success response for `links` action. */
11606
+ type BrowserRunLinksSuccessResponse = {
11607
+ success: true;
11608
+ /** Extracted links */
11609
+ result: string[];
11610
+ };
11611
+ /** Success response for `scrape` action. */
11612
+ type BrowserRunScrapeSuccessResponse = {
11613
+ success: true;
11614
+ result: Array<{
11615
+ /** The CSS selector used to find elements. */
11616
+ selector: string;
11617
+ /** Array of elements matching the selector. */
11618
+ results: Array<{
11619
+ /** Outer HTML of the element. */
11620
+ html: string;
11621
+ /** Text content of the element. */
11622
+ text: string;
11623
+ /** Width of the element in pixels. */
11624
+ width: number;
11625
+ /** Height of the element in pixels. */
11626
+ height: number;
11627
+ /** Top position of the element relative to the viewport in pixels. */
11628
+ top: number;
11629
+ /** Left position of the element relative to the viewport in pixels. */
11630
+ left: number;
11631
+ /** Array of HTML attributes on the element. */
11632
+ attributes: Array<{
11633
+ /** Attribute name. */
11634
+ name: string;
11635
+ /** Attribute value. */
11636
+ value: string;
11637
+ }>;
11638
+ }>;
11639
+ }>;
11640
+ };
11641
+ /** Success response for `snapshot` action. */
11642
+ type BrowserRunSnapshotSuccessResponse = {
11643
+ success: true;
11644
+ result: {
11645
+ /** HTML content of the page. */
11646
+ content: string;
11647
+ /** Base64-encoded screenshot image. */
11648
+ screenshot: string;
11649
+ };
11650
+ meta: BrowserRunResponseMeta;
11651
+ };
11652
+ /** Success response for `json` action. */
11653
+ type BrowserRunJsonSuccessResponse = {
11654
+ success: true;
11655
+ /** JSON data extracted from the page using an AI model */
11656
+ result: Record<string, unknown>;
11657
+ };
11658
+ /** Success response for `markdown` action. */
11659
+ type BrowserRunMarkdownSuccessResponse = {
11660
+ success: true;
11661
+ /** Extracted markdown content */
11662
+ result: string;
11663
+ };
11664
+ /** Error response for BrowserRun actions. */
11665
+ type BrowserRunErrorResponse = {
11666
+ success: false;
11667
+ errors: {
11668
+ message: string;
11669
+ code?: number;
11670
+ detail?: string;
11671
+ path?: string;
11672
+ }[];
11673
+ };
11674
+ /** Error response for BrowserRun `json` action. */
11675
+ type BrowserRunJsonErrorResponse = BrowserRunErrorResponse & {
11676
+ /** Raw AI response text for debugging */
11677
+ rawAiResponse?: string;
11678
+ };
11679
+ /**
11680
+ * Browser Run API binding for automating headless browsers.
11681
+ * @see https://developers.cloudflare.com/browser-run/
11682
+ */
11683
+ declare abstract class BrowserRun {
11684
+ /**
11685
+ * Send a raw HTTP request to the Browser Run API.
11686
+ * Used by libraries like `@cloudflare/puppeteer` to acquire and connect to a browser instance.
11687
+ * @see https://developers.cloudflare.com/browser-run/
11688
+ */
11689
+ fetch(input: RequestInfo | URL, init?: RequestInit): Promise<Response>;
11690
+ /**
11691
+ * Take a screenshot of a web page.
11692
+ * @param action - Must be `'screenshot'`.
11693
+ * @param options - Screenshot options including viewport, selectors, and image format.
11694
+ * @returns A `Response` containing one of:
11695
+ *
11696
+ * **Success (HTTP 200):**
11697
+ * - Binary image data with `Content-Type: image/png`, `image/jpeg`, or `image/webp` (when `encoding: 'binary'`, the default)
11698
+ * - Data URI string with `Content-Type: text/plain` (when `encoding: 'base64'`)
11699
+ *
11700
+ * **Error:**
11701
+ * - `BrowserRunErrorResponse` JSON with appropriate HTTP status code (400, 422, 429, 500, 503)
11702
+ *
11703
+ * **Headers:**
11704
+ * - `X-Browser-Ms-Used`: Browser time consumed in milliseconds (set when status < 500)
11705
+ */
11706
+ quickAction(
11707
+ action: "screenshot",
11708
+ options: BrowserRunScreenshotOptions,
11709
+ ): Promise<Response>;
11710
+ /**
11711
+ * Generate a PDF of a web page.
11712
+ * @param action - Must be `'pdf'`.
11713
+ * @param options - PDF generation options including page size, margins, and headers/footers.
11714
+ * @returns A `Response` containing one of:
11715
+ *
11716
+ * **Success (HTTP 200):**
11717
+ * - Binary PDF data with `Content-Type: application/pdf`
11718
+ *
11719
+ * **Error:**
11720
+ * - `BrowserRunErrorResponse` JSON with appropriate HTTP status code (400, 422, 429, 500, 503)
11721
+ *
11722
+ * **Headers:**
11723
+ * - `X-Browser-Ms-Used`: Browser time consumed in milliseconds (set when status < 500)
11724
+ */
11725
+ quickAction(action: "pdf", options: BrowserRunPDFOptions): Promise<Response>;
11726
+ /**
11727
+ * Get the HTML content of a web page.
11728
+ * @param action - Must be `'content'`.
11729
+ * @param options - Navigation and page interaction options.
11730
+ * @returns A `Response` containing one of:
11731
+ *
11732
+ * **Success (HTTP 200):**
11733
+ * - `BrowserRunContentSuccessResponse` JSON with `Content-Type: application/json`
11734
+ *
11735
+ * **Error:**
11736
+ * - `BrowserRunErrorResponse` JSON with appropriate HTTP status code (400, 422, 429, 500, 503)
11737
+ *
11738
+ * **Headers:**
11739
+ * - `X-Browser-Ms-Used`: Browser time consumed in milliseconds (set when status < 500)
11740
+ */
11741
+ quickAction(
11742
+ action: "content",
11743
+ options: BrowserRunContentOptions,
11744
+ ): Promise<Response>;
11745
+ /**
11746
+ * Scrape elements from a web page by CSS selector.
11747
+ * @param action - Must be `'scrape'`.
11748
+ * @param options - Scrape options with CSS selectors for elements to extract.
11749
+ * @returns A `Response` containing one of:
11750
+ *
11751
+ * **Success (HTTP 200):**
11752
+ * - `BrowserRunScrapeSuccessResponse` JSON with `Content-Type: application/json`
11753
+ *
11754
+ * **Error:**
11755
+ * - `BrowserRunErrorResponse` JSON with appropriate HTTP status code (400, 422, 429, 500, 503)
11756
+ *
11757
+ * **Headers:**
11758
+ * - `X-Browser-Ms-Used`: Browser time consumed in milliseconds (set when status < 500)
11759
+ */
11760
+ quickAction(
11761
+ action: "scrape",
11762
+ options: BrowserRunScrapeOptions,
11763
+ ): Promise<Response>;
11764
+ /**
11765
+ * Extract all links from a web page.
11766
+ * @param action - Must be `'links'`.
11767
+ * @param options - Options to filter visible or internal links only.
11768
+ * @returns A `Response` containing one of:
11769
+ *
11770
+ * **Success (HTTP 200):**
11771
+ * - `BrowserRunLinksSuccessResponse` JSON with `Content-Type: application/json`
11772
+ *
11773
+ * **Error:**
11774
+ * - `BrowserRunErrorResponse` JSON with appropriate HTTP status code (400, 422, 429, 500, 503)
11775
+ *
11776
+ * **Headers:**
11777
+ * - `X-Browser-Ms-Used`: Browser time consumed in milliseconds (set when status < 500)
11778
+ */
11779
+ quickAction(
11780
+ action: "links",
11781
+ options: BrowserRunLinksOptions,
11782
+ ): Promise<Response>;
11783
+ /**
11784
+ * Get both the HTML content and a base64-encoded screenshot of a web page.
11785
+ * @param action - Must be `'snapshot'`.
11786
+ * @param options - Snapshot options including screenshot settings (encoding is always base64).
11787
+ * @returns A `Response` containing one of:
11788
+ *
11789
+ * **Success (HTTP 200):**
11790
+ * - `BrowserRunSnapshotSuccessResponse` JSON with `Content-Type: application/json`
11791
+ *
11792
+ * **Error:**
11793
+ * - `BrowserRunErrorResponse` JSON with appropriate HTTP status code (400, 422, 429, 500, 503)
11794
+ *
11795
+ * **Headers:**
11796
+ * - `X-Browser-Ms-Used`: Browser time consumed in milliseconds (set when status < 500)
11797
+ */
11798
+ quickAction(
11799
+ action: "snapshot",
11800
+ options: BrowserRunSnapshotOptions,
11801
+ ): Promise<Response>;
11802
+ /**
11803
+ * Extract structured JSON data from a web page using AI.
11804
+ * @param action - Must be `'json'`.
11805
+ * @param options - JSON extraction options with prompt or response_format schema.
11806
+ * @returns A `Response` containing one of:
11807
+ *
11808
+ * **Success (HTTP 200):**
11809
+ * - `BrowserRunJsonSuccessResponse` JSON with `Content-Type: application/json`
11810
+ *
11811
+ * **Error:**
11812
+ * - `BrowserRunErrorResponse` JSON with appropriate HTTP status code (400, 422, 429, 500, 503)
11813
+ * - HTTP 422 with code `2012` for HTML-to-markdown conversion failures
11814
+ * - HTTP 422/500 for AI extraction failures (may include `rawAiResponse` field)
11815
+ *
11816
+ * **Headers:**
11817
+ * - `X-Browser-Ms-Used`: Browser time consumed in milliseconds (set when status < 500)
11818
+ */
11819
+ quickAction(
11820
+ action: "json",
11821
+ options: BrowserRunJsonOptions,
11822
+ ): Promise<Response>;
11823
+ /**
11824
+ * Convert a web page to Markdown.
11825
+ * @param action - Must be `'markdown'`.
11826
+ * @param options - Navigation and page interaction options.
11827
+ * @returns A `Response` containing one of:
11828
+ *
11829
+ * **Success (HTTP 200):**
11830
+ * - `BrowserRunMarkdownSuccessResponse` JSON with `Content-Type: application/json`
11831
+ *
11832
+ * **Error:**
11833
+ * - `BrowserRunErrorResponse` JSON with appropriate HTTP status code (400, 422, 429, 500, 503)
11834
+ * - HTTP 422 with code `2012` for HTML-to-markdown conversion failures
11835
+ *
11836
+ * **Headers:**
11837
+ * - `X-Browser-Ms-Used`: Browser time consumed in milliseconds (set when status < 500)
11838
+ */
11839
+ quickAction(
11840
+ action: "markdown",
11841
+ options: BrowserRunMarkdownOptions,
11842
+ ): Promise<Response>;
11843
+ }
11337
11844
  interface BasicImageTransformations {
11338
11845
  /**
11339
11846
  * Maximum width in image pixels. The value must be an integer.
@@ -13587,6 +14094,7 @@ declare namespace CloudflareWorkersModule {
13587
14094
  export type WorkflowTimeoutDuration = WorkflowSleepDuration;
13588
14095
  export type WorkflowRetentionDuration = WorkflowSleepDuration;
13589
14096
  export type WorkflowBackoff = "constant" | "linear" | "exponential";
14097
+ export type WorkflowStepSensitivity = "output";
13590
14098
  export type WorkflowStepConfig = {
13591
14099
  retries?: {
13592
14100
  limit: number;
@@ -13594,16 +14102,26 @@ declare namespace CloudflareWorkersModule {
13594
14102
  backoff?: WorkflowBackoff;
13595
14103
  };
13596
14104
  timeout?: WorkflowTimeoutDuration | number;
14105
+ sensitive?: WorkflowStepSensitivity;
14106
+ };
14107
+ export type WorkflowCronSchedule = {
14108
+ /** Cron expression that triggered this event. */
14109
+ cron: string;
14110
+ /** Timestamp of the scheduled trigger, in milliseconds since the Unix epoch. */
14111
+ scheduledTime: number;
13597
14112
  };
13598
14113
  export type WorkflowEvent<T> = {
13599
14114
  payload: Readonly<T>;
13600
14115
  timestamp: Date;
13601
14116
  instanceId: string;
14117
+ workflowName: string;
14118
+ schedule?: WorkflowCronSchedule;
13602
14119
  };
13603
14120
  export type WorkflowStepEvent<T> = {
13604
14121
  payload: Readonly<T>;
13605
14122
  timestamp: Date;
13606
14123
  type: string;
14124
+ sensitive?: WorkflowStepSensitivity;
13607
14125
  };
13608
14126
  export type WorkflowStepContext = {
13609
14127
  step: {