@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.
@@ -11422,6 +11422,513 @@ export declare abstract class AutoRAG {
11422
11422
  params: AutoRagAiSearchRequest,
11423
11423
  ): Promise<AutoRagAiSearchResponse | Response>;
11424
11424
  }
11425
+ export type BrowserRunLifecycleEvent =
11426
+ | "load"
11427
+ | "domcontentloaded"
11428
+ | "networkidle0"
11429
+ | "networkidle2";
11430
+ export type BrowserRunResourceType =
11431
+ | "document"
11432
+ | "stylesheet"
11433
+ | "image"
11434
+ | "media"
11435
+ | "font"
11436
+ | "script"
11437
+ | "texttrack"
11438
+ | "xhr"
11439
+ | "fetch"
11440
+ | "prefetch"
11441
+ | "eventsource"
11442
+ | "websocket"
11443
+ | "manifest"
11444
+ | "signedexchange"
11445
+ | "ping"
11446
+ | "cspviolationreport"
11447
+ | "preflight"
11448
+ | "other";
11449
+ /** Options fields shared by all quick actions. */
11450
+ export interface BrowserRunBaseOptions {
11451
+ /** Adds `<script>` tags into the page with the desired URL or content.
11452
+ * @see https://pptr.dev/api/puppeteer.frameaddscripttagoptions
11453
+ */
11454
+ addScriptTag?: Array<{
11455
+ content?: string;
11456
+ url?: string;
11457
+ type?: string;
11458
+ id?: string;
11459
+ }>;
11460
+ /** Adds `<link rel="stylesheet">` or `<style>` tags into the page.
11461
+ * @see https://pptr.dev/api/puppeteer.frameaddstyletagoptions
11462
+ */
11463
+ addStyleTag?: Array<{
11464
+ content?: string;
11465
+ url?: string;
11466
+ }>;
11467
+ /** Provide credentials for HTTP authentication. @see https://pptr.dev/api/puppeteer.credentials */
11468
+ authenticate?: {
11469
+ username: string;
11470
+ password: string;
11471
+ };
11472
+ /** Set cookies before navigating. @see https://pptr.dev/api/puppeteer.cookieparam */
11473
+ cookies?: Array<{
11474
+ name: string;
11475
+ value: string;
11476
+ url?: string;
11477
+ domain?: string;
11478
+ path?: string;
11479
+ secure?: boolean;
11480
+ httpOnly?: boolean;
11481
+ sameSite?: "Strict" | "Lax" | "None";
11482
+ expires?: number;
11483
+ priority?: "Low" | "Medium" | "High";
11484
+ sameParty?: boolean;
11485
+ sourceScheme?: "Unset" | "NonSecure" | "Secure";
11486
+ sourcePort?: number;
11487
+ partitionKey?: string;
11488
+ }>;
11489
+ /** Emulate a specific CSS media type (e.g. `"screen"`, `"print"`). */
11490
+ emulateMediaType?: string;
11491
+ /** Navigation options. @see https://pptr.dev/api/puppeteer.gotooptions */
11492
+ gotoOptions?: {
11493
+ /** Navigation timeout in milliseconds (max 60 000). @default 30000 */
11494
+ timeout?: number;
11495
+ /** When to consider navigation complete. @default "domcontentloaded" */
11496
+ waitUntil?: BrowserRunLifecycleEvent | BrowserRunLifecycleEvent[];
11497
+ referer?: string;
11498
+ referrerPolicy?: string;
11499
+ };
11500
+ /** Block requests matching these regex patterns. Mutually exclusive with `allowRequestPattern`. */
11501
+ rejectRequestPattern?: string[];
11502
+ /** Only allow requests matching these regex patterns. Mutually exclusive with `rejectRequestPattern`. */
11503
+ allowRequestPattern?: string[];
11504
+ /** Block requests of these resource types. Mutually exclusive with `allowResourceTypes`. */
11505
+ rejectResourceTypes?: BrowserRunResourceType[];
11506
+ /** Only allow requests of these resource types. Mutually exclusive with `rejectResourceTypes`. */
11507
+ allowResourceTypes?: BrowserRunResourceType[];
11508
+ /** Additional HTTP headers sent with every request. */
11509
+ setExtraHTTPHeaders?: Record<string, string>;
11510
+ /** Whether JavaScript is enabled on the page. */
11511
+ setJavaScriptEnabled?: boolean;
11512
+ /** Override the default user agent string.
11513
+ * @default "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36"
11514
+ * */
11515
+ userAgent?: string;
11516
+ /** Set the browser viewport size.
11517
+ * @see https://pptr.dev/api/puppeteer.viewport
11518
+ * @default {width:1920,height:1080}
11519
+ * */
11520
+ viewport?: {
11521
+ width: number;
11522
+ height: number;
11523
+ deviceScaleFactor?: number;
11524
+ isMobile?: boolean;
11525
+ isLandscape?: boolean;
11526
+ hasTouch?: boolean;
11527
+ };
11528
+ /** Wait for a CSS selector to appear in the page before proceeding.
11529
+ * @see https://pptr.dev/api/puppeteer.waitforselectoroptions
11530
+ */
11531
+ waitForSelector?: {
11532
+ selector: string;
11533
+ hidden?: true;
11534
+ visible?: true;
11535
+ /** Timeout in milliseconds. Max 120000 */
11536
+ timeout?: number;
11537
+ };
11538
+ /** Wait for a fixed delay in milliseconds before proceeding. Max 120000 */
11539
+ waitForTimeout?: number;
11540
+ /** When true, continue on best-effort when awaited events fail or timeout. */
11541
+ bestAttempt?: boolean;
11542
+ /** Maximum duration in milliseconds for the browser action after page load. Max 120000 */
11543
+ actionTimeout?: number;
11544
+ /** Cache time to live in seconds (0-86400). Set to 0 to disable.
11545
+ * @default 5
11546
+ */
11547
+ cacheTTL?: number;
11548
+ }
11549
+ /** Common options shared by all quick actions. Exactly one of `url` or `html` must be provided.*/
11550
+ export type BrowserRunCommonOptions =
11551
+ | (BrowserRunBaseOptions & {
11552
+ /** URL to navigate to, e.g. `"https://example.com"`. */
11553
+ url: string;
11554
+ })
11555
+ | (BrowserRunBaseOptions & {
11556
+ /** Set the HTML content of the page directly. */
11557
+ html: string;
11558
+ });
11559
+ export type BrowserRunPuppeteerScreenshotOptions = {
11560
+ /** @default "png" */
11561
+ type?: "png" | "jpeg" | "webp";
11562
+ /** @default "binary" */
11563
+ encoding?: "binary" | "base64";
11564
+ quality?: number;
11565
+ fullPage?: boolean;
11566
+ clip?: {
11567
+ x: number;
11568
+ y: number;
11569
+ width: number;
11570
+ height: number;
11571
+ scale?: number;
11572
+ };
11573
+ omitBackground?: boolean;
11574
+ optimizeForSpeed?: boolean;
11575
+ captureBeyondViewport?: boolean;
11576
+ fromSurface?: boolean;
11577
+ };
11578
+ export type BrowserRunScreenshotOptions = BrowserRunCommonOptions & {
11579
+ /** CSS selector of the element to screenshot. */
11580
+ selector?: string;
11581
+ /** When true, scroll the entire page before taking the screenshot. */
11582
+ scrollPage?: boolean;
11583
+ /** @see https://pptr.dev/api/puppeteer.screenshotoptions */
11584
+ screenshotOptions?: BrowserRunPuppeteerScreenshotOptions;
11585
+ };
11586
+ export type BrowserRunPDFOptions = BrowserRunCommonOptions & {
11587
+ /** @see https://pptr.dev/api/puppeteer.pdfoptions */
11588
+ pdfOptions?: {
11589
+ /** @default 1 */
11590
+ scale?: number;
11591
+ /** @default false */
11592
+ displayHeaderFooter?: boolean;
11593
+ headerTemplate?: string;
11594
+ footerTemplate?: string;
11595
+ /** @default false */
11596
+ printBackground?: boolean;
11597
+ /** @default false */
11598
+ landscape?: boolean;
11599
+ pageRanges?: string;
11600
+ /** @default "letter" */
11601
+ format?:
11602
+ | "letter"
11603
+ | "legal"
11604
+ | "tabloid"
11605
+ | "ledger"
11606
+ | "a0"
11607
+ | "a1"
11608
+ | "a2"
11609
+ | "a3"
11610
+ | "a4"
11611
+ | "a5"
11612
+ | "a6";
11613
+ width?: string | number;
11614
+ height?: string | number;
11615
+ /** @default false */
11616
+ preferCSSPageSize?: boolean;
11617
+ margin?: {
11618
+ top?: string | number;
11619
+ right?: string | number;
11620
+ bottom?: string | number;
11621
+ left?: string | number;
11622
+ };
11623
+ /** @default false */
11624
+ omitBackground?: boolean;
11625
+ /** @default true */
11626
+ tagged?: boolean;
11627
+ /** @default false */
11628
+ outline?: boolean;
11629
+ /** @default 30000 */
11630
+ timeout?: number;
11631
+ };
11632
+ };
11633
+ export type BrowserRunScrapeOptions = BrowserRunCommonOptions & {
11634
+ /** CSS selectors to scrape. At least one element is required. */
11635
+ elements: Array<{
11636
+ selector: string;
11637
+ }>;
11638
+ };
11639
+ export type BrowserRunLinksOptions = BrowserRunCommonOptions & {
11640
+ /** When true, only return links that are visible on the page. @default false */
11641
+ visibleLinksOnly?: boolean;
11642
+ /** When true, exclude links pointing to external domains. @default false */
11643
+ excludeExternalLinks?: boolean;
11644
+ };
11645
+ export type BrowserRunSnapshotOptions = BrowserRunCommonOptions & {
11646
+ /** @see https://pptr.dev/api/puppeteer.screenshotoptions */
11647
+ screenshotOptions?: Omit<BrowserRunPuppeteerScreenshotOptions, "encoding">;
11648
+ };
11649
+ export interface BrowserRunJsonBaseOptions {
11650
+ /** Custom AI models to try in order. Max 3. Falls back to next on error. */
11651
+ custom_ai?: Array<{
11652
+ /** Model ID in `<provider>/<model_name>` format, e.g. `"workers-ai/@cf/meta/llama-3.3-70b-instruct-fp8-fast"`. */
11653
+ model: string;
11654
+ /** Bearer token. Not needed for workers-ai models. */
11655
+ authorization?: string;
11656
+ }>;
11657
+ }
11658
+ /**
11659
+ * Options for the `json` quick action.
11660
+ * At least one of `prompt` or `response_format` must be provided.
11661
+ */
11662
+ export type BrowserRunJsonOptions = BrowserRunCommonOptions &
11663
+ BrowserRunJsonBaseOptions &
11664
+ (
11665
+ | {
11666
+ /** Natural-language prompt describing what data to extract. */
11667
+ prompt: string;
11668
+ /** Structured output schema for the AI model. @see https://developers.cloudflare.com/workers-ai/json-mode/ */
11669
+ response_format?: AiTextGenerationResponseFormat;
11670
+ }
11671
+ | {
11672
+ /** Natural-language prompt describing what data to extract. */
11673
+ prompt?: string;
11674
+ /** Structured output schema for the AI model. @see https://developers.cloudflare.com/workers-ai/json-mode/ */
11675
+ response_format: AiTextGenerationResponseFormat;
11676
+ }
11677
+ );
11678
+ export type BrowserRunContentOptions = BrowserRunCommonOptions;
11679
+ export type BrowserRunMarkdownOptions = BrowserRunCommonOptions;
11680
+ export type BrowserRunResponseMeta = {
11681
+ /** HTTP status code of the rendered page */
11682
+ status: number;
11683
+ /** Page title */
11684
+ title: string;
11685
+ };
11686
+ /** Success response for `content` action. */
11687
+ export type BrowserRunContentSuccessResponse = {
11688
+ success: true;
11689
+ /** Extracted HTML content */
11690
+ result: string;
11691
+ meta: BrowserRunResponseMeta;
11692
+ };
11693
+ /** Success response for `links` action. */
11694
+ export type BrowserRunLinksSuccessResponse = {
11695
+ success: true;
11696
+ /** Extracted links */
11697
+ result: string[];
11698
+ };
11699
+ /** Success response for `scrape` action. */
11700
+ export type BrowserRunScrapeSuccessResponse = {
11701
+ success: true;
11702
+ result: Array<{
11703
+ /** The CSS selector used to find elements. */
11704
+ selector: string;
11705
+ /** Array of elements matching the selector. */
11706
+ results: Array<{
11707
+ /** Outer HTML of the element. */
11708
+ html: string;
11709
+ /** Text content of the element. */
11710
+ text: string;
11711
+ /** Width of the element in pixels. */
11712
+ width: number;
11713
+ /** Height of the element in pixels. */
11714
+ height: number;
11715
+ /** Top position of the element relative to the viewport in pixels. */
11716
+ top: number;
11717
+ /** Left position of the element relative to the viewport in pixels. */
11718
+ left: number;
11719
+ /** Array of HTML attributes on the element. */
11720
+ attributes: Array<{
11721
+ /** Attribute name. */
11722
+ name: string;
11723
+ /** Attribute value. */
11724
+ value: string;
11725
+ }>;
11726
+ }>;
11727
+ }>;
11728
+ };
11729
+ /** Success response for `snapshot` action. */
11730
+ export type BrowserRunSnapshotSuccessResponse = {
11731
+ success: true;
11732
+ result: {
11733
+ /** HTML content of the page. */
11734
+ content: string;
11735
+ /** Base64-encoded screenshot image. */
11736
+ screenshot: string;
11737
+ };
11738
+ meta: BrowserRunResponseMeta;
11739
+ };
11740
+ /** Success response for `json` action. */
11741
+ export type BrowserRunJsonSuccessResponse = {
11742
+ success: true;
11743
+ /** JSON data extracted from the page using an AI model */
11744
+ result: Record<string, unknown>;
11745
+ };
11746
+ /** Success response for `markdown` action. */
11747
+ export type BrowserRunMarkdownSuccessResponse = {
11748
+ success: true;
11749
+ /** Extracted markdown content */
11750
+ result: string;
11751
+ };
11752
+ /** Error response for BrowserRun actions. */
11753
+ export type BrowserRunErrorResponse = {
11754
+ success: false;
11755
+ errors: {
11756
+ message: string;
11757
+ code?: number;
11758
+ detail?: string;
11759
+ path?: string;
11760
+ }[];
11761
+ };
11762
+ /** Error response for BrowserRun `json` action. */
11763
+ export type BrowserRunJsonErrorResponse = BrowserRunErrorResponse & {
11764
+ /** Raw AI response text for debugging */
11765
+ rawAiResponse?: string;
11766
+ };
11767
+ /**
11768
+ * Browser Run API binding for automating headless browsers.
11769
+ * @see https://developers.cloudflare.com/browser-run/
11770
+ */
11771
+ export declare abstract class BrowserRun {
11772
+ /**
11773
+ * Send a raw HTTP request to the Browser Run API.
11774
+ * Used by libraries like `@cloudflare/puppeteer` to acquire and connect to a browser instance.
11775
+ * @see https://developers.cloudflare.com/browser-run/
11776
+ */
11777
+ fetch(input: RequestInfo | URL, init?: RequestInit): Promise<Response>;
11778
+ /**
11779
+ * Take a screenshot of a web page.
11780
+ * @param action - Must be `'screenshot'`.
11781
+ * @param options - Screenshot options including viewport, selectors, and image format.
11782
+ * @returns A `Response` containing one of:
11783
+ *
11784
+ * **Success (HTTP 200):**
11785
+ * - Binary image data with `Content-Type: image/png`, `image/jpeg`, or `image/webp` (when `encoding: 'binary'`, the default)
11786
+ * - Data URI string with `Content-Type: text/plain` (when `encoding: 'base64'`)
11787
+ *
11788
+ * **Error:**
11789
+ * - `BrowserRunErrorResponse` JSON with appropriate HTTP status code (400, 422, 429, 500, 503)
11790
+ *
11791
+ * **Headers:**
11792
+ * - `X-Browser-Ms-Used`: Browser time consumed in milliseconds (set when status < 500)
11793
+ */
11794
+ quickAction(
11795
+ action: "screenshot",
11796
+ options: BrowserRunScreenshotOptions,
11797
+ ): Promise<Response>;
11798
+ /**
11799
+ * Generate a PDF of a web page.
11800
+ * @param action - Must be `'pdf'`.
11801
+ * @param options - PDF generation options including page size, margins, and headers/footers.
11802
+ * @returns A `Response` containing one of:
11803
+ *
11804
+ * **Success (HTTP 200):**
11805
+ * - Binary PDF data with `Content-Type: application/pdf`
11806
+ *
11807
+ * **Error:**
11808
+ * - `BrowserRunErrorResponse` JSON with appropriate HTTP status code (400, 422, 429, 500, 503)
11809
+ *
11810
+ * **Headers:**
11811
+ * - `X-Browser-Ms-Used`: Browser time consumed in milliseconds (set when status < 500)
11812
+ */
11813
+ quickAction(action: "pdf", options: BrowserRunPDFOptions): Promise<Response>;
11814
+ /**
11815
+ * Get the HTML content of a web page.
11816
+ * @param action - Must be `'content'`.
11817
+ * @param options - Navigation and page interaction options.
11818
+ * @returns A `Response` containing one of:
11819
+ *
11820
+ * **Success (HTTP 200):**
11821
+ * - `BrowserRunContentSuccessResponse` JSON with `Content-Type: application/json`
11822
+ *
11823
+ * **Error:**
11824
+ * - `BrowserRunErrorResponse` JSON with appropriate HTTP status code (400, 422, 429, 500, 503)
11825
+ *
11826
+ * **Headers:**
11827
+ * - `X-Browser-Ms-Used`: Browser time consumed in milliseconds (set when status < 500)
11828
+ */
11829
+ quickAction(
11830
+ action: "content",
11831
+ options: BrowserRunContentOptions,
11832
+ ): Promise<Response>;
11833
+ /**
11834
+ * Scrape elements from a web page by CSS selector.
11835
+ * @param action - Must be `'scrape'`.
11836
+ * @param options - Scrape options with CSS selectors for elements to extract.
11837
+ * @returns A `Response` containing one of:
11838
+ *
11839
+ * **Success (HTTP 200):**
11840
+ * - `BrowserRunScrapeSuccessResponse` JSON with `Content-Type: application/json`
11841
+ *
11842
+ * **Error:**
11843
+ * - `BrowserRunErrorResponse` JSON with appropriate HTTP status code (400, 422, 429, 500, 503)
11844
+ *
11845
+ * **Headers:**
11846
+ * - `X-Browser-Ms-Used`: Browser time consumed in milliseconds (set when status < 500)
11847
+ */
11848
+ quickAction(
11849
+ action: "scrape",
11850
+ options: BrowserRunScrapeOptions,
11851
+ ): Promise<Response>;
11852
+ /**
11853
+ * Extract all links from a web page.
11854
+ * @param action - Must be `'links'`.
11855
+ * @param options - Options to filter visible or internal links only.
11856
+ * @returns A `Response` containing one of:
11857
+ *
11858
+ * **Success (HTTP 200):**
11859
+ * - `BrowserRunLinksSuccessResponse` JSON with `Content-Type: application/json`
11860
+ *
11861
+ * **Error:**
11862
+ * - `BrowserRunErrorResponse` JSON with appropriate HTTP status code (400, 422, 429, 500, 503)
11863
+ *
11864
+ * **Headers:**
11865
+ * - `X-Browser-Ms-Used`: Browser time consumed in milliseconds (set when status < 500)
11866
+ */
11867
+ quickAction(
11868
+ action: "links",
11869
+ options: BrowserRunLinksOptions,
11870
+ ): Promise<Response>;
11871
+ /**
11872
+ * Get both the HTML content and a base64-encoded screenshot of a web page.
11873
+ * @param action - Must be `'snapshot'`.
11874
+ * @param options - Snapshot options including screenshot settings (encoding is always base64).
11875
+ * @returns A `Response` containing one of:
11876
+ *
11877
+ * **Success (HTTP 200):**
11878
+ * - `BrowserRunSnapshotSuccessResponse` JSON with `Content-Type: application/json`
11879
+ *
11880
+ * **Error:**
11881
+ * - `BrowserRunErrorResponse` JSON with appropriate HTTP status code (400, 422, 429, 500, 503)
11882
+ *
11883
+ * **Headers:**
11884
+ * - `X-Browser-Ms-Used`: Browser time consumed in milliseconds (set when status < 500)
11885
+ */
11886
+ quickAction(
11887
+ action: "snapshot",
11888
+ options: BrowserRunSnapshotOptions,
11889
+ ): Promise<Response>;
11890
+ /**
11891
+ * Extract structured JSON data from a web page using AI.
11892
+ * @param action - Must be `'json'`.
11893
+ * @param options - JSON extraction options with prompt or response_format schema.
11894
+ * @returns A `Response` containing one of:
11895
+ *
11896
+ * **Success (HTTP 200):**
11897
+ * - `BrowserRunJsonSuccessResponse` JSON with `Content-Type: application/json`
11898
+ *
11899
+ * **Error:**
11900
+ * - `BrowserRunErrorResponse` JSON with appropriate HTTP status code (400, 422, 429, 500, 503)
11901
+ * - HTTP 422 with code `2012` for HTML-to-markdown conversion failures
11902
+ * - HTTP 422/500 for AI extraction failures (may include `rawAiResponse` field)
11903
+ *
11904
+ * **Headers:**
11905
+ * - `X-Browser-Ms-Used`: Browser time consumed in milliseconds (set when status < 500)
11906
+ */
11907
+ quickAction(
11908
+ action: "json",
11909
+ options: BrowserRunJsonOptions,
11910
+ ): Promise<Response>;
11911
+ /**
11912
+ * Convert a web page to Markdown.
11913
+ * @param action - Must be `'markdown'`.
11914
+ * @param options - Navigation and page interaction options.
11915
+ * @returns A `Response` containing one of:
11916
+ *
11917
+ * **Success (HTTP 200):**
11918
+ * - `BrowserRunMarkdownSuccessResponse` JSON with `Content-Type: application/json`
11919
+ *
11920
+ * **Error:**
11921
+ * - `BrowserRunErrorResponse` JSON with appropriate HTTP status code (400, 422, 429, 500, 503)
11922
+ * - HTTP 422 with code `2012` for HTML-to-markdown conversion failures
11923
+ *
11924
+ * **Headers:**
11925
+ * - `X-Browser-Ms-Used`: Browser time consumed in milliseconds (set when status < 500)
11926
+ */
11927
+ quickAction(
11928
+ action: "markdown",
11929
+ options: BrowserRunMarkdownOptions,
11930
+ ): Promise<Response>;
11931
+ }
11425
11932
  export interface BasicImageTransformations {
11426
11933
  /**
11427
11934
  * Maximum width in image pixels. The value must be an integer.
@@ -13634,6 +14141,7 @@ export declare namespace CloudflareWorkersModule {
13634
14141
  export type WorkflowTimeoutDuration = WorkflowSleepDuration;
13635
14142
  export type WorkflowRetentionDuration = WorkflowSleepDuration;
13636
14143
  export type WorkflowBackoff = "constant" | "linear" | "exponential";
14144
+ export type WorkflowStepSensitivity = "output";
13637
14145
  export type WorkflowStepConfig = {
13638
14146
  retries?: {
13639
14147
  limit: number;
@@ -13641,16 +14149,26 @@ export declare namespace CloudflareWorkersModule {
13641
14149
  backoff?: WorkflowBackoff;
13642
14150
  };
13643
14151
  timeout?: WorkflowTimeoutDuration | number;
14152
+ sensitive?: WorkflowStepSensitivity;
14153
+ };
14154
+ export type WorkflowCronSchedule = {
14155
+ /** Cron expression that triggered this event. */
14156
+ cron: string;
14157
+ /** Timestamp of the scheduled trigger, in milliseconds since the Unix epoch. */
14158
+ scheduledTime: number;
13644
14159
  };
13645
14160
  export type WorkflowEvent<T> = {
13646
14161
  payload: Readonly<T>;
13647
14162
  timestamp: Date;
13648
14163
  instanceId: string;
14164
+ workflowName: string;
14165
+ schedule?: WorkflowCronSchedule;
13649
14166
  };
13650
14167
  export type WorkflowStepEvent<T> = {
13651
14168
  payload: Readonly<T>;
13652
14169
  timestamp: Date;
13653
14170
  type: string;
14171
+ sensitive?: WorkflowStepSensitivity;
13654
14172
  };
13655
14173
  export type WorkflowStepContext = {
13656
14174
  step: {