mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-03-19 07:53:54 +01:00
233 lines
8.5 KiB
TypeScript
233 lines
8.5 KiB
TypeScript
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
|
import type { Environment } from "./models";
|
|
import type { Folder } from "./models";
|
|
import type { GrpcRequest } from "./models";
|
|
import type { HttpRequest } from "./models";
|
|
import type { HttpResponse } from "./models";
|
|
import type { JsonValue } from "./serde_json/JsonValue";
|
|
import type { Workspace } from "./models";
|
|
|
|
export type BootRequest = { dir: string, watch: boolean, };
|
|
|
|
export type BootResponse = { name: string, version: string, capabilities: Array<string>, };
|
|
|
|
export type CallHttpRequestActionArgs = { httpRequest: HttpRequest, };
|
|
|
|
export type CallHttpRequestActionRequest = { key: string, pluginRefId: string, args: CallHttpRequestActionArgs, };
|
|
|
|
export type CallTemplateFunctionArgs = { purpose: RenderPurpose, values: { [key in string]?: string }, };
|
|
|
|
export type CallTemplateFunctionRequest = { name: string, args: CallTemplateFunctionArgs, };
|
|
|
|
export type CallTemplateFunctionResponse = { value: string | null, };
|
|
|
|
export type Color = "custom" | "default" | "primary" | "secondary" | "info" | "success" | "notice" | "warning" | "danger";
|
|
|
|
export type CopyTextRequest = { text: string, };
|
|
|
|
export type ExportHttpRequestRequest = { httpRequest: HttpRequest, };
|
|
|
|
export type ExportHttpRequestResponse = { content: string, };
|
|
|
|
export type FilterRequest = { content: string, filter: string, };
|
|
|
|
export type FilterResponse = { content: string, };
|
|
|
|
export type FindHttpResponsesRequest = { requestId: string, limit?: number, };
|
|
|
|
export type FindHttpResponsesResponse = { httpResponses: Array<HttpResponse>, };
|
|
|
|
export type GetHttpRequestActionsRequest = Record<string, never>;
|
|
|
|
export type GetHttpRequestActionsResponse = { actions: Array<HttpRequestAction>, pluginRefId: string, };
|
|
|
|
export type GetHttpRequestByIdRequest = { id: string, };
|
|
|
|
export type GetHttpRequestByIdResponse = { httpRequest: HttpRequest | null, };
|
|
|
|
export type GetTemplateFunctionsResponse = { functions: Array<TemplateFunction>, pluginRefId: string, };
|
|
|
|
export type HttpRequestAction = { key: string, label: string, icon?: Icon, };
|
|
|
|
export type Icon = "copy" | "info" | "check_circle" | "alert_triangle" | "_unknown";
|
|
|
|
export type ImportRequest = { content: string, };
|
|
|
|
export type ImportResources = { workspaces: Array<Workspace>, environments: Array<Environment>, folders: Array<Folder>, httpRequests: Array<HttpRequest>, grpcRequests: Array<GrpcRequest>, };
|
|
|
|
export type ImportResponse = { resources: ImportResources, };
|
|
|
|
export type InternalEvent = { id: string, pluginRefId: string, replyId: string | null, payload: InternalEventPayload, windowContext: WindowContext, };
|
|
|
|
export type InternalEventPayload = { "type": "boot_request" } & BootRequest | { "type": "boot_response" } & BootResponse | { "type": "reload_request" } | { "type": "reload_response" } | { "type": "terminate_request" } | { "type": "terminate_response" } | { "type": "import_request" } & ImportRequest | { "type": "import_response" } & ImportResponse | { "type": "filter_request" } & FilterRequest | { "type": "filter_response" } & FilterResponse | { "type": "export_http_request_request" } & ExportHttpRequestRequest | { "type": "export_http_request_response" } & ExportHttpRequestResponse | { "type": "send_http_request_request" } & SendHttpRequestRequest | { "type": "send_http_request_response" } & SendHttpRequestResponse | { "type": "get_http_request_actions_request" } & GetHttpRequestActionsRequest | { "type": "get_http_request_actions_response" } & GetHttpRequestActionsResponse | { "type": "call_http_request_action_request" } & CallHttpRequestActionRequest | { "type": "get_template_functions_request" } | { "type": "get_template_functions_response" } & GetTemplateFunctionsResponse | { "type": "call_template_function_request" } & CallTemplateFunctionRequest | { "type": "call_template_function_response" } & CallTemplateFunctionResponse | { "type": "copy_text_request" } & CopyTextRequest | { "type": "render_http_request_request" } & RenderHttpRequestRequest | { "type": "render_http_request_response" } & RenderHttpRequestResponse | { "type": "template_render_request" } & TemplateRenderRequest | { "type": "template_render_response" } & TemplateRenderResponse | { "type": "show_toast_request" } & ShowToastRequest | { "type": "prompt_text_request" } & PromptTextRequest | { "type": "prompt_text_response" } & PromptTextResponse | { "type": "get_http_request_by_id_request" } & GetHttpRequestByIdRequest | { "type": "get_http_request_by_id_response" } & GetHttpRequestByIdResponse | { "type": "find_http_responses_request" } & FindHttpResponsesRequest | { "type": "find_http_responses_response" } & FindHttpResponsesResponse | { "type": "empty_response" };
|
|
|
|
export type OpenFileFilter = { name: string,
|
|
/**
|
|
* File extensions to require
|
|
*/
|
|
extensions: Array<string>, };
|
|
|
|
export type PromptTextRequest = { id: string, title: string, label: string, description?: string, defaultValue?: string, placeholder?: string,
|
|
/**
|
|
* Text to add to the confirmation button
|
|
*/
|
|
confirmText?: string,
|
|
/**
|
|
* Text to add to the cancel button
|
|
*/
|
|
cancelText?: string,
|
|
/**
|
|
* Require the user to enter a non-empty value
|
|
*/
|
|
require?: boolean, };
|
|
|
|
export type PromptTextResponse = { value: string | null, };
|
|
|
|
export type RenderHttpRequestRequest = { httpRequest: HttpRequest, purpose: RenderPurpose, };
|
|
|
|
export type RenderHttpRequestResponse = { httpRequest: HttpRequest, };
|
|
|
|
export type RenderPurpose = "send" | "preview";
|
|
|
|
export type SendHttpRequestRequest = { httpRequest: HttpRequest, };
|
|
|
|
export type SendHttpRequestResponse = { httpResponse: HttpResponse, };
|
|
|
|
export type ShowToastRequest = { message: string, color?: Color, icon?: Icon, };
|
|
|
|
export type TemplateFunction = { name: string, aliases?: Array<string>, args: Array<TemplateFunctionArg>, };
|
|
|
|
export type TemplateFunctionArg = { "type": "text" } & TemplateFunctionTextArg | { "type": "select" } & TemplateFunctionSelectArg | { "type": "checkbox" } & TemplateFunctionCheckboxArg | { "type": "http_request" } & TemplateFunctionHttpRequestArg | { "type": "file" } & TemplateFunctionFileArg;
|
|
|
|
export type TemplateFunctionBaseArg = {
|
|
/**
|
|
* The name of the argument. Should be `camelCase` format
|
|
*/
|
|
name: string,
|
|
/**
|
|
* Whether the user must fill in the argument
|
|
*/
|
|
optional?: boolean,
|
|
/**
|
|
* The label of the input
|
|
*/
|
|
label?: string,
|
|
/**
|
|
* The default value
|
|
*/
|
|
defaultValue?: string, };
|
|
|
|
export type TemplateFunctionCheckboxArg = {
|
|
/**
|
|
* The name of the argument. Should be `camelCase` format
|
|
*/
|
|
name: string,
|
|
/**
|
|
* Whether the user must fill in the argument
|
|
*/
|
|
optional?: boolean,
|
|
/**
|
|
* The label of the input
|
|
*/
|
|
label?: string,
|
|
/**
|
|
* The default value
|
|
*/
|
|
defaultValue?: string, };
|
|
|
|
export type TemplateFunctionFileArg = {
|
|
/**
|
|
* The title of the file selection window
|
|
*/
|
|
title: string,
|
|
/**
|
|
* Allow selecting multiple files
|
|
*/
|
|
multiple?: boolean, directory?: boolean, defaultPath?: string, filters?: Array<OpenFileFilter>,
|
|
/**
|
|
* The name of the argument. Should be `camelCase` format
|
|
*/
|
|
name: string,
|
|
/**
|
|
* Whether the user must fill in the argument
|
|
*/
|
|
optional?: boolean,
|
|
/**
|
|
* The label of the input
|
|
*/
|
|
label?: string,
|
|
/**
|
|
* The default value
|
|
*/
|
|
defaultValue?: string, };
|
|
|
|
export type TemplateFunctionHttpRequestArg = {
|
|
/**
|
|
* The name of the argument. Should be `camelCase` format
|
|
*/
|
|
name: string,
|
|
/**
|
|
* Whether the user must fill in the argument
|
|
*/
|
|
optional?: boolean,
|
|
/**
|
|
* The label of the input
|
|
*/
|
|
label?: string,
|
|
/**
|
|
* The default value
|
|
*/
|
|
defaultValue?: string, };
|
|
|
|
export type TemplateFunctionSelectArg = {
|
|
/**
|
|
* The options that will be available in the select input
|
|
*/
|
|
options: Array<TemplateFunctionSelectOption>,
|
|
/**
|
|
* The name of the argument. Should be `camelCase` format
|
|
*/
|
|
name: string,
|
|
/**
|
|
* Whether the user must fill in the argument
|
|
*/
|
|
optional?: boolean,
|
|
/**
|
|
* The label of the input
|
|
*/
|
|
label?: string,
|
|
/**
|
|
* The default value
|
|
*/
|
|
defaultValue?: string, };
|
|
|
|
export type TemplateFunctionSelectOption = { label: string, value: string, };
|
|
|
|
export type TemplateFunctionTextArg = {
|
|
/**
|
|
* Placeholder for the text input
|
|
*/
|
|
placeholder?: string,
|
|
/**
|
|
* The name of the argument. Should be `camelCase` format
|
|
*/
|
|
name: string,
|
|
/**
|
|
* Whether the user must fill in the argument
|
|
*/
|
|
optional?: boolean,
|
|
/**
|
|
* The label of the input
|
|
*/
|
|
label?: string,
|
|
/**
|
|
* The default value
|
|
*/
|
|
defaultValue?: string, };
|
|
|
|
export type TemplateRenderRequest = { data: JsonValue, purpose: RenderPurpose, };
|
|
|
|
export type TemplateRenderResponse = { data: JsonValue, };
|
|
|
|
export type WindowContext = { "type": "none" } | { "type": "label", label: string, };
|