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