class InputServiceimport { InputService } from "https://dotland.deno.dev/x/windmill@v1.415.2/windmill-api/index.ts"; Static MethodscreateInput(unnamed 0: { workspace: string; requestBody: CreateInput; runnableId?: string; runnableType?: RunnableType; }): CancelablePromise<string>Create an Input for future use in a script or flow deleteInput(unnamed 0: { workspace: string; input: string; }): CancelablePromise<string>Delete a Saved Input getArgsFromHistoryOrSavedInput(unnamed 0: { workspace: string; jobOrInputId: string; input?: boolean; allowLarge?: boolean; }): CancelablePromise<any>Get args from history or saved input getInputHistory(unnamed 0: { workspace: string; runnableId?: string; runnableType?: RunnableType; page?: number; perPage?: number; }): CancelablePromise<Array<Input>>List Inputs used in previously completed jobs listInputs(unnamed 0: { workspace: string; runnableId?: string; runnableType?: RunnableType; page?: number; perPage?: number; }): CancelablePromise<Array<Input>>List saved Inputs for a Runnable updateInput(unnamed 0: { workspace: string; requestBody: UpdateInput; }): CancelablePromise<string>Update an Input