Type Alias RawScript

RawScript: {
    concurrency_time_window_s?: number;
    concurrent_limit?: number;
    content: string;
    custom_concurrency_key?: string;
    input_transforms: {
        [key: string]: InputTransform;
    };
    language:
        | "deno"
        | "bun"
        | "python3"
        | "go"
        | "bash"
        | "powershell"
        | "postgresql"
        | "mysql"
        | "bigquery"
        | "snowflake"
        | "mssql"
        | "graphql"
        | "nativets"
        | "php";
    lock?: string;
    path?: string;
    tag?: string;
    type: "rawscript";
}